 /* ═══════════════════════════════════════════════════════════════
    TK & Julia — The Cinematic Couple Warm, personal, photography-led. Modern platform craft. No CDN dependencies. Self-contained. ═══════════════════════════════════════════════════════════════ */

 :root {
   --c-bg:          oklch(97% 0.01 60);
   --c-surface:     oklch(94% 0.015 60);
   --c-surface-2:   oklch(90% 0.02 55);
   --c-border:      oklch(82% 0.025 55);
    --c-text:         oklch(18% 0.02 40);
    --c-text-muted: oklch(45% 0.025 45);
    --c-accent:       oklch(55% 0.14 40);
    --c-accent-2:     oklch(72% 0.12 75);
    --c-dark:         oklch(14% 0.02 40);
    --font-sans:      'Inter', system-ui, sans-serif;
    --font-display: 'TKJ Display', 'Inter', system-ui, sans-serif;
    --space-xs: 0.25rem; --space-sm: 0.5rem; --space-md: 1rem;
    --space-lg: 2rem;     --space-xl: 4rem;   --space-2xl: 8rem;
    --max-w: 1200px;
    --nav-h: 4rem;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--c-bg); color: var(--c-text);
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.65; overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea {
  font: inherit; background: white; color: var(--c-text);
  border: 1px solid var(--c-border); border-radius: 0.375rem;
  padding: 0.625rem 0.875rem; width: 100%; transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--c-accent); }
textarea { resize: vertical; min-height: 80px; }

@font-face {
  font-family: 'TKJ Display';
  src: url('../fonts/variable.woff2') format('woff2-variations');
  font-weight: 100 900; font-display: swap;
}

.container { width: min(var(--max-w), 100% - 2 * var(--space-lg)); margin-inline: auto; }
.label { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-accent); margin-bottom: var(--space-sm); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 0.375rem;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.875rem; letter-spacing: 0.02em;
  transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s var(--ease-out-expo), background 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--c-accent); color: white; }
.btn--primary:hover { box-shadow: 0 8px 24px oklch(55% 0.14 40 / 0.3); }
.btn--ghost { background: transparent; color: var(--c-text); border: 1.5px solid var(--c-border); }
.btn--ghost:hover { border-color: var(--c-accent); color: var(--c-accent); }
.btn--full { width: 100%; justify-content: center; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.8rem; }

/* Form rows */
.form-row { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: var(--space-md); }
.form-row label { font-size: 0.8rem; font-weight: 600; color: var(--c-text-muted); }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between;
  padding-inline: var(--space-lg);
    background: oklch(97% 0.01 60 / 0.92);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}
.nav__logo { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; letter-spacing: -0.01em; color: var(--c-text); }
.nav__links { display: flex; align-items: center; gap: var(--space-lg); }
.nav__links a { font-size: 0.875rem; font-weight: 500; color: var(--c-text-muted); transition: color 0.2s; }
.nav__links a:hover { color: var(--c-text); }
.nav__cta { background: var(--c-accent) !important; color: white !important; padding: 0.5rem 1.25rem;
border-radius: 0.375rem; font-weight: 600 !important; }
@media (max-width: 640px) { .nav__links { display: none; } }

/* Hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__photo {
  position: absolute; inset: 0; background-size: cover; background-position: center top;
  animation: hero-parallax linear both;
  animation-timeline: scroll(root); animation-range: 0% 60%;
}
@keyframes hero-parallax { from { transform: scale(1) translateY(0); } to { transform: scale(1.06) translateY(6%); } }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, oklch(14% 0.02 40 / 0.78) 0%, oklch(14% 0.02 40 / 0.35) 60%,
transparent 100%);
}
.hero__content { position: relative; padding: var(--space-lg); padding-top: calc(var(--nav-h) + var(--space-xl)); max-width: 600px; }
.hero__eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--c-accent-2); margin-bottom: var(--space-md);
  opacity: 0; animation: fade-up 0.8s var(--ease-out-expo) 0.2s forwards;
}
.hero__headline {
  font-family: var(--font-display); font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 900; line-height: 0.95; letter-spacing: -0.03em; color: white;
  margin-bottom: var(--space-lg);
  opacity: 0; animation: fade-up 0.8s var(--ease-out-expo) 0.4s forwards;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: oklch(90% 0.01 60 / 0.85); max-width: 42ch;
  margin-bottom: var(--space-xl);
  opacity: 0; animation: fade-up 0.8s var(--ease-out-expo) 0.6s forwards;
}
.hero__platforms {
  display: flex; gap: var(--space-md); flex-wrap: wrap; margin-bottom: var(--space-xl);
  opacity: 0; animation: fade-up 0.8s var(--ease-out-expo) 0.8s forwards;
}
.platform-badge {
  display: flex; align-items: center; gap: 0.625rem;
  background: oklch(100% 0 0 / 0.12); border: 1px solid oklch(100% 0 0 / 0.2);
  backdrop-filter: blur(8px); border-radius: 0.5rem; padding: 0.5rem 0.875rem;
  transition: background 0.2s;
}
.platform-badge:hover { background: oklch(100% 0 0 / 0.2); }
.platform-badge--coming { opacity: 0.6; cursor: default; }
.platform-badge__icon {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.05em; color: white;
  background: oklch(100% 0 0 / 0.15); width: 28px; height: 28px; border-radius: 0.25rem;
  display: flex; align-items: center; justify-content: center;
}
.platform-badge__count { display: block; font-size: 0.9rem; font-weight: 700; color: white; line-height: 1; }
.platform-badge__name { display: block; font-size: 0.65rem; color: oklch(90% 0.01 60 / 0.7); }
.hero__actions {
  display: flex; gap: var(--space-md); flex-wrap: wrap;
  opacity: 0; animation: fade-up 0.8s var(--ease-out-expo) 1s forwards;
}
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }


/* About */
.about { padding-block: var(--space-2xl); background: white; }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; }
.about__photo-stack { position: relative; aspect-ratio: 4/5; }
.about__photo { position: absolute; border-radius: 0.75rem; background-size: cover; background-position: center; overflow: hidden; }
.about__photo--main { inset: 0; }
.about__photo--accent { width: 45%; aspect-ratio: 1; bottom: -5%; right: -8%; border: 4px solid white; box-shadow: 0 8px 32px oklch(0% 0 0 / 0.15); }
.about__title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.15; margin-bottom: var(--space-lg); letter-spacing: -0.02em; }
.about__body { color: var(--c-text-muted); margin-bottom: var(--space-md); max-width: 50ch; line-height: 1.7; }
.about__stats { display: flex; gap: var(--space-xl); margin-top: var(--space-xl); padding-top: var(--space-lg); border-top: 1px solid var(--c-border); }
.stat__number { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--c-accent); line-height: 1; }
.stat__label { display: block; font-size: 0.75rem; color: var(--c-text-muted); margin-top: 0.25rem; }
@media (max-width: 800px) { .about__inner { grid-template-columns: 1fr; } .about__photo-stack { aspect-ratio: 3/2; max-width: 480px; } }

/* Brands / Work with us */
.brands { padding-block: var(--space-2xl); background: var(--c-surface); }
.brands__lead { margin-bottom: var(--space-2xl); }
.brands__header { max-width: 640px; margin-bottom: var(--space-xl); }
.brands__title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
margin-bottom: var(--space-md); letter-spacing: -0.02em; }
.brands__sub { color: var(--c-text-muted); max-width: 48ch; }
.brands__offers { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--space-md); margin-bottom: var(--space-xl); }
.offer-card { background: white; border: 1px solid var(--c-border); border-radius: 0.75rem; padding: var(--space-lg); transition: box-shadow 0.2s, transform 0.2s; }
.offer-card:hover { box-shadow: 0 8px 24px oklch(0% 0 0 / 0.08); transform: translateY(-2px); }
.offer-card__icon { font-size: 1.25rem; color: var(--c-accent); margin-bottom: var(--space-md); }
.offer-card__title { font-size: 0.95rem; font-weight: 700; margin-bottom: var(--space-sm); }
.offer-card__body { font-size: 0.85rem; color: var(--c-text-muted); line-height: 1.6; }

