/* Off-Schedule — v1 stylesheet
   Tokens, type scale and layout rules follow the v1 design spec.
   Two typefaces only: Cormorant Garamond (display) / Archivo (labels, body). */

:root {
  --ivory: #F4F1EA;
  --ink: #141412;
  --muted: #6E6A61;
  --hair: rgba(20, 20, 18, 0.13);
  --hair-d: rgba(244, 241, 234, 0.15);
  --accent: #7A2E2A;
  --plate-1: #DAD4C8;
  --plate-2: #C9C1B2;
  --plate-3: #2A2925;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --pad: 56px;
  --gap: 24px;
  --sec: 124px;
  --nav-h: 72px;

  --fs-hero: 104px;
  --fs-closer: 92px;
  --fs-title: 48px;
  --fs-statement: 54px;
  --fs-case: 30px;
  --fs-body: 13.5px;
  --fs-eyebrow: 11px;
  --fs-micro: 10px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
em, i { font-style: italic; font-weight: inherit; }

/* ---------- Type utilities ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}
.dark .eyebrow { color: rgba(244, 241, 234, 0.55); }
.micro {
  font-family: var(--sans);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--muted);
}
.dark .micro { color: rgba(244, 241, 234, 0.55); }
.serif { font-family: var(--serif); font-weight: 300; }
.muted { color: var(--muted); }

.t-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-title);
  line-height: 1.08;
  letter-spacing: -0.005em;
}
.t-statement {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-statement);
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.t-case {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-case);
  line-height: 1.15;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.section { padding-top: var(--sec); padding-bottom: var(--sec); }
.dark { background: var(--ink); color: var(--ivory); }
.dark a:hover { color: var(--ivory); opacity: 0.7; }
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gap);
}
.hair-top { border-top: 1px solid var(--hair); }
.hair-bottom { border-bottom: 1px solid var(--hair); }
.dark .hair-top { border-top-color: var(--hair-d); }
.dark .hair-bottom { border-bottom-color: var(--hair-d); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--gap);
  margin-bottom: 64px;
}
.section-head .eyebrow { margin-bottom: 22px; }
.arrow-link {
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  white-space: nowrap;
}
.arrow-link svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.arrow-link:hover svg { transform: translateX(4px); }

/* ---------- Buttons ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 50px;
  padding: 0 30px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.pill:hover { color: var(--accent); border-color: var(--accent); }
.pill.accent { color: var(--accent); border-color: var(--accent); }
.pill.accent:hover { background: var(--accent); color: var(--ivory); }
.dark .pill { border-color: var(--ivory); color: var(--ivory); }
.dark .pill:hover { background: var(--ivory); color: var(--ink); opacity: 1; }

/* ---------- Plates (image placeholders) ---------- */
.plate {
  position: relative;
  overflow: hidden;
  background: var(--plate-1);
}
.plate.p2 { background: var(--plate-2); }
.plate.p3 { background: var(--plate-3); }
.plate > .plate-fill {
  position: absolute;
  inset: 0;
  background: inherit;
  transition: transform 0.4s ease;
}
.plate img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.plate .slot {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--sans);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(20, 20, 18, 0.38);
  pointer-events: none;
}
.plate.p3 .slot { color: rgba(244, 241, 234, 0.35); }
a:hover .plate > .plate-fill, a:hover .plate img { transform: scale(1.02); }

/* ---------- Nav ---------- */
.nav {
  height: var(--nav-h);
  border-bottom: 1px solid var(--hair);
  background: var(--ivory);
  position: relative;
  z-index: 20;
}
.nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.wordmark:hover { color: var(--ink); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.nav-links .pill { height: 44px; padding: 0 24px; margin-left: 12px; }
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-right: -10px;
}
.nav-burger svg { width: 24px; height: 24px; }

.menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 30;
  background: var(--ivory);
  padding: 0 var(--pad);
}
.menu.open { display: block; }
.menu-top {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--hair);
}
.menu-close { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; margin-right: -10px; }
.menu-close svg { width: 22px; height: 22px; }
.menu-list { padding-top: 40px; }
.menu-list a {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 40px;
  line-height: 1.1;
  padding: 14px 0;
  border-bottom: 1px solid var(--hair);
}
.menu-foot { padding-top: 32px; display: flex; flex-direction: column; gap: 20px; }

