/* ============================================================
   Owais Khan — landing page styles
   Editorial luxury. Cormorant Garamond display + Inter UI.
   ============================================================ */

:root {
  --bg:        #F5F3EE;  /* warm editorial off-white */
  --ink:       #1A1A18;  /* primary text */
  --ink-soft:  #45443f;  /* softened body text on light bg */
  --muted:     #8A8880;  /* secondary text */
  --accent:    #C4A882;  /* warm sand/gold */
  --white:     #FFFFFF;  /* cards */
  --dark:      #1A1A18;  /* dark surfaces */
  --placeholder: #D4CEBC;
  --on-dark:   #ECE8DF;  /* light text/icons on the always-dark bands (both themes) */
  --border:    rgba(26,26,24,0.12);
  --border-dark: rgba(255,255,255,0.14);
  --bg-rgb:    245,243,238; /* for translucent page-bg (scrims, nav) */
  --ink-rgb:   26,26,24;    /* for translucent ink (tracks) */

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 64px;
  --stats-h: 56px;

  --radius: 14px;     /* cards, images, panels */
  --radius-sm: 8px;   /* buttons, pills, tiles */

  color-scheme: light;
}

/* ---------- Dark palette ---------- */
/* Warm dark inversion. Applied when the user picks dark, OR when the system
   prefers dark and the user hasn't explicitly chosen light. */