/* Individual lanes */
.individual-lanes { margin-bottom: var(--space-2xl); }
.individual-lanes__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); margin-top: var(--space-lg); }
.individual-card { display: grid; grid-template-columns: 160px 1fr; gap: var(--space-lg); background: white; border: 1px solid var(--c-border); border-radius: 0.75rem; overflow: hidden; transition: box-shadow 0.2s; }
.individual-card:hover { box-shadow: 0 8px 24px oklch(0% 0 0 / 0.08); }
.individual-card__photo { aspect-ratio: 3/4; background-size: cover; background-position: center top; }
.individual-card__body { padding: var(--space-lg) var(--space-lg) var(--space-lg) 0; display: flex; flex-direction: column; gap: var(--space-sm); }
.individual-card__name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; }
.individual-card__bio { font-size: 0.85rem; color: var(--c-text-muted); line-height: 1.6; }
.individual-card__offers { font-size: 0.8rem; color: var(--c-text-muted); display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.individual-card__offers li { padding-left: 1rem; position: relative; }
.individual-card__offers li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px;
height: 5px; border-radius: 50%; background: var(--c-accent); }
@media (max-width: 900px) { .individual-lanes__grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .individual-card { grid-template-columns: 1fr; } .individual-card__photo { aspect-ratio: 16/9; } .individual-card__body { padding: var(--space-lg); } }

/* Partnership form */
.brands__cta { max-width: 640px; }
.partnership-form { background: white; border: 1px solid var(--c-border); border-radius: 0.75rem; padding: var(--space-xl); }
.partnership-form__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: var(--space-lg); }
.partnership-form__email { font-size: 0.8rem; color: var(--c-text-muted); text-align: center; margin-top: var(--space-md); }
.partnership-form__email a { color: var(--c-accent); }

/* Shop */
.shop { padding-block: var(--space-2xl); background: white; }
.shop__header { text-align: center; max-width: 600px; margin-inline: auto; margin-bottom: var(--space-2xl); }
.shop__title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
margin-bottom: var(--space-md); letter-spacing: -0.02em; }
.shop__sub { color: var(--c-text-muted); }
.shop__section { margin-bottom: var(--space-2xl); }
.shop__section-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-text-muted); margin-bottom: var(--space-lg); padding-bottom: var(--space-sm);
border-bottom: 1px solid var(--c-border); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--space-lg); }
.shop__empty { grid-column: 1 / -1; padding: var(--space-xl); text-align: center; background: var(--c-surface); border: 1px dashed var(--c-border); border-radius: 0.75rem; color: var(--c-text-muted); font-size: 0.9rem; display: flex; flex-direction: column; align-items: center; gap: var(--space-md); }
.product-card { border: 1px solid var(--c-border); border-radius: 0.75rem; overflow: hidden; background: var(--c-surface); transition: box-shadow 0.2s, transform 0.2s; }
.product-card:hover { box-shadow: 0 8px 24px oklch(0% 0 0 / 0.08); transform: translateY(-2px); }
.product-card__img { aspect-ratio: 1; background-size: cover; background-position: center; background: var(--c-surface-2); }
.product-card__body { padding: var(--space-md); }
.product-card__name { font-weight: 600; font-size: 0.9rem; margin-bottom: var(--space-xs); }
.product-card__price { font-size: 0.85rem; color: var(--c-accent); font-weight: 700; margin-bottom: var(--space-md); }
.product-card__link { font-size: 0.8rem; font-weight: 600; color: var(--c-accent); }


