/* ============================================================
   NOBLE MEDIA — Editorial Monochrome Studio
   Design system: near-black canvas, warm off-white ink,
   one restrained champagne accent. Playfair + Montserrat.
   ============================================================ */

:root {
  /* canvas */
  --bg:        #0b0b0b;
  --bg-1:      #111111;
  --bg-2:      #161616;
  --bg-3:      #1c1c1c;
  /* ink */
  --ink:       #f5f3ee;
  --ink-dim:   #b8b5ad;
  --muted:     #9a978f;
  --faint:     #84817a;
  /* lines */
  --line:      rgba(245,243,238,0.10);
  --line-2:    rgba(245,243,238,0.18);
  /* accent — restrained warm champagne */
  --accent:    #c6b08a;
  --accent-hi: #ddc9a4;
  --accent-dim:rgba(198,176,138,0.14);
  /* type */
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans:  "Montserrat", "Helvetica Neue", Arial, sans-serif;
  /* rhythm */
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --maxw: 1280px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-2: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
::selection { background: var(--accent); color: #0b0b0b; }

/* ---------- film grain overlay ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 11vw, 9rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 7vw, 5rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 0.75rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--accent); opacity: 0.7;
}
.eyebrow--center::before { display: none; }
@media (max-width: 540px) {
  .eyebrow { font-size: 0.62rem; letter-spacing: 0.16em; flex-wrap: wrap; }
  .eyebrow::before { width: 18px; }
}

/* ---------- type scale ---------- */
.display {
  font-family: var(--serif); font-weight: 900;
  line-height: 0.98; letter-spacing: -0.015em;
  font-size: clamp(2.9rem, 9vw, 7rem);
}
h1,h2,h3 { font-family: var(--serif); font-weight: 700; line-height: 1.04; letter-spacing: -0.01em; }
.h-xl { font-size: clamp(2.4rem, 6.5vw, 5rem); font-weight: 900; }
.h-lg { font-size: clamp(2rem, 5vw, 3.5rem); }
.h-md { font-size: clamp(1.5rem, 3.2vw, 2.25rem); }
.serif-it { font-style: italic; font-weight: 500; }
.lede { font-size: clamp(1.05rem, 1.9vw, 1.35rem); color: var(--ink-dim); font-weight: 300; max-width: 52ch; }
.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  --pad-y: 1rem; --pad-x: 1.9rem;
  position: relative; display: inline-flex; align-items: center; gap: 0.7rem;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 2px; transition: transform 0.5s var(--ease), color 0.4s, background 0.4s, border-color 0.4s;
  will-change: transform;
}
.btn__label { position: relative; z-index: 1; }
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary { background: var(--ink); color: #0b0b0b; }
.btn--primary:hover { background: var(--accent-hi); }

.btn--ghost { border: 1px solid var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-hi); }

.btn--lg { --pad-y: 1.15rem; --pad-x: 2.4rem; font-size: 0.82rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* text link with animated underline */
.tlink { position: relative; color: var(--ink); font-weight: 500; }
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform 0.45s var(--ease);
}
.tlink:hover::after { transform: scaleX(1); transform-origin: left; }
.tlink:hover { color: var(--accent-hi); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.5s var(--ease), border-color 0.5s, backdrop-filter 0.5s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11,11,11,0.72);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* wordmark rebuilt in type */
.wordmark { display: inline-flex; flex-direction: column; line-height: 1; }
.wordmark b { font-family: var(--serif); font-weight: 900; font-size: 1.32rem; letter-spacing: 0.01em; }
.wordmark span {
  font-family: var(--sans); font-size: 0.5rem; font-weight: 600;
  letter-spacing: 0.46em; text-transform: uppercase; color: var(--muted);
  margin-top: 4px; padding-left: 2px;
}
.wordmark:hover b { color: var(--accent-hi); transition: color 0.4s; }

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-dim); position: relative; transition: color 0.35s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.header-cta { display: inline-flex; }