/* ---------- Hero (type-led) ---------- */
.hero {
  position: relative;
  min-height: 780px;
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
}
.hero-inner {
  min-height: 780px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 64px;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  gap: var(--gap);
}
.hero-main { display: flex; flex-direction: column; gap: 56px; }
.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-hero);
  line-height: 1.0;
  letter-spacing: -0.01em;
  max-width: 11ch;
}
.hero-row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gap);
  align-items: end;
}
.hero-lede {
  grid-column: 1 / span 6;
  font-size: 18px;
  line-height: 1.6;
  max-width: 560px;
}
.hero-cred {
  grid-column: 9 / span 4;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--hair);
}
.cred-names {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  display: inline-block;
}
a.cred-names:hover { color: var(--accent); }

/* Film version — switched on with .has-reel once the showreel file exists */
.hero.has-reel { background: var(--ink); color: var(--ivory); border-bottom: 0; }
.hero.has-reel video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.hero.has-reel .hero-inner { position: relative; z-index: 1; }
.hero.has-reel .micro, .hero.has-reel .hero-cred .muted { color: rgba(244, 241, 234, 0.6); }
.hero.has-reel .hero-cred { border-top-color: var(--hair-d); }

/* hero load animation */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease-out forwards;
}
.fade-up.d1 { animation-delay: 0.1s; }
.fade-up.d2 { animation-delay: 0.2s; }
.fade-up.d3 { animation-delay: 0.3s; }
.fade-up.d4 { animation-delay: 0.4s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ---------- Difference band & stats ---------- */
.band { padding: 120px 0; }
.band .eyebrow { display: block; margin-bottom: 30px; }
.band-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 54px;
  line-height: 1.1;
  letter-spacing: -0.005em;
  max-width: 22ch;
}
.points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  margin-top: 72px;
}
.point {
  border-top: 1px solid var(--hair-d);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.point h3 { font-family: var(--serif); font-weight: 400; font-size: 27px; line-height: 1.15; }
.point p { color: rgba(244, 241, 234, 0.6); max-width: 320px; }

.stats-strip { padding: 72px 0; border-bottom: 1px solid var(--hair); }
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}
.stat-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 58px;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.stat p { color: var(--muted); max-width: 260px; }
.stats-src { display: block; margin-top: 36px; opacity: 0.75; }