/* Newsletter */
.newsletter { padding-block: var(--space-2xl); background: var(--c-dark); color: white; }
.newsletter__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; }
.newsletter .label { color: var(--c-accent-2); }
.newsletter__title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
margin-bottom: var(--space-md); letter-spacing: -0.02em; }
.newsletter__body { color: oklch(80% 0.01 60); max-width: 45ch; }
.newsletter__fields { display: flex; gap: var(--space-sm); margin-bottom: var(--space-md); }
.newsletter__fields input { background: oklch(100% 0 0 / 0.1); border-color: oklch(100% 0 0 / 0.2); color: white; }
.newsletter__fields input::placeholder { color: oklch(70% 0.01 60); }
.newsletter__fields input:focus { border-color: var(--c-accent-2); }
.newsletter__note { font-size: 0.75rem; color: oklch(60% 0.01 60); }
@media (max-width: 700px) { .newsletter__inner { grid-template-columns: 1fr; } .newsletter__fields { flex-direction: column; } }

/* Footer */
.footer { padding-block: var(--space-xl); background: var(--c-surface); border-top: 1px solid var(--c-border); }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--space-xl); flex-wrap: wrap; margin-bottom: var(--space-xl); }
.footer__name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; margin-bottom: var(--space-xs); }
.footer__tagline { font-size: 0.8rem; color: var(--c-text-muted); margin-bottom: var(--space-md); }
.footer__social { display: flex; gap: var(--space-md); }
.footer__social a { font-size: 0.8rem; font-weight: 600; color: var(--c-text-muted); transition: color 0.2s; }
.footer__social a:hover { color: var(--c-accent); }
.footer__nav ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer__nav a { font-size: 0.875rem; color: var(--c-text-muted); transition: color 0.2s; }
.footer__nav a:hover { color: var(--c-text); }
.footer__bottom { padding-top: var(--space-lg); border-top: 1px solid var(--c-border); font-size: 0.8rem;
color: var(--c-text-muted); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero__eyebrow, .hero__headline, .hero__sub, .hero__platforms, .hero__actions { opacity: 1; transform: none; }
  .hero__photo { animation: none; }
}

/* ============================================================
   EXPANSION LAYER — 17 Jul 2026 (market-swarm + taste pass) Appended last so it wins the cascade. Outfit display font,
   split hero, zig-zag offers, shelf, FAQ, magnet, media kit. ============================================================ */
:root {
  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;
}
body { font-family: var(--font-sans); }
h1, h2, h3 { letter-spacing: -0.02em; }

/* Split hero (replaces full-bleed hero layout) */
.hero--split {
  position: relative; min-height: 100dvh;
  display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center;
  gap: 3rem; padding: 7rem clamp(1.25rem, 6vw, 6rem) 4rem;
  background: var(--c-bg);
}
.hero--split .hero__content { position: static; max-width: 40rem; transform: none; text-align: left; }
.hero--split .hero__headline { color: var(--c-text); font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.02; }
.hero--split .hero__eyebrow { color: var(--c-accent); }
.hero--split .hero__sub { color: var(--c-text-muted); max-width: 34rem; }
.hero__figure { position: relative; height: min(78vh, 44rem); }
.hero__photo-frame {
  position: absolute; inset: 0; border-radius: 1.25rem;
  background-size: cover; background-position: center 30%;
  box-shadow: 0 30px 60px -30px oklch(20% 0.04 40 / 0.45);
}
.hero__photo-frame::after {
  content: ""; position: absolute; inset: 0; border-radius: 1.25rem;
  background: linear-gradient(200deg, transparent 55%, oklch(20% 0.03 40 / 0.28));
}
@media (max-width: 860px) {
  .hero--split { grid-template-columns: 1fr; padding-top: 5.5rem; min-height: auto; }
  .hero__figure { height: 58vw; min-height: 16rem; }
}

/* Why us — asymmetric strip */
.whyus { padding: 4.5rem 0 3rem; background: var(--c-surface); }
.whyus__grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 2.5rem; margin-top: 1.5rem; }
.whyus__item:nth-child(2) { margin-top: 1.5rem; }
.whyus__item:nth-child(3) { margin-top: 3rem; }
.whyus__item h3 { font-size: 1.15rem; margin-bottom: 0.4rem; color: var(--c-text); }
.whyus__item p { color: var(--c-text-muted); max-width: 30rem; }
@media (max-width: 860px) { .whyus__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .whyus__item:nth-child(2), .whyus__item:nth-child(3) { margin-top: 0; } }