/* burger */
.burger { display: none; width: 30px; height: 18px; position: relative; }
.burger span { position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--ink); transition: transform 0.4s var(--ease), opacity 0.3s; }
.burger span:nth-child(1){ top: 0; }
.burger span:nth-child(2){ top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3){ bottom: 0; }
body.menu-open .burger span:nth-child(1){ top: 50%; transform: translateY(-50%) rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity: 0; }
body.menu-open .burger span:nth-child(3){ bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; gap: 0.4rem;
  padding: var(--gutter);
  transform: translateY(-100%); transition: transform 0.6s var(--ease); pointer-events: none;
}
body.menu-open .mobile-nav { transform: translateY(0); pointer-events: auto; }
.mobile-nav a { font-family: var(--serif); font-size: clamp(2rem,9vw,3rem); font-weight: 700; padding-block: 0.35rem; color: var(--ink); }
.mobile-nav a small { font-family: var(--sans); font-size: 0.7rem; color: var(--faint); margin-right: 0.9rem; letter-spacing: 0.2em; }
.mobile-nav .btn {
  margin-top: 2rem; color: #0b0b0b; font-family: var(--sans);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.16em;
  justify-content: center;
}
.mobile-nav .btn .btn__label { color: #0b0b0b; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: var(--nav-h); overflow: hidden; }
.hero__glow {
  position: absolute; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  right: -12vw; top: 8vh; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, rgba(198,176,138,0.10), transparent 62%);
  filter: blur(30px); pointer-events: none;
}
/* liquid-ether fluid background layer (fades in naturally as the flow builds) */
.hero__fx {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 1;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11,11,11,0.55) 0%, rgba(11,11,11,0.15) 40%, rgba(11,11,11,0.0) 70%),
    linear-gradient(0deg, rgba(11,11,11,0.6) 0%, rgba(11,11,11,0.0) 30%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
/* React-Bits container base (kept for parity) */
.liquid-ether-container { position: relative; overflow: hidden; width: 100%; height: 100%; }
.hero .eyebrow { margin-bottom: 1.8rem; }
.hero__title { margin-bottom: 1.8rem; line-height: 1.12; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.12em; margin-bottom: -0.06em; }
.hero__title .line > span { display: block; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; align-items: center; }
.hero__meta { display: flex; gap: clamp(1.5rem,4vw,3.5rem); margin-top: clamp(3rem,7vw,5rem); flex-wrap: wrap; }
.hero__meta .stat b { font-family: var(--serif); font-size: clamp(1.6rem,3.2vw,2.4rem); font-weight: 700; display: block; }
.hero__meta .stat span { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.scroll-cue { position: absolute; bottom: 2rem; left: var(--gutter); z-index: 2; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--faint); display: flex; align-items: center; gap: 0.8rem; }
.scroll-cue i { width: 1px; height: 34px; background: linear-gradient(var(--accent), transparent); display: block; animation: cue 2.4s var(--ease) infinite; transform-origin: top; }
@media (max-width: 768px) { .scroll-cue { display: none; } }
@keyframes cue { 0%{transform:scaleY(0);opacity:0} 40%{transform:scaleY(1);opacity:1} 100%{transform:scaleY(0) translateY(34px);opacity:0} }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { border-block: 1px solid var(--line); padding-block: 1.5rem; overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; gap: 2.5rem; animation: marquee 34s linear infinite; will-change: transform; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem,3vw,2.1rem); color: var(--ink-dim); }
.marquee .dot { color: var(--accent); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SERVICES
   ============================================================ */
.sec-head { display: grid; grid-template-columns: 1fr; gap: 1.4rem; margin-bottom: clamp(2.5rem,5vw,4rem); }
.sec-head__row { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }

.svc-list { border-top: 1px solid var(--line); }
.svc {
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: clamp(1rem,3vw,2.5rem);
  padding-block: clamp(1.6rem,3.5vw,2.4rem); border-bottom: 1px solid var(--line);
  position: relative; transition: padding-left 0.5s var(--ease);
}
.svc__name { display: block; }
.svc::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg-1), transparent); opacity: 0; transition: opacity 0.5s; z-index: 0; pointer-events: none; }
.svc:hover { padding-left: 1.2rem; }
.svc:hover::before { opacity: 1; }
.svc > * { position: relative; z-index: 1; }
.svc__idx { font-family: var(--serif); font-size: 0.95rem; color: var(--accent); font-style: italic; }
.svc__name { font-family: var(--serif); font-size: clamp(1.4rem,3.2vw,2.1rem); font-weight: 700; }
.svc__desc { display: block; color: var(--muted); font-size: 0.95rem; font-weight: 300; margin-top: 0.5rem; max-width: 52ch; }
.svc__price { font-size: 0.8rem; letter-spacing: 0.06em; color: var(--ink-dim); white-space: nowrap; text-align: right; }
.svc__price b { display: block; font-family: var(--serif); font-size: 1.15rem; color: var(--ink); font-weight: 700; }
.svc__arrow { color: var(--faint); transition: color 0.4s, transform 0.4s var(--ease); }
.svc:hover .svc__arrow { color: var(--accent); transform: translate(3px,-3px); }
@media (max-width: 720px) {
  .svc { grid-template-columns: auto 1fr; }
  .svc__price { grid-column: 2; text-align: left; }
  .svc__arrow { display: none; }
}