:root[data-theme="dark"] {
  --bg:        #141310;
  --ink:       #ECE8DF;
  --ink-soft:  #C5C0B4;
  --muted:     #989284;
  --accent:    #CBB088;
  --white:     #1F1D17;  /* elevated card/panel surface */
  --dark:      #232019;  /* dark-surface bands, lifted above page bg */
  --placeholder: #2B2920;
  --border:    rgba(236,232,223,0.13);
  --border-dark: rgba(236,232,223,0.16);
  --bg-rgb:    20,19,16;
  --ink-rgb:   236,232,223;
  color-scheme: dark;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:        #141310;
    --ink:       #ECE8DF;
    --ink-soft:  #C5C0B4;
    --muted:     #989284;
    --accent:    #CBB088;
    --white:     #1F1D17;
    --dark:      #232019;
    --placeholder: #2B2920;
    --border:    rgba(236,232,223,0.13);
    --border-dark: rgba(236,232,223,0.16);
    --bg-rgb:    20,19,16;
    --ink-rgb:   236,232,223;
    color-scheme: dark;
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + var(--stats-h)); }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- shared primitives ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
  white-space: nowrap;
}
.btn--dark { background: var(--ink); color: var(--bg); }   /* auto-inverts in dark mode */
.btn--dark:hover { filter: brightness(0.88); }
.btn--gold { background: var(--accent); color: #1A1A18; border: none; }
.btn--gold:hover { background: #b89a70; }
.btn--lg { padding: 15px 30px; font-size: 15px; }

.link-arrow {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  transition: gap .3s ease;
}
.link-arrow span { transition: margin-left .3s ease; display: inline-block; }
.link-arrow:hover span { margin-left: 4px; }

/* ---------- section scaffolding ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--gutter);
}
.section--alt { background: var(--white); max-width: none; }
.section--alt > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
/* Keep alt-section headers left-aligned (like every other section) instead of
   centering the 720px head within the wider content band. */
.section--alt > .section__head { max-width: var(--maxw); }
.section--alt > .section__head > * { max-width: 720px; }

.section__head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section__head--row {
  display: flex; justify-content: space-between; align-items: flex-end;
  max-width: var(--maxw); gap: 24px;
}
.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section__title em { font-style: italic; }
.section__title--light { color: var(--on-dark); }
.section__sub { color: var(--muted); font-size: 18px; margin-top: 14px; }
.section__sub--right { text-align: right; max-width: 320px; margin-top: 0; }
.section__sub--light { color: rgba(245,243,238,0.7); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(var(--bg-rgb),0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 32px;
  padding: 0 var(--gutter);
}
.nav__brand { font-family: var(--serif); font-style: italic; font-size: 18px; font-weight: 600; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a {
  font-size: 14px; color: var(--ink); position: relative; padding: 4px 0;
  transition: color .25s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--accent); transition: width .25s ease;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__cta { padding: 9px 18px; font-size: 13px; }

.nav__theme {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: transparent; color: var(--ink); cursor: pointer;
  transition: color .25s ease, border-color .25s ease;
}
.nav__theme:hover { color: var(--accent); border-color: var(--accent); }
.nav__theme svg { width: 17px; height: 17px; }
.nav__theme-sun { display: none; }
:root[data-theme="dark"] .nav__theme-sun { display: block; }
:root[data-theme="dark"] .nav__theme-moon { display: none; }

.nav__hamburger { display: none; background: none; border: 0; cursor: pointer; width: 28px; height: 22px; position: relative; }
.nav__hamburger span {
  position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}
.nav__hamburger span:nth-child(1) { top: 0; }
.nav__hamburger span:nth-child(2) { top: 10px; }
.nav__hamburger span:nth-child(3) { top: 20px; }
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(var(--bg-rgb),0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 8px var(--gutter) 24px;
  gap: 4px;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a { padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--border); }
.nav__mobile a.btn { border: none; margin-top: 12px; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--gutter);
}
.hero__copy { max-width: 600px; }

/* ---- background video wall ---- */
.hero__wall {
  position: absolute; inset: 0; z-index: 0;
  display: flex; gap: clamp(12px, 1.5vw, 20px);
  padding: 0 clamp(12px, 2vw, 28px);
}
.hero__col { flex: 1; overflow: hidden; }
.hero__track {
  display: flex; flex-direction: column; gap: clamp(12px, 1.5vw, 20px);
  animation: heroDrift 44s linear infinite;
  will-change: transform;
}
.hero__col--2 .hero__track { animation-duration: 56s; animation-direction: reverse; }
.hero__col--3 .hero__track { animation-duration: 48s; }
.hero__col--4 .hero__track { animation-duration: 60s; animation-direction: reverse; }
@keyframes heroDrift { from { transform: translateY(0); } to { transform: translateY(-50%); } }

.hero__tile {
  width: 100%; aspect-ratio: 9 / 16; flex-shrink: 0;
  border-radius: var(--radius); overflow: hidden;
  background: var(--placeholder) center / cover no-repeat;  /* tile's poster/photo */
}
.hero__vid { width: 100%; height: 100%; object-fit: cover; display: block; }
/* warm placeholder tones until real reels are dropped in */
.hero__tile.t-a { background-color: #C9BFA6; }
.hero__tile.t-b { background-color: #D8CDB8; }
.hero__tile.t-c { background-color: #C2B59A; }
.hero__tile.t-d { background-color: #B9AE94; }
.hero__tile.t-e { background-color: #D2C9B4; }
.hero__tile.t-f { background-color: #C6B996; }

/* Cream scrim: solid behind the text column, fading right to reveal the wall;
   plus a vertical fade to hide the top/bottom scroll seams. */
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg,
      var(--bg) 0%, var(--bg) 34%,
      rgba(var(--bg-rgb),0.78) 48%, rgba(var(--bg-rgb),0.4) 70%, rgba(var(--bg-rgb),0.55) 100%),
    linear-gradient(180deg,
      var(--bg) 0%, rgba(var(--bg-rgb),0) 14%, rgba(var(--bg-rgb),0) 86%, var(--bg) 100%);
}
.hero__headline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.hero__headline em { font-style: italic; color: var(--ink); }
.hero__bio {
  margin-top: 28px; max-width: 520px;
  font-size: 17px; color: var(--ink-soft); line-height: 1.65;
}
.hero__ctas { margin-top: 36px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }


/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  position: sticky; top: var(--nav-h); z-index: 90;
  background: var(--dark); color: var(--on-dark);
}
.stats__inner {
  max-width: var(--maxw); margin: 0 auto;
  min-height: var(--stats-h);
  padding: 10px var(--gutter);
  display: flex; align-items: center; gap: clamp(24px, 4vw, 56px);
}
.stat { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.stat__label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); }
.stat__value { font-size: 22px; font-weight: 600; transition: color .25s ease; }
.stat:hover .stat__value { color: var(--accent); }
.stat__context {
  margin-left: auto; font-size: 11px; color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em; flex-shrink: 0;
}

/* ============================================================
   HERO CREDENTIALS (compliance signals, above the fold)
   ============================================================ */
.hero__trust {
  list-style: none; margin-top: 30px; padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 12px 26px;
}
.hero__trust li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-soft); letter-spacing: 0.01em;
}
.hero__trust svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; }

/* ============================================================
   PROOF OF CRAFT — statement + vertical collaborations ticker
   ============================================================ */
.craft {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: clamp(36px, 4vw, 56px) var(--gutter);
}
.craft__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 6vw, 88px); align-items: center;
}
.craft__text { max-width: 480px; }
.craft__line {
  font-family: var(--serif); font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.12; letter-spacing: -0.01em; margin-top: 12px; color: var(--ink);
}
.craft__line em { font-style: italic; }
.craft__sub { margin-top: 16px; font-size: 16px; color: var(--muted); }

