:root {
  --sage: #708256;
  --sage-dark: #4f5d3c;
  --sage-soft: #e7ebdf;
  --cream: #f5f1e8;
  --cream-2: #ece5d4;
  --ink: #14160f;
  --muted: #5a5e54;
  --line: #cfc8b6;
  --gold: #b69553;
  --max: 1400px;
  --gutter: clamp(20px, 5vw, 80px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--sage-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--sage); }

h1, h2, h3, h4, .display, .eyebrow-serif {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 5.2rem); line-height: 1.05; font-weight: 400; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.4rem); line-height: 1.12; font-weight: 400; letter-spacing: -0.005em; }
h3 { font-size: clamp(1.35rem, 2vw, 1.65rem); line-height: 1.25; }
h4 { font-size: 1.15rem; font-weight: 500; }
p { margin: 0 0 1.1em; color: var(--ink); }

.eyebrow {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--tight { padding: clamp(48px, 6vw, 90px) 0; }
.section--cream { background: var(--cream-2); }
.section--sage { background: var(--sage); color: #fff; }
.section--sage h1, .section--sage h2, .section--sage h3, .section--sage p { color: #fff; }
.section--sage .eyebrow { color: var(--cream); }
.section--ink { background: var(--ink); color: #d9d6cd; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }

.divider {
  width: 60px; height: 1px; background: var(--sage);
  margin: 0 0 28px;
}

/* ============= NAV ============= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: 1400px; margin: 0 auto;
}
.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px; letter-spacing: 0.02em;
  color: var(--ink);
}
.brand small { display: block; font-family: "Inter", sans-serif; font-size: 10px; letter-spacing: 0.28em; color: var(--sage); text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); font-weight: 500;
}
.nav-links a.active, .nav-links a:hover { color: var(--sage); }
.nav-cta {
  border: 1px solid var(--ink); padding: 10px 18px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
}
.nav-cta:hover { background: var(--ink); color: var(--cream); }
.nav-toggle { display: none; background: none; border: 0; font-size: 22px; cursor: pointer; color: var(--ink); }

@media (max-width: 960px) {
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 14px var(--gutter) 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav-toggle { display: block; }
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; border-radius: 999px;
  transition: all .25s ease;
  cursor: pointer; border: 1px solid transparent;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--sage); color: #fff; }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-ghost:hover { background: var(--cream); color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-link { padding: 0; background: none; color: var(--sage-dark); border-bottom: 1px solid currentColor; border-radius: 0; }

/* ============= HERO ============= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter) clamp(60px, 8vw, 110px);
  width: 100%;
}
.hero h1 { color: #fff; max-width: 18ch; }
.hero .eyebrow { color: rgba(255,255,255,0.85); }
.hero p.lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); max-width: 52ch; color: #f3eee3; margin-bottom: 32px; }

.hero--short { min-height: 56vh; }
.hero--page { min-height: 62vh; }

/* ============= SPLIT ============= */
.split {
  display: grid; gap: clamp(40px, 6vw, 90px);
  grid-template-columns: 1fr 1fr; align-items: center;
}
.split--narrow { grid-template-columns: 1.1fr 1fr; }
.split img { border-radius: 4px; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } .split img { aspect-ratio: 4/3; } }

/* ============= CARDS / GRID ============= */
.grid-2 { display: grid; gap: 40px; grid-template-columns: repeat(2, 1fr); }
.grid-3 { display: grid; gap: 40px; grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; gap: 32px; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line);
  padding: 36px 32px; border-radius: 4px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(0,0,0,.18); }
.card h3 { margin-bottom: 14px; }
.card .eyebrow { font-size: 11px; margin-bottom: 10px; }

.service-card {
  position: relative; padding: 44px 36px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 4px;
}
.service-card .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px; letter-spacing: 0.2em;
  color: var(--sage); margin-bottom: 18px;
}

/* ============= TEAM ============= */
.team-member { }
.team-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream-2);
  margin-bottom: 22px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter .4s ease, transform .6s ease; }