/* ============================================================
   PROOF / RESULTS
   ============================================================ */
.proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: clamp(1rem,2.5vw,1.6rem); }
.proof-card {
  border: 1px solid var(--line); background: var(--bg-1); border-radius: 4px; overflow: hidden;
  transition: transform 0.6s var(--ease), border-color 0.5s;
}
.proof-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.proof-card__media { overflow: hidden; aspect-ratio: 4/5; background: var(--bg-2); }
.proof-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.proof-card:hover .proof-card__media img { transform: scale(1.04); }
.proof-card__body { padding: 1.3rem 1.4rem 1.5rem; }
.proof-card__kicker { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.proof-card__title { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; margin-top: 0.4rem; }

/* big stat band */
.statband { display: grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); gap: 2rem clamp(1rem,3vw,2.4rem); }
.statband .s { min-width: 0; }
.statband .s b { font-family: var(--serif); font-size: clamp(2rem,3.4vw,3rem); font-weight: 900; line-height: 1; letter-spacing: -0.025em; display: block; white-space: nowrap; }
.statband .s .pct { color: var(--accent); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; margin-top: 0.5rem; display: block; }
.statband .s span.lbl { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.05em; margin-top: 0.3rem; display: block; }

/* ============================================================
   PROCESS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.step { background: var(--bg); padding: clamp(1.8rem,3.5vw,2.6rem); position: relative; transition: background 0.5s; }
.step:hover { background: var(--bg-1); }
.step__n { font-family: var(--serif); font-style: italic; font-size: 0.9rem; color: var(--accent); }
.step h3 { font-size: 1.15rem; margin-top: 1.3rem; letter-spacing: 0.02em; text-transform: uppercase; font-family: var(--sans); font-weight: 600; }
.step p { color: var(--muted); font-weight: 300; font-size: 0.92rem; margin-top: 0.6rem; }

/* ============================================================
   SPLIT / ABOUT teaser
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,6vw,5rem); align-items: center; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; } }
.split__media { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 4/5; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media::after { content:""; position:absolute; inset:0; box-shadow: inset 0 0 120px rgba(0,0,0,0.6); }
.split__media .tag { position: absolute; left: 1rem; bottom: 1rem; z-index:2; font-size: 0.65rem; letter-spacing:0.2em; text-transform:uppercase; color: var(--ink); background: rgba(11,11,11,0.55); backdrop-filter: blur(6px); padding:0.5rem 0.8rem; border:1px solid var(--line); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { text-align: center; position: relative; }
.cta-band .display { margin: 1.4rem auto 2rem; }
.cta-band__glow { position:absolute; inset:0; background: radial-gradient(ellipse at center, var(--accent-dim), transparent 60%); pointer-events:none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); padding-block: clamp(3.5rem,7vw,5.5rem) 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 720px){ .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
.footer-brand .wordmark b { font-size: 2.4rem; }
.footer-brand .wordmark span { font-size: 0.62rem; letter-spacing: 0.5em; margin-top: 6px; }
.footer-brand p { color: var(--muted); font-weight: 300; margin-top: 1.2rem; max-width: 34ch; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); margin-bottom: 1.1rem; font-family: var(--sans); font-weight: 600; }
.footer-col a { display: block; color: var(--ink-dim); padding-block: 0.4rem; font-size: 0.92rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--accent-hi); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: clamp(3rem,6vw,4.5rem); padding-top: 1.6rem; border-top: 1px solid var(--line); color: var(--faint); font-size: 0.78rem; }

/* ============================================================
   FORMS
   ============================================================ */