/* Offers zig-zag (replaces equal card row) */
.offers-zigzag { display: grid; gap: 0; margin-top: 2rem; border-top: 1px solid var(--c-border); }
.offer-row {
  display: grid; grid-template-columns: minmax(0,1.4fr) auto; align-items: center;
  gap: 2rem; padding: 2.25rem 0; border-bottom: 1px solid var(--c-border);
}
.offer-row--flip { grid-template-columns: auto minmax(0,1.4fr); }
.offer-row--flip .offer-row__body { order: 2; }
.offer-row--flip .offer-row__num { order: 1; }
.offer-row__body h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.offer-row__body p { color: var(--c-text-muted); max-width: 44rem; }
.offer-row__example { font-size: 0.9rem; margin-top: 0.5rem; color: var(--c-accent); }
.offer-row__num {
  font-size: clamp(3rem, 7vw, 5rem); font-weight: 800; line-height: 1;
  color: var(--c-surface-2); -webkit-text-stroke: 1px var(--c-border);
}
@media (max-width: 700px) { .offer-row, .offer-row--flip { grid-template-columns: 1fr; gap: 0.5rem; }
  .offer-row--flip .offer-row__body { order: 1; } .offer-row--flip .offer-row__num,
  .offer-row__num { order: 2; font-size: 2.4rem; } }

/* How it works */
.how { padding: 4.5rem 0; }
.how__title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0.5rem 0 1.5rem; }
.how__steps { counter-reset: step; list-style: none; padding: 0; display: grid; gap: 1rem; max-width: 44rem; }
.how__steps li { padding-left: 3.2rem; position: relative; color: var(--c-text-muted); }
.how__steps li strong { color: var(--c-text); }
.how__steps li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 0.1rem; font-weight: 700; color: var(--c-accent);
  font-size: 0.9rem; letter-spacing: 0.05em;
}

/* Gallery strip */
.gallery { padding: 0 0 1rem; }
.gallery__strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
.gallery__item { aspect-ratio: 3 / 4; background-size: cover; background-position: center; }
.gallery__item:nth-child(2) { margin-top: 1.5rem; }
.gallery__item:nth-child(4) { margin-top: 1.5rem; }
@media (max-width: 700px) { .gallery__strip { grid-template-columns: repeat(2, 1fr); }
  .gallery__item:nth-child(2), .gallery__item:nth-child(4) { margin-top: 0; } }

/* Shelf (products, border-grouped not boxed) */
.shelf { display: grid; grid-template-columns: 1fr 1fr; gap: 0 3rem; margin-top: 1.5rem; border-top: 1px solid var(--c-border); }
.shelf-item { padding: 1.75rem 0; border-bottom: 1px solid var(--c-border); }
.shelf-item h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.shelf-item__hook { color: var(--c-accent); font-size: 0.95rem; margin-bottom: 0.4rem; }
.shelf-item > p:not([class]) { color: var(--c-text-muted); font-size: 0.95rem; }
.shelf-item__meta { display: flex; gap: 1rem; align-items: baseline; margin-top: 0.75rem; }
.shelf-item__price { font-weight: 700; }
.shelf-item__status {
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--c-text-muted); border: 1px solid var(--c-border);
  padding: 0.2rem 0.6rem; border-radius: 999px;
}
.shop__notify { margin-top: 1.5rem; color: var(--c-text-muted); }
.shop__notify a { color: var(--c-accent); }
@media (max-width: 860px) { .shelf { grid-template-columns: 1fr; } }