.team-member:hover .team-photo img { filter: grayscale(0%); transform: scale(1.03); }
.team-name { font-family: "Cormorant Garamond", serif; font-size: 1.7rem; margin: 0 0 4px; }
.team-role { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 14px; }
.team-bio { font-size: 15px; color: var(--muted); line-height: 1.7; }
.team-email { display: inline-block; margin-top: 14px; font-size: 13px; letter-spacing: 0.06em; }

/* ============= PROCESS ============= */
.process-step {
  display: grid; grid-template-columns: 90px 1fr; gap: 36px;
  padding: 44px 0; border-top: 1px solid var(--line);
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-step .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem; color: var(--sage); line-height: 1;
}
@media (max-width: 600px) { .process-step { grid-template-columns: 1fr; gap: 12px; } .process-step .num { font-size: 2.2rem; } }

/* ============= FAQ ============= */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 28px 0; text-align: left;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem; color: var(--ink);
}
.faq-q .ico { color: var(--sage); font-size: 1.5rem; transition: transform .3s ease; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 0 28px; color: var(--muted); font-size: 16px; line-height: 1.75; }

/* ============= LISTS ============= */
.feature-list { list-style: none; padding: 0; margin: 0 0 24px; }
.feature-list li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--ink);
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 22px;
  width: 14px; height: 1px; background: var(--sage);
}

/* ============= RESOURCES ============= */
.doc-list { list-style: none; padding: 0; margin: 0; }
.doc-list li {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.doc-list .doc-name { font-family: "Cormorant Garamond", serif; font-size: 1.3rem; color: var(--ink); }
.doc-list .doc-type { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-left: 8px; }
.doc-list a.dl {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage-dark);
  white-space: nowrap;
}

/* ============= BOOKING LIST ============= */
.booking-list { display: grid; gap: 18px; }
.booking-row {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  background: #fff; border: 1px solid var(--line); padding: 24px 28px; border-radius: 4px;
  transition: border-color .2s ease;
}
.booking-row:hover { border-color: var(--sage); }
.booking-row .step { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage); margin-bottom: 6px; }
.booking-row .title { font-family: "Cormorant Garamond", serif; font-size: 1.3rem; }
@media (max-width: 600px) { .booking-row { flex-direction: column; align-items: flex-start; } }

/* ============= QUOTE / CALLOUT ============= */
.callout {
  background: var(--sage-soft);
  border-left: 3px solid var(--sage);
  padding: 36px 40px;
  margin: 32px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem; line-height: 1.45; color: var(--sage-dark);
}

/* ============= NOTICE ============= */
.notice {
  background: var(--cream-2); border: 1px solid var(--line);
  padding: 22px 28px; border-radius: 4px;
  font-size: 15px; color: var(--muted);
}

/* ============= FORM ============= */
.form { display: grid; gap: 18px; }
.form label { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.form input, .form textarea {
  width: 100%; padding: 14px 16px;
  font-family: inherit; font-size: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 4px;
  color: var(--ink);
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--sage); }
.form textarea { min-height: 140px; resize: vertical; }
.form .recaptcha-note { font-size: 12px; color: var(--muted); }