/* ---------- Services & pricing (home) ---------- */
.head-note { max-width: 320px; color: var(--muted); padding-bottom: 6px; }
.svc-block { margin-bottom: 24px; }
.svc-block:last-child { margin-bottom: 0; }
.tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  padding: 8px 0 48px;
}
.tier {
  border-top: 1px solid var(--hair);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tier-price {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 34px;
  line-height: 1;
}
.tier-price .per {
  font-family: var(--sans);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 8px;
}
.tier ul { display: flex; flex-direction: column; gap: 6px; }
.tier li { color: var(--muted); padding-left: 16px; position: relative; }
.tier li::before { content: ''; position: absolute; left: 0; top: 0.85em; width: 6px; height: 1px; background: var(--muted); }
.svc-offer {
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding: 8px 0 48px;
  flex-wrap: wrap;
}
.offer-line { color: var(--muted); max-width: 480px; }

/* ---------- Services (home) ---------- */
.svc-row {
  display: flex;
  align-items: baseline;
  gap: var(--gap);
  padding: 44px 0;
  border-top: 1px solid var(--hair);
}
.svc-row:last-child { border-bottom: 1px solid var(--hair); }
.svc-num {
  flex: 0 0 40px;
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.svc-title {
  flex: 1 1 auto;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 46px;
  line-height: 1.05;
}
.svc-desc { flex: 0 0 380px; color: var(--muted); }
.svc-foot { padding-top: 40px; display: flex; justify-content: space-between; align-items: center; gap: var(--gap); }

/* ---------- Studio (home) ---------- */
.studio-left { grid-column: 1 / span 7; }
.studio-right { grid-column: 9 / span 4; }
.studio-left .eyebrow { display: block; margin-bottom: 28px; }
.studio-left .t-statement { max-width: 17ch; }
.studio-note { margin-top: 32px; max-width: 380px; color: var(--muted); }
.founder { padding: 28px 0; border-top: 1px solid var(--hair); display: flex; flex-direction: column; gap: 10px; }
.founder:last-of-type { border-bottom: 1px solid var(--hair); }
.founder-name { font-family: var(--serif); font-size: 30px; font-weight: 400; line-height: 1.15; }
.founder p { max-width: 380px; }
.founder-line { margin-top: 28px; color: var(--muted); max-width: 380px; }

/* ---------- Closer ---------- */
.closer { padding-top: 150px; padding-bottom: 150px; }
.closer .eyebrow { display: block; margin-bottom: 36px; }
.closer-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-closer);
  line-height: 1.04;
  letter-spacing: -0.01em;
  max-width: 13ch;
}
.closer-cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.closer-cta .micro { color: rgba(244, 241, 234, 0.55); letter-spacing: 0.18em; }
.micro.email { text-transform: none; letter-spacing: 0.08em; font-size: 11px; }
.closer-cta a.micro:hover { color: var(--ivory); opacity: 1; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--hair); padding: 26px 0; }
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  flex-wrap: wrap;
}
.footer .micro { min-height: 44px; display: inline-flex; align-items: center; }
.footer .wordmark { font-size: 11px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .fade-up { animation: none; opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  a:hover .plate > .plate-fill, a:hover .plate img { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root {
    --pad: 40px;
    --sec: 96px;
    --fs-hero: 72px;
    --fs-closer: 64px;
    --fs-title: 40px;
    --fs-statement: 42px;
    --fs-case: 26px;
  }
  .grid-12 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .hero, .hero-inner { min-height: 640px; }
  .hero-row { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .hero-lede { grid-column: 1 / span 4; font-size: 16px; }
  .hero-cred { grid-column: 5 / span 2; }
  .svc-title { font-size: 36px; }
  .svc-desc { flex-basis: 300px; }
  .studio-left { grid-column: 1 / span 6; }
  .studio-right { grid-column: 1 / span 6; margin-top: 56px; }
}

@media (max-width: 768px) {
  :root {
    --pad: 20px;
    --sec: 72px;
    --nav-h: 64px;
    --fs-hero: 52px;
    --fs-closer: 46px;
    --fs-title: 32px;
    --fs-statement: 32px;
    --fs-case: 22px;
    --fs-body: 12.5px;
    --fs-eyebrow: 10px;
    --fs-micro: 9px;
  }
  body { font-size: 13px; }
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }

  .hero, .hero-inner { min-height: 0; }
  .hero-inner { padding-top: 24px; padding-bottom: 56px; gap: 64px; }
  .hero-main { gap: 36px; }
  .hero-title { max-width: none; }
  .hero-row { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .hero-lede, .hero-cred { grid-column: 1 / -1; }
  .hero-lede { font-size: 16px; }
  .cred-names { font-size: 22px; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
  .head-note { max-width: none; }

  .grid-12 { grid-template-columns: minmax(0, 1fr); }

  .svc-row { flex-wrap: wrap; padding: 28px 0; gap: 12px; }
  .svc-num { flex-basis: 100%; }
  .svc-title { flex-basis: 100%; font-size: 30px; }
  .svc-desc { flex-basis: 100%; }
  .svc-foot { flex-direction: column; align-items: flex-start; gap: 20px; }

  .studio-left, .studio-right { grid-column: 1 / -1; }
  .studio-right { margin-top: 40px; }
  .studio-left .t-statement { max-width: none; }
  .founder-name { font-size: 26px; }

  .tiers { grid-template-columns: minmax(0, 1fr); gap: 36px; padding-bottom: 36px; }
  .tier-price { font-size: 30px; }
  .svc-offer { flex-direction: column; gap: 12px; padding-bottom: 36px; }

  .band { padding: 80px 0; }
  .band-title { font-size: 32px; max-width: none; }
  .points { grid-template-columns: minmax(0, 1fr); gap: 32px; margin-top: 44px; }
  .stats-strip { padding: 56px 0; }
  .stats { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .stat-num { font-size: 44px; }

  .closer { padding-top: 96px; padding-bottom: 96px; }
  .closer-title { max-width: none; }
  .closer-cta { margin-top: 36px; gap: 20px; }

  .footer .container { flex-direction: column; align-items: flex-start; gap: 0; }

}

@media (max-width: 390px) {
  .pill { padding: 0 24px; }
}