.craft__rows {
  min-width: 0;   /* let the fr grid track shrink below the marquee's max-content width */
  display: flex; flex-direction: column; gap: 12px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.craft__row { overflow: hidden; min-width: 0; }
.craft__rtrack { display: flex; width: max-content; animation: craftMarquee 24s linear infinite; }
.craft__row--rev .craft__rtrack { animation-direction: reverse; animation-duration: 30s; }
.craft__row:last-child .craft__rtrack { animation-duration: 27s; }
.craft__rows:hover .craft__rtrack { animation-play-state: paused; }
.craft__rlist { display: flex; list-style: none; }
.craft__rlist li {
  font-family: var(--serif); font-style: italic; font-size: clamp(18px, 2.2vw, 24px);
  color: var(--muted); padding: 0 26px; white-space: nowrap; position: relative;
}
.craft__rlist li::after { content: "·"; position: absolute; right: -3px; color: var(--accent); }
@keyframes craftMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   AUDIENCE
   ============================================================ */
.aud { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); }
.aud__h { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-bottom: 20px; }
.aud__h--gap { margin-top: 40px; }
.bars { display: flex; flex-direction: column; gap: 14px; }
.bar { display: grid; grid-template-columns: 110px 1fr 44px; align-items: center; gap: 14px; }
.bar__label { font-size: 13px; color: var(--ink-soft); }
.bar__track { height: 7px; background: rgba(var(--ink-rgb),0.08); position: relative; overflow: hidden; }
.bar__fill { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--accent); transition: width 1.1s cubic-bezier(.22,1,.36,1); }
.bar__val { font-size: 13px; font-weight: 600; text-align: right; }

.tiles { display: flex; flex-direction: column; gap: 16px; }
.tile { background: var(--bg); border: 1px solid var(--border); padding: 20px 22px; border-radius: var(--radius-sm); }
.section--alt .tile { background: var(--bg); }
.tile__label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-weight: 600; }
.tile__value { display: block; margin-top: 8px; font-size: 16px; color: var(--ink); }
.aud__takeaway {
  margin-top: 28px; padding: 24px 26px; border-left: 2px solid var(--accent);
  font-family: var(--serif); font-style: italic; font-size: 21px; line-height: 1.4; color: var(--ink);
}

/* ============================================================
   RECENT REELS — masonry
   ============================================================ */