/* ============= FOOTER ============= */
.site-footer {
  background: var(--ink); color: #c9c5b8;
  padding: 90px 0 30px;
}
.footer-cta {
  position: relative; padding: 100px 0; color: #fff; text-align: center;
  background: #000;
  overflow: hidden;
}
.footer-cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.footer-cta .inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding: 0 var(--gutter); }
.footer-cta h2 { color: #fff; }
.footer-cta p { color: #efe8d7; margin-bottom: 32px; }
.footer-cta .btn-ghost { color: #fff; border-color: #fff; }
.footer-cta .btn-ghost:hover { background: #fff; color: #000; }

.site-footer .ftr-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
}
@media (max-width: 800px) { .site-footer .ftr-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .site-footer .ftr-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: "Inter", sans-serif; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: #c9c5b8; display: block; padding: 4px 0; font-size: 14px; }
.site-footer a:hover { color: var(--sage); }
.site-footer .legal {
  margin-top: 60px; padding-top: 28px; border-top: 1px solid #2c2e2a;
  font-size: 12px; color: #8a877d; line-height: 1.8;
}
.site-footer .brand-mark { font-family: "Cormorant Garamond", serif; color: #fff; font-size: 26px; margin-bottom: 8px; }

/* ============= UTILITIES ============= */
.center { text-align: center; }
.muted { color: var(--muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.lead { font-size: 1.15rem; color: var(--muted); line-height: 1.7; }
.max-prose { max-width: 68ch; }
.max-prose-md { max-width: 56ch; }

/* ============= CINEMATIC HERO ============= */
.cinema {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.cinema-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-out infinite alternate;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.cinema-img.is-loaded { opacity: 1; }
@keyframes kenburns {
  0%   { transform: scale(1.0) translate(0,0); }
  100% { transform: scale(1.15) translate(-2%,-2%); }
}
.cinema::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.85) 100%);
}
.cinema-inner {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--gutter) clamp(60px, 9vw, 130px);
  color: #fff;
  max-width: 1500px; margin: 0 auto;
}
.cinema-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: "Inter", sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.cinema-eyebrow::before { content: ""; width: 38px; height: 1px; background: #fff; }
.cinema h1 {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  max-width: 16ch;
  line-height: 1.05;
}
.cinema h1 em { font-style: normal; color: var(--sage-soft); }
.cinema .lede {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  max-width: 48ch;
  color: rgba(255,255,255,0.85);
  margin: 30px 0 38px;
  font-weight: 300;
}
.cinema-meta {
  position: absolute; bottom: 32px; right: var(--gutter);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.cinema-scroll {
  position: absolute; bottom: 32px; left: var(--gutter);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 12px;
}
.cinema-scroll::after {
  content: ""; width: 1px; height: 36px;
  background: linear-gradient(180deg, #fff, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============= MARQUEE ============= */
.marquee {
  background: var(--ink); color: var(--cream);
  border-top: 1px solid #2a2c25; border-bottom: 1px solid #2a2c25;
  overflow: hidden; padding: 22px 0;
}
.marquee-track {
  display: flex; gap: 80px; white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 300;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 80px; }
.marquee-track span::after {
  content: "✦"; color: var(--sage); font-style: normal; font-size: 0.8em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============= EDITORIAL / OVERSIZED ============= */
.display-xl {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.serial {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px; letter-spacing: 0.18em; color: var(--sage);
}

/* ============= EDITORIAL FEATURE ============= */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 80vh;
}
.feature-media {
  position: relative; overflow: hidden;
  background: var(--cream-2);
}
.feature-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.feature:hover .feature-media img { transform: scale(1.04); }
.feature-body {
  padding: clamp(50px, 7vw, 110px);
  display: flex; flex-direction: column; justify-content: center;
}
.feature--reverse .feature-media { order: 2; }
.feature--cream { background: var(--cream-2); }
.feature--ink { background: var(--ink); color: #d9d6cd; }
.feature--ink h2, .feature--ink h3 { color: #fff; }
@media (max-width: 900px) {
  .feature, .feature--reverse { grid-template-columns: 1fr; }
  .feature--reverse .feature-media { order: 0; }
  .feature-media { min-height: 60vh; }
}

/* ============= NUMBERED LARGE ITEMS ============= */
.big-list { margin: 0; padding: 0; list-style: none; }
.big-list li {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 40px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.big-list li:last-child { border-bottom: 1px solid var(--line); }
.big-list .bl-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.6rem; color: var(--sage);
}
.big-list .bl-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.1; letter-spacing: -0.01em;
  margin: 0;
}
.big-list .bl-body { color: var(--muted); font-size: 16px; line-height: 1.7; }
@media (max-width: 800px) {
  .big-list li { grid-template-columns: 1fr; gap: 14px; padding: 36px 0; }
}

/* ============= IMAGE COLLAGE ============= */
.collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 16px;
}
.collage img { width: 100%; height: 100%; object-fit: cover; }
.collage .c1 { grid-column: 1 / span 5; grid-row: 1 / span 6; }
.collage .c2 { grid-column: 6 / span 7; grid-row: 1 / span 4; }
.collage .c3 { grid-column: 6 / span 4; grid-row: 5 / span 3; }
.collage .c4 { grid-column: 10 / span 3; grid-row: 5 / span 3; }
@media (max-width: 800px) {
  .collage { grid-auto-rows: 50px; gap: 10px; }
  .collage .c1 { grid-column: 1 / span 12; grid-row: 1 / span 4; }
  .collage .c2 { grid-column: 1 / span 12; grid-row: 5 / span 3; }
  .collage .c3 { grid-column: 1 / span 6; grid-row: 8 / span 3; }
  .collage .c4 { grid-column: 7 / span 6; grid-row: 8 / span 3; }
}

/* ============= STICKY SIDE INDEX ============= */
.split-sticky {
  display: grid; grid-template-columns: 280px 1fr; gap: 80px;
}
.split-sticky .side {
  position: sticky; top: 110px; align-self: start;
}
.split-sticky .side .eyebrow { display: block; margin-bottom: 14px; }
@media (max-width: 900px) { .split-sticky { grid-template-columns: 1fr; } .split-sticky .side { position: static; } }

/* ============= REVEAL ANIMATIONS ============= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .18s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .32s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .46s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .60s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .74s; }

/* ============= PULL QUOTE ============= */
.pull {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.2; letter-spacing: -0.01em;
  max-width: 24ch; color: var(--ink);
}
.pull .ampersand { color: var(--sage); font-size: 1.5em; vertical-align: -0.1em; }
.pull-attr { margin-top: 24px; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

/* ============= STAT STRIP ============= */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 56px 32px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.stat:last-child { border-right: 0; }
.stat .n {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1; color: var(--sage); font-weight: 300;
}
.stat .l { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 800px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
}

/* ============= ASYMMETRIC HEADING ============= */
.hd-asym {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  margin-bottom: 80px;
}
.hd-asym h2 { margin: 0; }
.hd-asym .r { padding-bottom: 12px; }
@media (max-width: 800px) { .hd-asym { grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; } }

/* hover refinement on nav cta */
.nav-cta { background: transparent; }

/* ============= PAGE LOAD ============= */
body { opacity: 0; transition: opacity .6s ease; }
body.loaded { opacity: 1; }

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--sage);
  z-index: 100; transition: width .1s ease;
}

/* Page transition curtain — opacity crossfade */
.curtain {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink) url("images/hero_biddaddaba.jpg") center/cover no-repeat;
  pointer-events: none;
  opacity: 1;
  transition: opacity .6s ease;
}
.curtain::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(20,22,15,0.65) 100%);
}
.curtain.is-fading { opacity: 0; }
.curtain.is-entering { opacity: 1; }

/* ============= WORD REVEAL (hero) ============= */
.split-word { display: inline-block; overflow: hidden; vertical-align: top; padding: 0 .05em; }
.split-word > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1s cubic-bezier(.2,.7,.2,1), opacity 1s ease;
}
.split-word.in > span { transform: translateY(0); opacity: 1; }

/* Cinema text stagger after curtain */
.cinema-inner > * { opacity: 0; transform: translateY(20px); transition: opacity .9s ease, transform .9s ease; }
body.loaded .cinema-inner > * { opacity: 1; transform: translateY(0); }
body.loaded .cinema-inner > *:nth-child(1) { transition-delay: 1.0s; }
body.loaded .cinema-inner > *:nth-child(2) { transition-delay: 1.2s; }
body.loaded .cinema-inner > *:nth-child(3) { transition-delay: 1.45s; }
body.loaded .cinema-inner > *:nth-child(4) { transition-delay: 1.65s; }

body.loaded .cinema-scroll, body.loaded .cinema-meta { opacity: 0; animation: fadeUp 1.2s ease 1.8s forwards; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============= PARALLAX ============= */
.cinema-img { will-change: transform; }

/* ============= IMAGE CLIP REVEAL ============= */
.clip-reveal {
  position: relative;
  overflow: hidden;
}
.clip-reveal img {
  transform: scale(1.2);
  transition: transform 1.6s cubic-bezier(.2,.7,.2,1);
}
.clip-reveal::after {
  content: ""; position: absolute; inset: 0;
  background: var(--sage);
  transform: scaleX(1); transform-origin: right;
  transition: transform 1.2s cubic-bezier(.7,0,.2,1);
  z-index: 2;
}
.clip-reveal.in::after { transform: scaleX(0); }
.clip-reveal.in img { transform: scale(1); }

/* feature-media auto reveal */
.feature-media { position: relative; overflow: hidden; }
.feature-media::after {
  content: ""; position: absolute; inset: 0;
  background: var(--cream);
  transform: scaleY(1); transform-origin: top;
  transition: transform 1.4s cubic-bezier(.7,0,.2,1);
  z-index: 2;
}
.feature-media.in::after { transform: scaleY(0); }
.feature-media img { transform: scale(1.15); transition: transform 2s cubic-bezier(.2,.7,.2,1); }
.feature-media.in img { transform: scale(1); }
.feature--ink .feature-media::after { background: var(--ink); }

/* ============= COUNT-UP ============= */
.stat .n { display: inline-block; min-width: 2ch; }

/* ============= MAGNETIC BUTTONS ============= */
.btn { will-change: transform; transition: background .25s ease, color .25s ease, border-color .25s ease, transform .35s cubic-bezier(.2,.7,.2,1); }
.btn .arrow { display: inline-block; transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.btn:hover .arrow { transform: translateX(6px); }

/* ============= ANIMATED LINK UNDERLINES ============= */
.nav-links a:not(.nav-cta) { position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--sage);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s cubic-bezier(.7,0,.2,1);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active:not(.nav-cta)::after {
  transform: scaleX(1); transform-origin: left;
}

/* ============= MARQUEE ENHANCE ============= */
.marquee { transition: background .3s ease; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span:hover::after { color: var(--cream); transition: color .3s ease; }

/* ============= FAQ TUNE ============= */
.faq-q { transition: padding-left .35s cubic-bezier(.2,.7,.2,1); }
.faq-q:hover { padding-left: 14px; }
.faq-item .ico { transition: transform .4s cubic-bezier(.2,.7,.2,1); }

/* ============= BIG LIST HOVER ============= */
.big-list li { transition: background .4s ease, padding-left .4s cubic-bezier(.2,.7,.2,1); padding-left: 0; }
.big-list li:hover { padding-left: 16px; }
.big-list li:hover .bl-num { color: var(--sage-dark); }

/* ============= CARD HOVER REFRESH ============= */
.service-card, .card { transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease, border-color .3s ease; }
.service-card:hover { border-color: var(--sage); transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(0,0,0,.2); }

/* ============= REVEAL VARIANTS ============= */
.reveal-fade { opacity: 0; transition: opacity 1.4s ease; }
.reveal-fade.in { opacity: 1; }
.reveal-slow { transition-duration: 1.4s !important; }

/* tiny disable for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ============= LOGO & PHONE IN NAV ============= */
.brand { display: flex; align-items: center; gap: 16px; }
.brand-logo {
  width: 84px; height: 84px;
  object-fit: contain;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.brand:hover .brand-logo { transform: scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
@media (max-width: 700px) { .brand-logo { width: 64px; height: 64px; } .brand-text { display: none; } }

.nav-utility {
  display: flex; align-items: center; gap: 18px;
}
.nav-phone {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--sage); }
@media (max-width: 700px) { .nav-phone { display: none; } }

/* ============= PAGE HERO (shorter cinematic for inner pages) ============= */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
  background: #000;
}
.page-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 25s ease-out infinite alternate;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
}
.page-hero-inner {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--gutter) 80px;
  max-width: 1500px; margin: 0 auto;
  color: #fff;
}
.page-hero h1 { color: #fff; max-width: 18ch; font-style: italic; }
.page-hero .lede { color: rgba(255,255,255,0.88); max-width: 56ch; font-size: clamp(1.05rem, 1.3vw, 1.2rem); margin-top: 18px; }
.page-hero .cinema-eyebrow { color: rgba(255,255,255,0.85); }