.field { margin-bottom: 1.5rem; }
.field label { display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--bg-1); border: 1px solid var(--line); border-radius: 3px;
  padding: 0.95rem 1.1rem; color: var(--ink); font-family: var(--sans); font-size: 0.95rem;
  transition: border-color 0.4s, background 0.4s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: var(--bg-2); }
.field textarea { resize: vertical; min-height: 140px; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero { padding-top: calc(var(--nav-h) + clamp(3rem,8vw,6rem)); padding-bottom: clamp(2rem,5vw,3.5rem); }
.page-hero .display { margin-top: 1.4rem; }
.page-hero .lede { margin-top: 1.6rem; }

/* contact split */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,6vw,5rem); }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-detail { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-detail .row { border-bottom: 1px solid var(--line); padding-bottom: 1.2rem; }
.contact-detail .row small { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); display:block; margin-bottom: 0.5rem; }
.contact-detail .row a, .contact-detail .row p { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }

/* ---------- reveal ----------
   Hidden state is gated behind .js so that with no JS (or if the
   reveal never fires) all content stays fully visible. */
.reveal { transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(26px); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; } .reveal.d4 { transition-delay: 0.32s; }
/* hero line reveal */
.line > span { transition: transform 1s var(--ease); }
.js .hero .line > span { transform: translateY(105%); }
.js .hero.in .line > span { transform: translateY(0); }
.hero.in .line:nth-child(2) > span { transition-delay: 0.09s; }
.hero.in .line:nth-child(3) > span { transition-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .line > span { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee__track, .scroll-cue i { animation: none !important; }
}

/* ============================================================
   PHOTO GALLERY + IN-ACTION FEATURE
   ============================================================ */
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(0.6rem,1.5vw,1rem); }
.gallery__item { position: relative; overflow: hidden; border-radius: 3px; border: 1px solid var(--line); aspect-ratio: 4/5; background: var(--bg-2); }
.gallery__item.is-wide { grid-column: 1 / -1; aspect-ratio: 16/7; }
@media (max-width: 720px){ .gallery__item.is-wide { aspect-ratio: 3/2; } }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption { position: absolute; left: 0.9rem; bottom: 0.8rem; z-index: 2; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); background: rgba(11,11,11,0.55); backdrop-filter: blur(6px); padding: 0.45rem 0.7rem; border: 1px solid var(--line); }

/* packages */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pkg { background: var(--bg); padding: clamp(1.6rem,3vw,2.3rem); transition: background 0.5s; display: flex; flex-direction: column; }
.pkg:hover { background: var(--bg-1); }
.pkg .tag { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.1rem; }
.pkg h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; }
.pkg p { color: var(--muted); font-weight: 300; font-size: 0.92rem; margin-top: 0.7rem; }

.feature__media { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 3/2; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__media::after { content:""; position:absolute; inset:0; box-shadow: inset 0 0 120px rgba(0,0,0,0.55); }

/* ---------- capture (shot) mode: collapse full-viewport hero so a
   tall headless window renders the entire document ---------- */
.shot .hero { min-height: auto; padding-top: calc(var(--nav-h) + 3.5rem); padding-bottom: 4.5rem; }
.shot .scroll-cue { display: none; }

/* ---------- header layout responsive ---------- */
@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .burger { display: block; }
}