/* FAQ */
.faq { padding: 4.5rem 0; background: var(--c-surface); }
.faq__title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0.5rem 0 1.25rem; }
.faq__list { max-width: 48rem; border-top: 1px solid var(--c-border); }
.faq__item { border-bottom: 1px solid var(--c-border); }
.faq__item summary {
  cursor: pointer; padding: 1.1rem 0; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq__item summary::after { content: "+"; color: var(--c-accent); font-size: 1.3rem; font-weight: 400; }
.faq__item[open] summary::after { content: "–"; }
.faq__item p { padding: 0 0 1.25rem; color: var(--c-text-muted); max-width: 42rem; }

/* Lead magnet */
.magnet { padding: 4.5rem 0; background: var(--c-dark); color: oklch(92% 0.02 60); }
.magnet__inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: center; }
.magnet__title { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin: 0.5rem 0 0.75rem; }
.magnet__body { color: oklch(75% 0.02 60); max-width: 34rem; }
.magnet__list { margin: 1rem 0 0; padding-left: 1.1rem; color: oklch(80% 0.03 60); display: grid; gap: 0.4rem; }
.magnet__form { display: grid; gap: 0.6rem; }
.magnet__form label { font-size: 0.85rem; color: oklch(70% 0.02 60); }
.magnet__form input {
  padding: 0.85rem 1rem; border-radius: 0.5rem; border: 1px solid oklch(35% 0.02 40);
  background: oklch(20% 0.02 40); color: inherit; font: inherit;
}
.magnet__note { font-size: 0.8rem; color: oklch(60% 0.02 60); }

/* Forms: labels above inputs, selects and textareas match */
.form-row { display: grid; gap: 0.35rem; margin-bottom: 1rem; }
.form-row label { font-size: 0.85rem; font-weight: 600; color: var(--c-text); }
.form-row select, .form-row textarea, .form-row input {
  padding: 0.8rem 1rem; border-radius: 0.5rem; border: 1px solid var(--c-border);
  background: #fff; font: inherit; color: var(--c-text); width: 100%;
}
.form-row textarea { min-height: 7rem; resize: vertical; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* Media kit page */
.kit-hero { padding: 7.5rem 0 3.5rem; background: var(--c-surface); }
.kit-hero__inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: center; }
.kit-hero__title { font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.05; margin: 0.5rem 0 1rem; }
.kit-hero__sub { color: var(--c-text-muted); max-width: 34rem; margin-bottom: 1.5rem; }
.kit-hero__photo { aspect-ratio: 3 / 4; border-radius: 1rem; background-size: cover; background-position: center 25%;
  box-shadow: 0 30px 60px -30px oklch(20% 0.04 40 / 0.4); }
.kit-section { padding: 4rem 0; }
.kit-section--alt { background: var(--c-surface); }
.kit-section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0.4rem 0 1.25rem; }
.kit-body { color: var(--c-text-muted); max-width: 46rem; }
.kit-stats { display: grid; grid-template-columns: repeat(4, auto); gap: 2.5rem; justify-content: start; margin: 1.5rem 0; }
.kit-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem 3rem; margin-top: 1.5rem; }
.kit-pillars h3 { margin-bottom: 0.3rem; }
.kit-pillars p { color: var(--c-text-muted); }
.kit-packages { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 1.75rem; }
.kit-package { border: 1px solid var(--c-border); border-radius: 0.9rem; padding: 1.5rem; }
.kit-package--featured { border-color: var(--c-accent); box-shadow: 0 18px 40px -28px oklch(55% 0.14 40 / 0.5); }
.kit-package__price { font-weight: 700; color: var(--c-accent); margin: 0.25rem 0 0.5rem; }
.kit-package p:last-child { color: var(--c-text-muted); font-size: 0.95rem; }
.kit-note { margin-top: 1rem; font-size: 0.85rem; color: var(--c-text-muted); }
.kit-cta { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--c-border); }
.kit-cta h2 { margin-bottom: 1rem; }
@media (max-width: 860px) {
  .magnet__inner, .kit-hero__inner, .kit-pillars, .kit-packages { grid-template-columns: 1fr; }
  .kit-stats { grid-template-columns: repeat(2, auto); }
}

