@font-face {
  font-family: "Bai Jamjuree";
  src: url("/assets/bai-jamjuree-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Bai Jamjuree";
  src: url("/assets/bai-jamjuree-bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --background: #131313;
  --text: #e5e2e1;
  --muted: #a59a96;
  --accent: #f26933;
  --gutter: clamp(24px, 5vw, 80px);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--background);
  color: var(--text);
  font-family: "Bai Jamjuree", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px var(--gutter);
}
.brand { display: inline-flex; padding: 8px 0; }
.brand img { display: block; width: 150px; height: auto; }
.header-label, .footer, .image-caption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.header-label { color: var(--muted); }
main { display: grid; flex: 1; align-items: center; }
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 28px var(--gutter) 56px;
  gap: clamp(32px, 5vw, 80px);
}
.hero-copy { padding: 30px 0; }
h1 {
  margin: 0 0 32px;
  font-size: clamp(64px, 7.6vw, 120px);
  line-height: .95;
  font-weight: 700;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
h1 span { color: var(--accent); }
.intro { margin: 0 0 12px; font-size: clamp(20px, 2vw, 26px); }
.description { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; max-width: 430px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 56px;
  margin-top: 32px;
  padding: 18px 24px;
  background: var(--accent);
  color: #380d00;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .075em;
  text-transform: uppercase;
  transition: background-color 160ms;
}
.button:hover { background: #ffb59b; }
.button svg { flex-shrink: 0; }
.contact { display: block; width: fit-content; margin-top: 12px; padding: 12px 0; font-size: 13px; color: var(--muted); }
.contact:hover, .footer a:hover { color: var(--text); text-decoration: underline; text-underline-offset: 4px; }
.contact span { display: inline-block; margin-left: 6px; }
.hero-image { position: relative; height: clamp(440px, 62vh, 680px); overflow: hidden; background: #1c1b1b; }
.hero-image img { display: block; height: 100%; width: 100%; object-fit: cover; object-position: 45% center; }
.image-caption { position: absolute; bottom: 24px; left: 24px; padding: 9px 12px; color: white; background: #131313; }
.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 var(--gutter);
  padding: 24px 0;
  border-top: 1px solid #333;
  color: var(--muted);
}
.footer a { margin: -12px 0; padding: 12px 0; }

@media (max-width: 760px) {
  .header { padding-top: 20px; padding-bottom: 20px; }
  .brand img { width: 120px; }
  .header-label { font-size: 9px; letter-spacing: .08em; }
  .hero { grid-template-columns: 1fr; padding-top: 12px; padding-bottom: 32px; gap: 24px; }
  .hero-copy { padding: 24px 0 0; }
  h1 { font-size: clamp(62px, 16vw, 104px); margin-bottom: 24px; }
  .description { font-size: 15px; }
  .desktop-break { display: none; }
  .button { margin-top: 24px; }
  .hero-image { height: auto; aspect-ratio: 4 / 3; }
  .image-caption { bottom: 16px; left: 16px; font-size: 9px; }
  .footer { font-size: 9px; letter-spacing: .08em; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .button { transition: none; }
}
