/* ============================================================
   UGC Creator Portfolio — Luxe / Editorial
   Ivory canvas · warm ink · bordeaux accent
   ============================================================ */

:root {
  /* palette */
  --ivory:    #F3EEE5;
  --paper:    #FBF8F2;
  --ink:      #1B1713;
  --ink-soft: #57504594; /* used via color-mix fallback below */
  --ink-60:   rgba(27,23,19,0.62);
  --ink-40:   rgba(27,23,19,0.40);
  --line:     rgba(27,23,19,0.16);
  --line-soft:rgba(27,23,19,0.09);
  --accent:   #6E2330;          /* bordeaux (default, overridden by tweak) */
  --accent-ink:#FBF8F2;

  /* type */
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --grotesk: "Hanken Grotesk", system-ui, sans-serif;

  /* layout */
  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 88px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--grotesk);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* film-grain atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

/* ---------- shared type helpers ---------- */
.kicker {
  font-family: var(--grotesk);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
}
.kicker--ink { color: var(--ink-60); }

.display {
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.01em;
}
.serif-it { font-family: var(--display); font-style: italic; font-weight: 400; }

.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink-60);
  max-width: 46ch;
}

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--grotesk);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 15px 26px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--ivory);
  cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease), border-color .4s var(--ease);
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.btn .arr { transition: transform .4s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  mix-blend-mode: normal;
  transition: background .5s var(--ease), border-color .5s var(--ease), padding .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: color-mix(in srgb, var(--ivory) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line-soft);
  padding-top: 16px; padding-bottom: 16px;
}
.brandmark {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: .02em;
  display: flex;
  align-items: baseline;
  gap: .04em;
  white-space: nowrap;
}
.brandmark .dot { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink-60);
  position: relative;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-burger { display: none; }

/* ============================================================
   HERO (3 variants share a stage)
   ============================================================ */
.hero-stage { position: relative; }
.hero-variant { display: none; }
.hero-stage[data-hero="editorial"] .hero--editorial { display: block; }
.hero-stage[data-hero="split"]     .hero--split     { display: grid; }
.hero-stage[data-hero="cover"]     .hero--cover     { display: block; }

/* --- shared portrait slot styling --- */
image-slot {
  --is-bg: #E7DECF;
  background: #E7DECF;
  color: var(--ink-40);
  font-family: var(--grotesk);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* --- baked-in media (photo + portfolio video) --- */
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 24%; display: block; }
.hero--editorial .mini-portrait .hero-img { object-position: 50% 16%; }
.hero--split .col-img .hero-img,
.hero--cover .hero-img { position: absolute; inset: 0; }
.about-img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 26%; border-radius: 4px; display: block; }
.work-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.work-card::after {
  content: ""; position: absolute; z-index: 0; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(251,248,242,.92) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4l14 8-14 8z' fill='%231B1713'/%3E%3C/svg%3E") center/15px no-repeat;
}

/* === Variant A: EDITORIAL ============================ */
.hero--editorial {
  padding: 168px 0 90px;
}
.hero--editorial .eyebrow-row {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 34px;
}
.hero--editorial .eyebrow-row .rule { flex: 1; height: 1px; background: var(--line); }
.hero--editorial h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(58px, 13vw, 196px);
  line-height: .9;
  letter-spacing: -0.02em;
}
.hero--editorial h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero--editorial .h1-row2 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.hero--editorial .mini-portrait {
  width: clamp(120px, 16vw, 220px);
  aspect-ratio: 3/4;
  flex: 0 0 auto;
  align-self: flex-end;
  margin-bottom: 8px;
}
.hero--editorial .hero-foot {
  margin-top: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.hero--editorial .hero-foot .lead { margin: 0; }
.hero--editorial .hero-foot .cta-cluster { display: flex; gap: 14px; flex-wrap: wrap; }

/* === Variant B: SPLIT ================================ */
.hero--split {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: 100vh;
  gap: 0;
}
.hero--split .col-text {
  padding: 150px var(--gutter) 80px;
  padding-right: clamp(30px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero--split h1 {
  margin: 24px 0 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(52px, 6.4vw, 104px);
  line-height: .94;
  letter-spacing: -0.02em;
}
.hero--split h1 em { font-style: italic; font-weight: 400; color: var(--accent); }
.hero--split .lead { margin: 30px 0 40px; }
.hero--split .cta-cluster { display: flex; gap: 14px; flex-wrap: wrap; }
.hero--split .col-img {
  position: relative;
  background: #E7DECF;
}
.hero--split .col-img image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero--split .img-tag {
  position: absolute; left: 28px; bottom: 28px; z-index: 3;
  background: color-mix(in srgb, var(--ink) 80%, transparent);
  color: var(--ivory);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  padding: 9px 15px; border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* === Variant C: COVER (full-bleed) =================== */
.hero--cover { position: relative; height: 100vh; min-height: 640px; }
.hero--cover image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero--cover .scrim {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to top, rgba(20,16,13,.78) 0%, rgba(20,16,13,.18) 42%, rgba(20,16,13,.30) 100%);
}
.hero--cover .cover-inner {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--gutter);
  padding-bottom: clamp(48px, 7vw, 96px);
  color: var(--paper);
}
.hero--cover .kicker { color: color-mix(in srgb, var(--paper) 86%, var(--accent)); }
.hero--cover h1 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(60px, 12vw, 184px);
  line-height: .88;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.hero--cover h1 em { font-style: italic; font-weight: 400; }
.hero--cover .cover-foot {
  margin-top: 30px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.22);
  padding-top: 26px;
}
.hero--cover .cover-foot .lead { color: rgba(255,255,255,.82); margin: 0; }
.hero--cover .btn--ghost { color: var(--paper); border-color: rgba(255,255,255,.6); }
.hero--cover .btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 46px clamp(16px, 2.6vw, 38px);
  border-left: 1px solid var(--line-soft);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat .num {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .num em { font-style: italic; color: var(--accent); }
.stat .lbl {
  margin-top: 12px;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-60);
}

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section { padding: clamp(72px, 9vw, 132px) 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  margin-bottom: 56px;
}
.section-head h2 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(38px, 5.4vw, 78px);
  line-height: .98;
  letter-spacing: -0.015em;
  max-width: 16ch;
}
.section-head h2 em { font-style: italic; font-weight: 400; color: var(--accent); }
.section-head .side { max-width: 38ch; }