/* ── DESIGN REVIEW FIXES 17 Jul 2026 ───────────────────────── */
/* F1: hero fold + badge contrast (badges were styled for the old dark hero) */
.hero--split .hero__content { padding: 0; }
.hero--split .hero__eyebrow { margin-bottom: 0.75rem; }
.hero--split .hero__headline { margin-bottom: 1rem; }
.hero--split .hero__sub { margin-bottom: 1.5rem; }
.hero--split .hero__platforms { margin-bottom: 1.75rem; }
.hero--split .platform-badge { background: #fff; border: 1px solid var(--c-border); backdrop-filter: none; }
.hero--split .platform-badge__icon { color: var(--c-accent); background: var(--c-surface-2); }
.hero--split .platform-badge__count { color: var(--c-text); }
.hero--split .platform-badge__name { color: var(--c-text-muted); }
.hero--split .platform-badge:hover { background: var(--c-surface); }
/* F2: one H2 scale across sections (20px outlier + 48/44/38 drift) */
.about__title, .brands__title, .shop__title, .newsletter__title, .magnet__title { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.how__title, .faq__title, .partnership-form__title { font-size: clamp(1.7rem, 3vw, 2.2rem); }
/* F3: touch targets for nav + footer links */
.nav__links a { display: inline-block; padding: 0.65rem 0.4rem; }
.footer__nav a, .footer__social a, .shop__notify a { display: inline-block; padding: 0.35rem 0.2rem; }
/* F4: balanced headline wrapping */
h1, h2 { text-wrap: balance; }
/* F5: visible keyboard focus everywhere */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, summary:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 2px; border-radius: 2px; }

/* ── FRONTIER LAYER 17 Jul 2026 (Director: more of the modern-platform craft) ── */
@view-transition { navigation: auto; }
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform-origin: 0 50%; transform: scaleX(0); background: var(--c-accent);
  z-index: 100; pointer-events: none; }
@supports (animation-timeline: scroll()) {
  .scroll-progress { animation: sp-grow linear both; animation-timeline: scroll(root); }
}
@keyframes sp-grow { to { transform: scaleX(1); } }
@supports (animation-timeline: view()) {
  .whyus__item, .offer-row, .shelf-item, .individual-card, .kit-package, .faq__item {
    animation: rise linear both; animation-timeline: view(); animation-range: entry 0% entry 45%;
  }
  .gallery__item { animation: drift linear both; animation-timeline: view();
    animation-range: entry 0% exit 100%; }
}
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes drift { from { transform: translateY(14px); } to { transform: translateY(-14px); } }
.marquee { overflow: hidden; background: var(--c-dark); color: oklch(85% 0.04 60); padding: 0.85rem 0; }
.marquee__track { display: flex; gap: 3rem; width: max-content;
  animation: marquee-slide 30s linear infinite; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem; }
@keyframes marquee-slide { to { transform: translateX(-50%); } }
@keyframes wght-settle { from { font-variation-settings: 'wght' 320; } }
.hero--split .hero__headline { animation: fade-up 0.8s var(--ease-out-expo) 0.25s forwards,
  wght-settle 1.4s var(--ease-out-expo) 0.25s both; }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .scroll-progress { display: none; }
}

/* ── CODEX OUTSIDE-VOICE FIXES 17 Jul 2026 ── */
/* Mobile nav: keep the conversion path visible (was: all links hidden under 640px) */
@media (max-width: 640px) {
  .nav__links { display: flex !important; gap: 0.5rem; }
  .nav__links li:not(:last-child) { display: none; }
}
/* Tap targets */
.btn, .nav__cta { min-height: 44px; display: inline-flex; align-items: center; }
/* Nav scrolled state (class was toggled by JS but unstyled) */
.nav--scrolled { background: oklch(97% 0.01 60 / 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border); }
/* Reduced motion: kill smooth scrolling too */
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ── DIRECTOR-ENACTED CODEX FIXES 17 Jul 2026 ── */
/* Hero budget: quiet proof line replaces badge boxes */
.hero__proof { color: var(--c-text-muted); font-size: 0.92rem; letter-spacing: 0.02em;
  margin-bottom: 1.75rem; opacity: 0; animation: fade-up 0.8s var(--ease-out-expo) 0.8s forwards; }
/* Shadows off the photography: composition carries it */
.hero__photo-frame { box-shadow: none; border: 1px solid var(--c-border); }
.kit-hero__photo { box-shadow: none; border: 1px solid var(--c-border); }
.kit-package--featured { box-shadow: none; }