.reels { column-count: 3; column-gap: clamp(16px, 2vw, 24px); }
.reel {
  position: relative; break-inside: avoid; margin-bottom: clamp(16px, 2vw, 24px);
  overflow: hidden; background: var(--placeholder);
  border-radius: var(--radius);
}
.reel__media { width: 100%; transition: transform .4s ease; background-position: center; background-size: cover; background-repeat: no-repeat; }
.reel--45 .reel__media { aspect-ratio: 4 / 5; }
.reel--169 .reel__media { aspect-ratio: 16 / 9; }
.reel:hover .reel__media { transform: scale(1.02); }
/* warm-toned placeholder variation */
.reel__media--a { background-color: #C9BfA6; }
.reel__media--b { background-color: #D8CDB8; }
.reel__media--c { background-color: #C2B59A; }
.reel__media--d { background-color: #B9AE94; }
.reel__media--e { background-color: #D2C9B4; }
.reel__media--f { background-color: #C6B996; }
.reel__meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 14px; pointer-events: none;
  background: linear-gradient(to top, rgba(26,26,24,0.55), transparent);
}
.reel__stats { color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.reel__pill {
  background: rgba(245,243,238,0.92); color: #1A1A18;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
  padding: 4px 9px;
}
.reel__alt { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ============================================================
   FOR HOTELS
   ============================================================ */
.hotels { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.deliverables { list-style: none; counter-reset: d; }
.deliverables li { counter-increment: d; padding: 26px 0; border-top: 1px solid var(--border); position: relative; padding-left: 54px; }
.deliverables li:first-child { border-top: none; padding-top: 0; }
.deliverables li::before {
  content: counter(d, decimal-leading-zero);
  position: absolute; left: 0; top: 26px;
  font-family: var(--serif); font-size: 20px; color: var(--accent); font-weight: 600;
}
.deliverables li:first-child::before { top: 0; }
.deliverables h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.deliverables p { color: var(--ink-soft); font-size: 16px; }

.hotels__right { position: sticky; top: calc(var(--nav-h) + var(--stats-h) + 20px); }
.testimonial {
  background: var(--bg); color: var(--ink); padding: 38px 36px;
  border: 1px solid var(--border); border-radius: var(--radius);
}
.testimonial blockquote {
  font-family: var(--serif); font-style: italic; font-size: 25px; line-height: 1.35; color: var(--ink);
}
.testimonial cite { display: block; margin-top: 22px; font-size: 13px; font-style: normal; color: var(--muted); }
.testimonial__note { margin-top: 20px; font-size: 12px; color: var(--accent); letter-spacing: 0.04em; }

.benchmarks { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); margin-top: clamp(48px, 6vw, 72px); border-top: 1px solid var(--border); padding-top: 48px; }
.benchmark { text-align: center; }
.benchmark__num { display: block; font-family: var(--serif); font-size: clamp(40px, 5vw, 56px); font-weight: 600; line-height: 1; color: var(--ink); }
.benchmark__label { display: block; margin-top: 14px; font-size: 14px; color: var(--muted); max-width: 240px; margin-left: auto; margin-right: auto; }
.benchmark__label em { font-style: normal; color: var(--accent); }

/* ============================================================
   WAYS WE WORK
   ============================================================ */
.ways { list-style: none; max-width: 880px; }
.way { display: flex; gap: 28px; padding: 30px 0; border-top: 1px solid var(--border); align-items: baseline; }
.way:first-child { border-top: none; }
.way__num { font-size: 14px; color: var(--muted); font-weight: 500; flex-shrink: 0; width: 32px; }
.way__body h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; margin-bottom: 8px; }
.way__body p { color: var(--ink-soft); font-size: 16px; }

/* ============================================================
   INQUIRE
   ============================================================ */
.inquire { background: var(--dark); max-width: none; padding-left: 0; padding-right: 0; }
.inquire__inner { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); }
.form { margin-top: 8px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.field { display: flex; flex-direction: column; }
.field__label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(245,243,238,0.6); margin-bottom: 8px; }
.field input, .field select {
  font-family: var(--sans); font-size: 16px; color: var(--on-dark);
  background: transparent; border: none; border-bottom: 1px solid rgba(245,243,238,0.25);
  padding: 10px 0; transition: border-color .25s ease;
}
.field input::placeholder { color: rgba(245,243,238,0.4); }
.field input:focus, .field select:focus { outline: none; border-bottom-color: var(--accent); }
.field select { appearance: none; cursor: pointer; }
.field select option { color: var(--ink); background: var(--bg); }
.field.has-error input, .field.has-error select { border-bottom-color: #d98a7a; }
.field__error { font-size: 12px; color: #e6a99b; margin-top: 6px; min-height: 0; }
.form__submit { margin-top: 10px; width: 100%; }
.form__success {
  margin-top: 20px; padding: 16px 20px; background: rgba(196,168,130,0.15);
  border: 1px solid var(--accent); color: var(--on-dark);
  font-family: var(--serif); font-style: italic; font-size: 19px;
  border-radius: var(--radius-sm);
}
.form__fallback { margin-top: 26px; font-size: 14px; color: rgba(245,243,238,0.6); text-align: center; }
.form__fallback a { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color .25s ease; }
.form__fallback a:hover { border-bottom-color: var(--accent); }
.wa { display: inline-flex; align-items: center; gap: 5px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  max-width: var(--maxw); margin: 0 auto;
  padding: 32px var(--gutter);
  font-size: 12px; color: var(--muted);
}
.footer a { transition: color .25s ease; }
.footer a:hover { color: var(--ink); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1279px) {
  .nav__links { gap: 20px; }
  .hero__col--4 { display: none; }       /* 3 columns on tablet */
  .aud { grid-template-columns: 1fr; }
  .hotels { grid-template-columns: 1fr; }
  .hotels__right { position: static; }
  .reels { column-count: 2; }
}

@media (max-width: 767px) {
  body { font-size: 16px; }
  .nav__links, .nav__cta { display: none; }
  .nav__theme { margin-left: auto; }       /* push toggle + hamburger group right */
  .nav__hamburger { display: block; margin-left: 10px; }

  .stats__inner { overflow-x: scroll; scrollbar-width: none; -ms-overflow-style: none; }
  .stats__inner::-webkit-scrollbar { display: none; }
  .stat__context { display: none; }
  .craft__inner { grid-template-columns: 1fr; gap: 24px; }

  /* Hero on mobile: skip the heavier VIDEO wall. The tiles fall back to their
     photo (set a background-image / poster per tile) and drift as a subtle,
     full-bleed grid behind the content — no empty gap band, lighter to load. */
  .hero { min-height: auto; align-items: stretch; }
  .hero__inner { padding-top: clamp(28px, 7vw, 48px); padding-bottom: clamp(48px, 14vw, 88px); }
  .hero__vid { display: none; }                       /* don't load/play video on mobile */
  .hero__col--3, .hero__col--4 { display: none; }     /* 2 columns */
  .hero__wall { gap: 10px; padding: 0 10px; }
  .hero__tile { aspect-ratio: 4 / 5; border-radius: 10px; }   /* photo grid, denser than reels */
  .hero__scrim {
    background: linear-gradient(180deg,
      var(--bg) 0%, var(--bg) 24%,
      rgba(var(--bg-rgb),0.88) 46%, rgba(var(--bg-rgb),0.8) 100%);
  }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .hero__ctas .link-arrow { text-align: center; }

  .benchmarks { grid-template-columns: 1fr; gap: 32px; }
  .reels { column-count: 1; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
  .section__sub--right { text-align: left; }
  .form__row { grid-template-columns: 1fr; gap: 20px; }
  .bar { grid-template-columns: 92px 1fr 40px; gap: 10px; }
  .footer { flex-direction: column; text-align: center; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