/* ---------- BRANDS marquee ---------- */
.brands { padding: 40px 0; border-bottom: 1px solid var(--line); }
.brands .label {
  text-align: center;
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 26px;
}
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.marquee-track {
  display: flex;
  gap: 76px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.brand-word {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: .01em;
  color: var(--ink);
  opacity: .55;
  white-space: nowrap;
  transition: opacity .3s var(--ease);
}
.brand-word:hover { opacity: 1; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.work-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 4px;
  overflow: hidden;
  background: #E7DECF;
  cursor: pointer;
}
.work-card image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.work-card .ov {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 18px;
  background: linear-gradient(to top, rgba(20,16,13,.62), rgba(20,16,13,0) 46%);
  opacity: 0; transition: opacity .4s var(--ease);
  pointer-events: none;
}
.work-card:hover .ov { opacity: 1; }
.work-card .top-row { display: flex; justify-content: space-between; align-items: flex-start; }
.work-card .tag {
  background: rgba(251,248,242,.92); color: var(--ink);
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 999px;
}
.work-card .play {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(251,248,242,.92);
  display: grid; place-items: center;
  margin: auto;
  transform: scale(.8); transition: transform .4s var(--ease);
}
.work-card:hover .play { transform: scale(1); }
.work-card .play svg { width: 16px; height: 16px; margin-left: 2px; fill: var(--ink); }
.work-card .meta { color: var(--paper); }
.work-card .meta .t { font-family: var(--display); font-size: 21px; line-height: 1.1; }
.work-card .meta .v { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .82; margin-top: 4px; }
/* always-visible small index tag */
.work-card .idx {
  position: absolute; z-index: 4; top: 14px; left: 14px;
  font-family: var(--display); font-style: italic;
  font-size: 18px; color: var(--paper);
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

/* ============================================================
   SERVICES + PACKAGES
   ============================================================ */
.svc-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.svc {
  padding: 40px 30px 44px;
  border-left: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line);
}
.svc:first-child { border-left: 0; padding-left: 0; }
.svc .no { font-family: var(--display); font-style: italic; color: var(--accent); font-size: 20px; }
.svc h3 { font-family: var(--display); font-weight: 500; font-size: clamp(26px, 3vw, 36px); margin: 14px 0 12px; line-height: 1.04; }
.svc p { margin: 0; color: var(--ink-60); font-size: 15.5px; }
.svc ul { list-style: none; margin: 20px 0 0; padding: 0; }
.svc li { font-size: 14px; color: var(--ink); padding: 8px 0; border-top: 1px solid var(--line-soft); display: flex; gap: 10px; }
.svc li::before { content: "—"; color: var(--accent); }

.pkgs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
.pkg {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px 30px 32px;
  background: var(--paper);
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.pkg:hover { transform: translateY(-6px); box-shadow: 0 26px 60px -32px rgba(27,23,19,.4); }
.pkg.is-feature { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pkg.is-feature .pkg-name, .pkg.is-feature .price .cur, .pkg.is-feature li { color: var(--paper); }
.pkg.is-feature li { border-color: rgba(255,255,255,.16); }
.pkg.is-feature .price .cur { color: rgba(255,255,255,.7); }
.pkg .badge {
  align-self: flex-start;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--accent);
  padding: 5px 11px; border-radius: 999px; margin-bottom: 16px;
}
.pkg-name { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-60); }
.pkg .badge--alt { background: var(--ink); color: var(--paper); }
.pkg .price { font-family: var(--display); font-weight: 500; font-size: 56px; line-height: 1; margin: 14px 0 6px; letter-spacing: -.02em; }
.pkg .price .cur { font-size: 24px; color: var(--ink-40); vertical-align: super; margin-right: 2px; }
.pkg .price .per { font-family: var(--grotesk); font-size: 13px; letter-spacing: .04em; color: var(--ink-40); }
.pkg .price .plus { color: var(--accent); }
.pkg .per-note { display: block; font-size: 12.5px; color: var(--ink-60); margin: -2px 0 2px; letter-spacing: .01em; }
.pkg ul { list-style: none; margin: 22px 0 28px; padding: 0; flex: 1; }
.pkg li { font-size: 14.5px; padding: 11px 0; border-top: 1px solid var(--line-soft); display: flex; gap: 10px; }
.pkg li::before { content: "✓"; color: var(--accent); font-size: 13px; }
.pkg.is-feature li::before { color: color-mix(in srgb, var(--accent) 60%, #fff); }
.pkg .btn { width: 100%; justify-content: center; }
.pkg.is-feature .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.pkg.is-feature .btn:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about .grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.about .portrait { aspect-ratio: 4/5; }
.about .portrait image-slot { width: 100%; height: 100%; }
.about h2 { font-family: var(--display); font-weight: 500; font-size: clamp(36px, 5vw, 72px); line-height: 1; margin: 16px 0 26px; letter-spacing: -.015em; }
.about h2 em { font-style: italic; font-weight: 400; color: var(--accent); }
.about p { color: var(--ink-60); font-size: 17px; max-width: 52ch; }
.about p + p { margin-top: 18px; }
.about .sig { font-family: var(--display); font-style: italic; font-size: 34px; margin-top: 30px; }
.about .traits { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.about .traits div .k { font-family: var(--display); font-size: 30px; }
.about .traits div .v { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-60); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px 30px;
  display: flex; flex-direction: column;
  background: var(--ivory);
}
.quote .mark { font-family: var(--display); font-size: 70px; line-height: .5; color: var(--accent); height: 36px; }
.quote p { font-family: var(--display); font-size: 22px; line-height: 1.34; margin: 12px 0 26px; flex: 1; }
.quote .who { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.quote .av { width: 42px; height: 42px; border-radius: 50%; background: #E7DECF; display: grid; place-items: center; font-family: var(--display); font-size: 17px; color: var(--ink-60); }
.quote .who .n { font-weight: 600; font-size: 14.5px; }
.quote .who .r { font-size: 12.5px; color: var(--ink-60); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.contact .wrap { position: relative; z-index: 2; padding-top: clamp(80px,10vw,150px); padding-bottom: clamp(80px,10vw,150px); }
.contact .kicker { color: color-mix(in srgb, var(--paper) 70%, var(--accent)); }
.contact h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(48px, 9vw, 150px); line-height: .92; letter-spacing: -.02em;
  margin: 18px 0 0;
}
.contact h2 em { font-style: italic; font-weight: 400; color: color-mix(in srgb, var(--accent) 55%, #fff); }
.contact .row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-top: 44px; }
.contact .row .lead { color: rgba(255,255,255,.72); }
.contact .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.contact .btn:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.contact .channels { display: flex; gap: 38px; flex-wrap: wrap; margin-top: 60px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.18); }
.contact .channels a { display: block; }
.contact .channels .ck { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.contact .channels .cv { font-family: var(--display); font-size: clamp(22px,2.4vw,30px); margin-top: 6px; transition: color .3s var(--ease); }
.contact .channels a:hover .cv { color: color-mix(in srgb, var(--accent) 55%, #fff); }
.contact .ghost-word {
  position: absolute; z-index: 1; right: -2vw; bottom: -7vw;
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 34vw; line-height: 1; color: rgba(255,255,255,.04);
  pointer-events: none; user-select: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 30px 0; }
.footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer .small { font-size: 12.5px; color: var(--ink-60); letter-spacing: .02em; }
.footer .small a:hover { color: var(--accent); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal[data-d="1"] { transition-delay: .08s; }
  .reveal[data-d="2"] { transition-delay: .16s; }
  .reveal[data-d="3"] { transition-delay: .24s; }
  .reveal[data-d="4"] { transition-delay: .32s; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-list, .quotes { grid-template-columns: 1fr; }
  .pkgs { grid-template-columns: repeat(2, 1fr); }
  .svc { border-left: 0; padding-left: 0; }
  .pkgs { gap: 16px; }
  .stats .grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-left: 0; padding-left: 0; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line-soft); }
  .about .grid { grid-template-columns: 1fr; }
  .about .portrait { aspect-ratio: 16/11; }
  .hero--split { grid-template-columns: 1fr; min-height: 0; }
  .hero--split .col-img { aspect-ratio: auto; }
  .hero--split .col-img .hero-img { position: relative; inset: auto; height: auto; aspect-ratio: 16 / 12; }
  .hero--split .col-text { padding-top: 130px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-burger { display: inline-flex; }
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pkgs { grid-template-columns: 1fr; }
  .stats .grid { grid-template-columns: 1fr 1fr; }
  .hero--editorial { padding-top: 130px; }
  .hero--editorial .mini-portrait { display: none; }
  .section-head { margin-bottom: 38px; }
  .quote p { font-size: 20px; }
}
@media (max-width: 460px) {
  .work-grid { grid-template-columns: 1fr; }
}
