/* ---------- Tokens ---------- */

:root {
  --bg:        #EDE7DB;
  --surface:   #F5F0E5;
  --surface-2: #E2DBCC;
  --ink:       #2E261F;
  --ink-soft:  #5C524A;
  --muted:     #A49A8E;
  --accent:    #D97128;
  --maxw:      1120px;
  --radius:    16px;
  --shadow:    0 10px 40px -12px rgba(46, 38, 31, 0.22);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a   { color: var(--ink); }
a:hover { color: var(--accent); }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Shared typographic patterns ---------- */

.eyebrow {
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 18px;
}

.display {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.8px;
  font-weight: 800;
  margin: 0 0 24px;
}

.closer {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.3px;
  text-align: center;
  margin: 56px 0 0;
  color: var(--ink);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(237, 231, 219, 0.88);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(46, 38, 31, 0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Studio wordmark — typography matches the company logo's subtitle */
.wordmark {
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}
.wordmark:hover { color: var(--ink); }

.nav { display: flex; gap: 28px; }
.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
}
.nav a:hover { color: var(--accent); }

/* ---------- Hero ---------- */

.hero {
  padding: 96px 0 88px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .eyebrow { color: var(--accent); }

.hero-headline {
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.06;
  letter-spacing: -1px;
  font-weight: 800;
  margin: 0 0 32px;
  max-width: 16ch;
}
.hero-headline-em {
  display: block;
  margin-top: 14px;
  font-style: italic;
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.72em;
  letter-spacing: -0.3px;
}

.hero-cta { margin: 0; }
.badge {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: default;
}

.hero-art {
  display: flex;
  justify-content: center;
}
.hero-art img {
  max-height: 620px;
  width: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface);
}

/* ---------- Sections ---------- */

.section {
  padding: 96px 0;
}
.section-muted {
  background: var(--surface);
  border-top: 1px solid rgba(46, 38, 31, 0.05);
  border-bottom: 1px solid rgba(46, 38, 31, 0.05);
}

/* ---------- How it plays ---------- */

.play-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.play-copy p {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 52ch;
}
.play-copy .pull {
  font-size: 22px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-top: 20px;
}
.play-copy .quiet {
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
  margin-top: 24px;
}
.play-art {
  display: flex;
  justify-content: center;
}
.play-art img {
  max-height: 560px;
  width: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--bg);
}

/* ---------- Features ---------- */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--surface);
  padding: 32px 28px;
  border-radius: var(--radius);
}
.feature h3 {
  margin: 0 0 10px;
  font-size: 19px;
  letter-spacing: -0.2px;
}
.feature p {
  margin: 0;
  color: var(--ink-soft);
}

/* ---------- Gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.shot {
  margin: 0;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.shot img {
  width: 100%;
  height: 480px;
  object-fit: contain;
  background: var(--surface-2);
}

/* ---------- Studio ---------- */

.studio-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
}
.studio-art img {
  width: 100%;
  height: auto;
}
.studio-copy .studio-lede {
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 20px;
  max-width: 44ch;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.2px;
}
.studio-contact {
  margin: 0;
  color: var(--ink-soft);
}
.studio-contact a { color: var(--accent); text-decoration: none; font-weight: 500; }
.studio-contact a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--surface);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  margin: 0;
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--surface);
}
.footer-meta {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.site-footer a { color: var(--surface); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.site-footer a.disabled {
  color: var(--muted);
  pointer-events: none;
  cursor: not-allowed;
}

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .shot img { height: 420px; }
}

@media (max-width: 860px) {
  .hero { padding: 56px 0 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-art img { max-height: 520px; }

  .section { padding: 64px 0; }

  .play-grid { grid-template-columns: 1fr; gap: 40px; }
  .play-art img { max-height: 480px; }

  .features { grid-template-columns: 1fr; gap: 16px; }

  .gallery { grid-template-columns: 1fr; }
  .shot img { height: auto; }

  .studio-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .studio-art img { max-width: 220px; margin: 0 auto; }
  .studio-copy .studio-lede { margin-left: auto; margin-right: auto; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }

  .nav { gap: 18px; }
  .nav a { font-size: 13px; }
}
