/* ============================================================
   VikkiSky — Luxury AI Creator Systems
   Editorial · cinematic · image-led
   ============================================================ */

:root {
  --cream: #f4eadc;
  --cream-soft: #efe2cf;
  --black: #09080a;
  --black-soft: #141217;
  --ivory: #fff8ed;
  --gold: #c9a45c;
  --gold-light: #e8cc8c;
  --violet: #8b6cff;
  --cyan: #67d8ff;
  --rose: #d56b9f;
  --text-dark: #15100c;
  --text-light: #fff7eb;
  --muted-dark: rgba(21, 16, 12, 0.68);
  --muted-light: rgba(255, 247, 235, 0.68);
  --border-light: rgba(21, 16, 12, 0.12);
  --border-dark: rgba(255, 255, 255, 0.12);

  --font-display: "Didot", "Bodoni MT", "Playfair Display", "Times New Roman",
    Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
    Arial, sans-serif;
  --container: 1240px;
  --pad-section: clamp(6.5rem, 11vw, 11rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

::selection {
  background: rgba(201, 164, 92, 0.35);
}

.container {
  width: min(var(--container), 100% - 3.5rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  z-index: 300;
  background: var(--gold);
  color: var(--text-dark);
  padding: 0.7rem 1.2rem;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
  top: 0;
}

/* ---------- Type system ---------- */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.06;
}

.display em {
  font-style: italic;
  color: var(--gold);
}

.on-dark .display em,
.dark .display em {
  color: var(--gold-light);
}

.label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.dark .label {
  color: var(--muted-light);
}

.label--gold { color: var(--gold); }
.label--violet { color: var(--violet); }
.label--cyan { color: #3fa9d4; }
.dark .label--cyan { color: var(--cyan); }
.label--rose { color: var(--rose); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--muted-dark);
  max-width: 54ch;
}

.dark .lead {
  color: var(--muted-light);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 2.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background-color 0.35s var(--ease), border-color 0.35s var(--ease),
    color 0.35s var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: #100c07;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -14px rgba(201, 164, 92, 0.7);
}

.btn-outline {
  border: 1px solid var(--border-light);
  color: var(--text-dark);
}

.btn-outline:hover {
  border-color: var(--text-dark);
  transform: translateY(-2px);
}

.dark .btn-outline {
  border-color: var(--border-dark);
  color: var(--text-light);
}

.dark .btn-outline:hover {
  border-color: var(--text-light);
}

.link-line {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-light);
  transition: gap 0.3s var(--ease), border-color 0.3s var(--ease);
}

.link-line:hover {
  gap: 1.1rem;
  border-color: var(--gold);
}

.dark .link-line {
  border-color: var(--border-dark);
}

.dark .link-line:hover {
  border-color: var(--gold-light);
}

/* ---------- Media frames ---------- */

.frame {
  position: relative;
  overflow: hidden;
  background: var(--black-soft);
}

.frame img,
.frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.frame:hover img,
.frame:hover video {
  transform: scale(1.03);
}

/* Arch — the recurring signature frame */
.frame--arch {
  border-radius: 999px 999px 22px 22px;
}

.frame--soft {
  border-radius: 18px;
}

.frame-tag {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-light);
  background: rgba(9, 8, 10, 0.55);
  border: 1px solid rgba(255, 247, 235, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
}

/* ---------- Navigation ---------- */

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-nav.is-scrolled {
  background: rgba(244, 234, 220, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-light);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 92px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.01em;
}

.logo em {
  font-style: italic;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dark);
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--text-dark);
}

.nav-cta {
  padding: 0.75rem 1.6rem;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--text-dark);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding-top: clamp(9rem, 16vh, 12rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.hero-copy .label {
  display: block;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.55rem, 6.12vw, 5.1rem);
  max-width: 12ch;
}

.hero-sub {
  margin-top: 2rem;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}

.hero-meta {
  display: flex;
  gap: 2.6rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.hero-meta div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0;
}

.hero-meta div span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.hero-media {
  position: relative;
  justify-self: end;
  width: min(100%, 420px);
}

.hero-media .frame--arch {
  aspect-ratio: 9 / 14;
  box-shadow: 0 50px 90px -46px rgba(21, 16, 12, 0.55);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid var(--gold);
  border-radius: 999px 999px 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-note {
  position: absolute;
  top: 14%;
  left: -3.4rem;
  z-index: 2;
  background: var(--ivory);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 0.8rem 1.1rem;
  box-shadow: 0 24px 50px -26px rgba(21, 16, 12, 0.4);
  font-size: 0.78rem;
  line-height: 1.4;
}

.hero-note b {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.2rem;
}

.hero-note--2 {
  top: auto;
  bottom: 16%;
  left: auto;
  right: -2.6rem;
}

.hero-note--2 b { color: var(--gold); }

/* ---------- Section scaffolding ---------- */

.section {
  padding-block: var(--pad-section);
}

.section-head {
  margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.section-head .label {
  display: block;
  margin-bottom: 1.6rem;
}

.section-title {
  font-size: clamp(2.3rem, 4.8vw, 3.9rem);
  max-width: 18ch;
}

.section-head .lead {
  margin-top: 1.6rem;
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-title,
.section-head--center .lead {
  margin-inline: auto;
}

.dark {
  background: var(--black);
  color: var(--text-light);
}

.ivory {
  background: var(--ivory);
}

.cream-soft {
  background: var(--cream-soft);
}

/* ---------- Three systems intro ---------- */

.systems-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 3.4vw, 3rem);
  align-items: start;
}

.system-block {
  display: block;
}

.system-block:nth-child(2) {
  margin-top: clamp(1.5rem, 4vw, 3.5rem);
}

.system-block .frame {
  aspect-ratio: 3 / 4;
  border-radius: 16px;
}

.system-block:nth-child(2) .frame {
  border-radius: 999px 999px 16px 16px;
}

.system-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  display: block;
  margin: 1.7rem 0 0.5rem;
}

.system-block h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.system-block p {
  color: var(--muted-dark);
  font-size: 0.98rem;
  margin: 0.9rem 0 1.4rem;
  max-width: 38ch;
}

.system-block .go {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}

.system-block:hover .go {
  gap: 1rem;
  color: var(--gold);
}

.system-block:hover .frame img,
.system-block:hover .frame video {
  transform: scale(1.04);
}

/* ---------- Spotlights ---------- */

.spot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.spot-copy .label {
  display: block;
  margin-bottom: 1.6rem;
}

.spot-title {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  max-width: 15ch;
}

.spot-copy .lead {
  margin-top: 1.5rem;
}

.spot-list {
  list-style: none;
  margin: 2.4rem 0 2.8rem;
}

.spot-list li {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 1rem;
}

.dark .spot-list li {
  border-color: var(--border-dark);
}

.spot-list li:first-child {
  border-top: 1px solid var(--border-light);
}

.dark .spot-list li:first-child {
  border-color: var(--border-dark);
}

.spot-list i {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  min-width: 2ch;
}

/* Talking Head — dark film strip */

.filmstrip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.filmstrip .frame {
  aspect-ratio: 3 / 4;
  border-radius: 14px;
}

.filmstrip .frame:nth-child(1) { border-radius: 999px 999px 14px 14px; }
.filmstrip .frame:nth-child(2) { margin-top: 2.6rem; }
.filmstrip .frame:nth-child(3) { margin-top: -2.6rem; }
.filmstrip .frame:nth-child(4) { border-radius: 14px 14px 999px 999px; }

/* Character system — collage */

.cs-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cs-collage .frame--video {
  grid-column: 1 / -1;
  aspect-ratio: 1 / 1.38;
  border-radius: 999px 999px 18px 18px;
}

.cs-collage .frame--a { aspect-ratio: 1.618 / 1; border-radius: 14px; }
.cs-collage .frame--b { aspect-ratio: 1.618 / 1; border-radius: 14px; }

/* Daily drop — feed row */

.drop-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.drop-item {
  position: relative;
}

.drop-item .frame {
  aspect-ratio: 3 / 4;
  border-radius: 14px;
}

.drop-item:nth-child(even) {
  transform: translateY(2.2rem);
}

.drop-item figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-top: 0.9rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.drop-item figcaption span {
  color: var(--muted-dark);
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: none;
  font-size: 0.78rem;
}

.drop-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.drop-head-row .section-head {
  margin-bottom: 0;
}

.drop-day {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rose);
  white-space: nowrap;
}

.drop-cta {
  margin-top: clamp(3.5rem, 6vw, 5rem);
  display: flex;
  justify-content: center;
}

/* ---------- Showcase (dark editorial grid) ---------- */

.mag-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 96px;
  gap: clamp(0.9rem, 1.6vw, 1.4rem);
}

.mag {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--black-soft);
}

.mag img,
.mag video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), opacity 0.5s ease;
}

.mag:hover img,
.mag:hover video {
  transform: scale(1.045);
}

.mag figcaption {
  position: absolute;
  left: 1.1rem;
  bottom: 1rem;
  z-index: 2;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-light);
  background: rgba(9, 8, 10, 0.5);
  border: 1px solid rgba(255, 247, 235, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
}

.mag--feature { grid-column: span 6; grid-row: span 5; }
.mag--tall { grid-column: span 3; grid-row: span 5; }
.mag--med { grid-column: span 3; grid-row: span 3; }
.mag--wide { grid-column: span 6; grid-row: span 3; }
.mag--sm { grid-column: span 3; grid-row: span 2; }

/* ---------- Who it is for ---------- */

.who {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.who-list {
  list-style: none;
  counter-reset: who;
}

.who-list li {
  counter-increment: who;
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.01em;
  transition: padding-left 0.35s var(--ease), color 0.35s var(--ease);
}

.who-list li:first-child {
  border-top: 1px solid var(--border-light);
}

.who-list li::before {
  content: counter(who, decimal-leading-zero);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.who-list li:hover {
  padding-left: 0.8rem;
  color: var(--gold);
}

.who-copy .lead {
  margin-top: 1.6rem;
}

/* ---------- How it works ---------- */

.steps {
  counter-reset: step;
  max-width: 780px;
  margin-inline: auto;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.5rem 2.4rem;
  align-items: baseline;
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--border-light);
}

.step:first-child {
  border-top: 1px solid var(--border-light);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  letter-spacing: -0.01em;
}

.step p {
  grid-column: 2;
  color: var(--muted-dark);
  font-size: 0.96rem;
  max-width: 52ch;
  margin-top: 0.3rem;
}

/* ---------- Final CTA ---------- */

.final {
  position: relative;
  overflow: hidden;
}

.final-bg {
  position: absolute;
  inset: 0;
}

.final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.final-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 90% at 50% 100%, rgba(9, 8, 10, 0.2), transparent 60%),
    linear-gradient(180deg, var(--black) 0%, rgba(9, 8, 10, 0.55) 45%, var(--black) 100%);
}

.final-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: clamp(2rem, 6vw, 4rem);
}

.final .section-title {
  max-width: 20ch;
  margin-inline: auto;
}

.final .lead {
  margin: 1.8rem auto 0;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--black);
  color: var(--text-light);
  padding: clamp(4rem, 7vw, 6rem) 0 2.6rem;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2.6rem;
}

.footer-brand p {
  color: var(--muted-light);
  font-size: 0.92rem;
  max-width: 28ch;
  margin-top: 1rem;
}

.footer-col h3 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.footer-col a {
  font-size: 0.92rem;
  color: rgba(255, 247, 235, 0.82);
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted-light);
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--d, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    justify-self: center;
    margin-top: 1rem;
  }

  .hero-note { left: -0.6rem; }
  .hero-note--2 { right: -0.6rem; }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .mag--feature { grid-column: span 12; grid-row: span 4; }
  .mag--tall { grid-column: span 6; grid-row: span 4; }
  .mag--med, .mag--wide { grid-column: span 6; grid-row: span 3; }
  .mag--sm { grid-column: span 6; grid-row: span 2; }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav.menu-open {
    background: var(--cream);
    box-shadow: 0 1px 0 var(--border-light);
  }

  .site-nav.menu-open .nav-links {
    display: grid;
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    gap: 0;
    background: var(--cream);
    padding: 0.5rem 1.75rem 2rem;
    box-shadow: 0 30px 40px -30px rgba(21, 16, 12, 0.3);
  }

  .site-nav.menu-open .nav-links li {
    border-bottom: 1px solid var(--border-light);
  }

  .site-nav.menu-open .nav-links li:last-child {
    border-bottom: none;
    padding-top: 1.2rem;
  }

  .site-nav.menu-open .nav-links a {
    display: block;
    padding: 1.05rem 0;
    font-size: 0.95rem;
  }


  .systems-row {
    grid-template-columns: 1fr;
    gap: 3.4rem;
  }

  .system-block:nth-child(2) {
    margin-top: 0;
  }

  .spot,
  .who {
    grid-template-columns: 1fr;
  }

  .spot--flip .spot-media { order: 2; }

  .drop-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .drop-item:nth-child(even) {
    transform: translateY(1.4rem);
  }
}

@media (max-width: 600px) {
  .container {
    width: min(var(--container), 100% - 2.4rem);
  }

  .hero-actions .btn,
  .final-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-meta {
    gap: 1.6rem;
    flex-wrap: wrap;
  }

  .filmstrip .frame:nth-child(2) { margin-top: 1.4rem; }
  .filmstrip .frame:nth-child(3) { margin-top: -1.4rem; }

  .cs-collage {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .cs-collage .frame--video {
    grid-row: auto;
  }

  .drop-strip {
    grid-template-columns: 1fr;
  }

  .drop-item:nth-child(even) {
    transform: none;
  }

  .mag-grid { grid-auto-rows: 84px; }
  .mag--tall { grid-column: span 12; grid-row: span 4; }
  .mag--med, .mag--wide, .mag--sm { grid-column: span 12; grid-row: span 3; }

  .step {
    grid-template-columns: 3.4rem 1fr;
    gap: 0.8rem 1.4rem;
  }

  .step::before { font-size: 1.5rem; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- V2 refinements: SEO/visual consistency/video demo ---------- */
:root {
  --radius-media: 22px;
  --radius-panel: 22px;
  --radius-large: 32px;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.frame,
.mag,
.system-block .frame,
.filmstrip .frame,
.cs-collage .frame--video,
.cs-collage .frame--a,
.cs-collage .frame--b,
.cs-collage .frame--c,
.cs-collage .frame--d,
.drop-item .frame {
  border-radius: var(--radius-media);
}

.frame--arch,
.system-block:nth-child(2) .frame,
.filmstrip .frame:nth-child(1),
.filmstrip .frame:nth-child(4) {
  border-radius: var(--radius-large);
}

.frame img,
.frame video,
.mag img,
.mag video,
.media-frame img,
.media-frame video {
  border-radius: inherit;
}

.hero-title {
  font-size: clamp(3.06rem, 6.97vw, 6.205rem);
  line-height: 0.9;
  letter-spacing: -0.052em;
}

.section-title {
  font-size: clamp(2.55rem, 5.5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.spot-title {
  font-size: clamp(2.45rem, 4.8vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-media::before {
  border-radius: calc(var(--radius-large) + 8px);
}

.action {
  position: relative;
  overflow: hidden;
}

.action::before {
  content: "";
  position: absolute;
  inset: auto -12% 7% auto;
  width: 38vw;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.22), transparent 68%);
  pointer-events: none;
}

.action-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.action-copy .label {
  display: block;
  margin-bottom: 1.6rem;
}

.action-copy .lead {
  margin-top: 1.6rem;
}

.action-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  margin-top: clamp(2.6rem, 5vw, 4rem);
}

.action-metrics div {
  border-top: 1px solid var(--border-light);
  padding-top: 1.2rem;
}

.action-metrics strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--gold);
}

.action-metrics span {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.action-media {
  justify-self: center;
  width: min(100%, 420px);
}

.media-frame,
.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-media);
}

.video-shell {
  aspect-ratio: 9 / 16;
  background: var(--black);
  box-shadow: 0 46px 110px -56px rgba(21, 16, 12, 0.7);
}

.video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(9, 8, 10, 0.34), transparent 24%, transparent 70%, rgba(9, 8, 10, 0.38)),
    linear-gradient(90deg, rgba(9, 8, 10, 0.24), transparent 22%, transparent 78%, rgba(9, 8, 10, 0.22));
}

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-control {
  position: absolute;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  outline: none;
  border-radius: 50%;
  background: transparent;
  color: var(--gold-light);
  font-size: 1rem;
  line-height: 1;
  transition: background-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.video-control:hover {
  background: rgba(10, 8, 5, 0.6);
  transform: translateY(-1px);
}

.video-control:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.video-control--audio {
  top: 12px;
  right: 12px;
}

.video-control--play {
  right: 12px;
  bottom: 12px;
}

.drop-strip::after {
  content: "One topic · 5 posts · Canva & Sheets export";
  grid-column: 1 / -1;
  margin-top: 1.2rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-media);
  color: var(--muted-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  background: rgba(255, 248, 237, 0.58);
}

@media (max-width: 900px) {
  .action-grid {
    grid-template-columns: 1fr;
  }
  .action-media {
    width: min(100%, 360px);
  }
  .action-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: clamp(2.55rem, 13.6vw, 3.74rem);
  }
  .section-title {
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }
}


/* ---------- V3 requested corrections ---------- */
.nav-links li:last-child a {
  color: var(--text-dark);
  font-weight: 700;
}

.hero-video-shell {
  aspect-ratio: 9 / 16;
}

.hero-video-shell.frame--arch,
.hero-video-shell.frame--arch video {
  border-radius: var(--radius-large);
}

.hero-video-shell .frame-tag {
  bottom: 1rem;
}

.video-icon {
  width: 19px;
  height: 19px;
  display: block;
  pointer-events: none;
  filter: brightness(0) saturate(100%) invert(82%) sepia(38%) saturate(540%) hue-rotate(356deg) brightness(96%) contrast(92%);
}

.video-control .video-icon--sound,
.video-control .video-icon--play {
  display: none;
}

.video-control.is-unmuted .video-icon--sound,
.video-control.is-playing .video-icon--pause {
  display: block;
}

.video-control.is-unmuted .video-icon--muted,
.video-control.is-playing .video-icon--play {
  display: none;
}

.video-control:not(.is-playing) .video-icon--play {
  display: block;
}

.system-block .go,
.link-line {
  gap: 0;
}

.system-block:hover .go,
.link-line:hover {
  gap: 0;
}

/* V3 fix: hero video aspect and icon state */
.hero-media .hero-video-shell {
  aspect-ratio: 9 / 16;
}

.video-control .video-icon--pause {
  display: none;
}

.video-control.is-playing .video-icon--pause {
  display: block;
}


/* ---------- Legal pages ---------- */

.legal-page {
  background: var(--cream);
  color: var(--text-dark);
}

.legal-hero {
  padding-top: clamp(8rem, 13vw, 13rem);
  padding-bottom: clamp(3.5rem, 6vw, 6rem);
  background:
    radial-gradient(circle at 14% 18%, rgba(201, 164, 92, 0.18), transparent 34%),
    radial-gradient(circle at 86% 6%, rgba(139, 108, 255, 0.14), transparent 30%),
    var(--black);
  color: var(--text-light);
}

.legal-hero .legal-kicker {
  display: inline-block;
  margin-bottom: 1.15rem;
}

.legal-title {
  font-size: clamp(3.4rem, 7vw, 7.6rem);
  max-width: 10ch;
}

.legal-subtitle {
  margin-top: 1.5rem;
  max-width: 68ch;
  color: var(--muted-light);
}

.legal-main {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 760px) minmax(0, 1fr);
}

.legal-article {
  grid-column: 2;
  background: rgba(255, 248, 237, 0.72);
  border: 1px solid var(--border-light);
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 28px 90px rgba(21, 16, 12, 0.08);
}

.legal-article h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 0.75rem;
}

.legal-article .meta {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.legal-article h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-top: 2.45rem;
  margin-bottom: 0.8rem;
}

.legal-article p,
.legal-article li {
  color: var(--muted-dark);
  font-size: 1rem;
  line-height: 1.78;
}

.legal-article p + p {
  margin-top: 1rem;
}

.legal-article a {
  color: #8b641a;
  border-bottom: 1px solid rgba(201, 164, 92, 0.4);
}

.legal-article a:hover {
  border-color: var(--gold);
}

.legal-article code {
  display: inline-block;
  border-radius: 0.45rem;
  padding: 0.05rem 0.35rem;
  background: rgba(21, 16, 12, 0.08);
  color: var(--text-dark);
  font-size: 0.9em;
}

.legal-back {
  margin-top: 2rem;
}

@media (max-width: 720px) {
  .legal-shell {
    display: block;
  }

  .legal-article {
    border-radius: 24px;
    padding: 1.6rem;
  }
}

/* ---------- V5 See It In Action layout correction ---------- */
.action-shell {
  position: relative;
  z-index: 1;
}

.action-heading {
  max-width: 1050px;
  margin-inline: auto;
  text-align: center;
}

.action-heading .label {
  display: block;
  margin-bottom: 1.55rem;
}

.action-heading .section-title {
  max-width: 20ch;
  margin-inline: auto;
}

.action-heading .lead {
  max-width: 660px;
  margin: 1.45rem auto 0;
}

.action-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(280px, 1fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
  margin-top: clamp(3.8rem, 7vw, 5.7rem);
}

.action-layout .action-media {
  justify-self: center;
  width: min(100%, 357px);
}

.action-layout .action-copy {
  justify-self: stretch;
}

.action-layout .action-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0;
}

.action-layout .action-metrics div {
  border-top: 1px solid var(--border-light);
  padding-top: clamp(1.6rem, 3vw, 2.15rem);
  padding-bottom: clamp(1.6rem, 3vw, 2.15rem);
}

.action-layout .action-metrics div:last-child {
  border-bottom: 0;
}

.action-layout .action-metrics strong {
  font-size: clamp(3.2rem, 6.5vw, 5.2rem);
}

.action .video-control {
  width: 30px;
  height: 30px;
}

.action .video-icon {
  width: 14px;
  height: 14px;
}

.action .video-control--audio {
  top: 10px;
  right: 10px;
}

.action .video-control--play {
  right: 10px;
  bottom: 10px;
}

@media (max-width: 900px) {
  .action-layout {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .action-layout .action-media {
    width: min(100%, 340px);
  }

  .action-layout .action-copy {
    max-width: 620px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .action-heading {
    text-align: left;
  }

  .action-heading .section-title,
  .action-heading .lead {
    margin-inline: 0;
  }

  .action-layout .action-media {
    width: min(100%, 306px);
  }
}


/* ---------- V6 requested corrections ---------- */
.hero-media {
  width: min(100%, 357px);
}

.hero-video-shell .video-control {
  display: none !important;
}

.hero-video-shell video {
  pointer-events: none;
}

.social-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.15rem;
  padding: 0;
}

.social-links a {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 247, 235, 0.7);
  transition: color 0.25s ease;
}

.social-links a:hover {
  color: var(--gold-light);
}

.legal-page .social-links a {
  color: rgba(255, 247, 235, 0.7);
}

@media (max-width: 1080px) {
  .hero-media {
    width: min(85vw, 357px);
  }
}


/* ---------- Privacy settings banner ---------- */
.footer-privacy-link,
.privacy-text-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.footer-privacy-link {
  font-size: 0.92rem;
  color: rgba(255, 247, 235, 0.58);
  transition: color 0.25s ease;
}

.footer-privacy-link:hover,
.footer-privacy-link:focus-visible {
  color: var(--gold-light);
}

.privacy-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 120;
  width: min(calc(100% - 40px), 1180px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  background: var(--ivory);
  color: var(--text-dark);
  border: 1px solid rgba(21, 16, 12, 0.16);
  box-shadow: 0 22px 80px -36px rgba(9, 8, 10, 0.48);
}

.privacy-banner[hidden] {
  display: none;
}

.privacy-banner__copy {
  color: var(--muted-dark);
  font-size: clamp(0.96rem, 1.4vw, 1.15rem);
  line-height: 1.55;
}

.privacy-banner__copy strong {
  color: var(--text-dark);
}

.privacy-text-button {
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.privacy-banner__actions {
  display: grid;
  gap: 0.8rem;
  min-width: 170px;
}

.privacy-banner .btn {
  justify-content: center;
  min-height: 54px;
  border-radius: 0;
}

@media (max-width: 760px) {
  .privacy-banner {
    grid-template-columns: 1fr;
    bottom: 14px;
    width: min(calc(100% - 28px), 560px);
  }
  .privacy-banner__actions {
    grid-template-columns: 1fr;
    min-width: 0;
  }
}

/* ---------- V9 Golden Ratio refinement ----------
   Proportional layout pass based on φ = 1.618 and its 61.8 / 38.2 split. */
:root {
  --phi: 1.618;
  --golden-major: 61.8%;
  --golden-minor: 38.2%;
  --container: 1184px;
  --pad-section: clamp(6.18rem, 10vw, 10rem);
  --radius-media: 21px;
  --radius-panel: 21px;
  --radius-large: 34px;
}

body {
  line-height: 1.618;
}

.container {
  width: min(var(--container), 100% - clamp(2.125rem, 5vw, 4.25rem));
}

.lead {
  line-height: 1.618;
  max-width: 52ch;
}

.label {
  letter-spacing: 0.31em;
}

.btn {
  padding: 0.95rem 2.1rem;
  min-height: 3.25rem;
}

.site-nav .container,
.nav-inner {
  height: clamp(4.25rem, 6.18vw, 5.75rem);
}

.nav-links {
  gap: clamp(1.5rem, 3.2vw, 2.625rem);
}

.hero {
  padding-top: clamp(7.5rem, 13vw, 11rem);
  padding-bottom: clamp(4.625rem, 7vw, 7.5rem);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.618fr) minmax(260px, 1fr);
  gap: clamp(2.625rem, 6.18vw, 6.5rem);
}

.hero-copy .label {
  margin-bottom: clamp(1.3rem, 2.6vw, 2.125rem);
}

.hero-title {
  font-size: clamp(2.75rem, 5.91vw, 5.27rem);
  line-height: 0.94;
  letter-spacing: -0.048em;
  max-width: 11.8ch;
}

.hero-sub {
  margin-top: clamp(1.3rem, 2.5vw, 2.125rem);
  max-width: 42ch;
}

.hero-actions {
  margin-top: clamp(2.125rem, 4.2vw, 3.25rem);
}

.hero-meta {
  gap: clamp(1.618rem, 3.8vw, 3.25rem);
  margin-top: clamp(2.625rem, 5vw, 4.25rem);
  padding-top: clamp(1.3rem, 2.4vw, 2.125rem);
}

.hero-media {
  width: min(100%, 352px);
}

.hero-media .frame--arch,
.hero-video-shell {
  aspect-ratio: 1 / 1.618;
}

.hero-media::before {
  inset: -13px;
  border-radius: calc(var(--radius-large) + 8px);
}

.hero-note {
  padding: 0.8rem 1.3rem;
  border-radius: 13px;
}

.section {
  padding-block: var(--pad-section);
}

.section-head {
  margin-bottom: clamp(3.25rem, 6.18vw, 6.18rem);
}

.section-head .label,
.spot-copy .label,
.action-heading .label {
  margin-bottom: clamp(1rem, 2vw, 1.618rem);
}

.section-title {
  font-size: clamp(2.45rem, 5.1vw, 4.25rem);
  line-height: 0.98;
  max-width: 16.18ch;
}

.section-head .lead,
.action-heading .lead,
.final .lead {
  margin-top: clamp(1.05rem, 2.1vw, 1.618rem);
}

.systems-row {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.08fr) minmax(0, 0.9fr);
  gap: clamp(1.618rem, 3.82vw, 4.25rem);
  align-items: start;
}

.system-block:nth-child(2) {
  margin-top: clamp(1.618rem, 3.82vw, 3.25rem);
}

.system-block .frame {
  aspect-ratio: 1 / 1.618;
  border-radius: var(--radius-media);
}

.system-block:nth-child(2) .frame {
  border-radius: var(--radius-large) var(--radius-large) var(--radius-media) var(--radius-media);
}

.system-num {
  margin-top: clamp(1.05rem, 2.4vw, 1.618rem);
  margin-bottom: 0.382rem;
}

.system-block h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.system-block p {
  margin-top: 0.85rem;
  max-width: 32.36ch;
}

.spot {
  grid-template-columns: minmax(0, 0.618fr) minmax(0, 1fr);
  gap: clamp(3.25rem, 7vw, 7.5rem);
}

.spot--flip {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.618fr);
}

.spot-title {
  font-size: clamp(2.3rem, 4.6vw, 3.95rem);
  line-height: 1;
  max-width: 14.5ch;
}

.spot-copy .lead {
  margin-top: clamp(1rem, 2vw, 1.618rem);
}

.spot-list {
  margin-top: clamp(1.618rem, 3.2vw, 2.625rem);
  margin-bottom: clamp(1.618rem, 3.2vw, 2.625rem);
}

.spot-list li {
  gap: 1.05rem;
  padding-block: 0.9rem;
}

.filmstrip {
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.95rem, 1.9vw, 1.618rem);
}

.filmstrip .frame,
.drop-item .frame {
  aspect-ratio: 1 / 1.618;
}

.filmstrip .frame:nth-child(2) { margin-top: clamp(1.6rem, 3vw, 2.625rem); }
.filmstrip .frame:nth-child(3) { margin-top: clamp(-2.625rem, -3vw, -1.6rem); }

.cs-collage {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.95rem, 1.9vw, 1.618rem);
}

.cs-collage .frame--video {
  grid-column: 1 / -1;
  aspect-ratio: 1 / 1.38;
  border-radius: var(--radius-large) var(--radius-large) var(--radius-media) var(--radius-media);
}

.cs-collage .frame--a,
.cs-collage .frame--b,
.cs-collage .frame--c,
.cs-collage .frame--d {
  aspect-ratio: 1.618 / 1;
  border-radius: var(--radius-media);
}

.drop-head-row {
  gap: clamp(2rem, 6.18vw, 6.18rem);
}

.drop-strip {
  gap: clamp(0.95rem, 2vw, 1.618rem);
  margin-top: clamp(3.25rem, 6.18vw, 5rem);
}

.drop-item:nth-child(even) {
  transform: translateY(clamp(1.05rem, 2.6vw, 2.625rem));
}

.drop-cta,
.final-actions {
  margin-top: clamp(2.125rem, 4.2vw, 3.25rem);
}

.mag-grid {
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(78px, 8.4vw, 118px);
  gap: clamp(0.8rem, 1.8vw, 1.618rem);
}

.mag--feature { grid-column: span 7; grid-row: span 5; }
.mag--tall { grid-column: span 3; grid-row: span 5; }
.mag--med { grid-column: span 2; grid-row: span 3; }
.mag--wide { grid-column: span 5; grid-row: span 3; }
.mag--sm { grid-column: span 2; grid-row: span 2; }

.who {
  grid-template-columns: minmax(0, 0.618fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 7.5rem);
}

.who-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.8vw, 1.618rem);
}

.who-list li {
  min-height: clamp(5.25rem, 8vw, 6.85rem);
  padding: clamp(1.05rem, 2vw, 1.618rem);
  border-radius: var(--radius-panel);
}

.steps {
  width: min(100%, 864px);
  margin-inline: auto;
}

.step {
  grid-template-columns: 5.25rem 1fr;
  gap: 1.618rem 2.625rem;
  padding-block: clamp(1.3rem, 2.6vw, 2.125rem);
}

.final-inner {
  padding-block: clamp(2.625rem, 6.18vw, 5rem);
}

.footer-grid {
  grid-template-columns: 1.618fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.action-heading {
  max-width: 1100px;
}

.action-heading .section-title {
  max-width: 16.18ch;
}

.action-heading .lead {
  max-width: 682px;
}

.action-layout {
  grid-template-columns: minmax(240px, 0.618fr) minmax(0, 1fr);
  gap: clamp(3.25rem, 7vw, 7.5rem);
  margin-top: clamp(3.25rem, 6.18vw, 5rem);
}

.action-layout .action-media {
  width: min(100%, 330px);
}

.action-layout .action-metrics div {
  padding-top: clamp(1.618rem, 3vw, 2.625rem);
  padding-bottom: clamp(1.618rem, 3vw, 2.625rem);
}

.action-layout .action-metrics strong {
  font-size: clamp(3.25rem, 6.18vw, 5rem);
}

.action-metrics span {
  max-width: 33ch;
}

.legal-main {
  padding-block: clamp(4.25rem, 7.5vw, 7.5rem);
}

.legal-shell {
  grid-template-columns: minmax(0, 1fr) minmax(0, 752px) minmax(0, 1fr);
}

.legal-article {
  border-radius: var(--radius-large);
  padding: clamp(2.125rem, 4.5vw, 3.82rem);
}

.legal-article h1 {
  font-size: clamp(2.125rem, 4vw, 3.82rem);
  max-width: 12ch;
}

.legal-article h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  margin-top: clamp(2.125rem, 4vw, 3.25rem);
}

.legal-article p,
.legal-article li {
  line-height: 1.618;
  max-width: 68ch;
}

@media (max-width: 1080px) {
  .hero-grid,
  .spot,
  .spot--flip,
  .who {
    grid-template-columns: 1fr;
  }

  .hero-media {
    width: min(78vw, 352px);
  }

  .spot-copy,
  .who-copy {
    max-width: 720px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .systems-row {
    grid-template-columns: 1fr;
    gap: clamp(2.625rem, 8vw, 4.25rem);
  }

  .system-block:nth-child(2) {
    margin-top: 0;
  }

  .system-block .frame,
  .system-block:nth-child(2) .frame {
    aspect-ratio: 1.236 / 1;
    border-radius: var(--radius-media);
  }

  .action-layout {
    grid-template-columns: 1fr;
  }

  .action-layout .action-media {
    width: min(82vw, 330px);
  }

  .drop-head-row {
    display: block;
  }

  .drop-day {
    display: inline-flex;
    margin-top: 1.618rem;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(var(--container), 100% - 2.125rem);
  }

  .section {
    padding-block: clamp(4.25rem, 14vw, 6.18rem);
  }

  .hero {
    padding-top: 7rem;
  }

  .hero-title {
    font-size: clamp(2.625rem, 12.6vw, 3.618rem);
    line-height: 0.94;
  }

  .section-title {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
  }

  .spot-title {
    font-size: clamp(2.125rem, 9.2vw, 3rem);
  }

  .hero-media {
    width: min(84vw, 318px);
  }

  .hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-meta div:last-child {
    grid-column: 1 / -1;
  }

  .filmstrip,
  .drop-strip,
  .who-list {
    grid-template-columns: 1fr;
  }

  .filmstrip .frame:nth-child(2),
  .filmstrip .frame:nth-child(3),
  .drop-item:nth-child(even) {
    margin-top: 0;
    transform: none;
  }

  .cs-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cs-collage .frame--video {
    grid-column: 1 / -1;
  }

  .cs-collage .frame--a,
  .cs-collage .frame--b {
    aspect-ratio: 1.236 / 1;
  }

  .step {
    grid-template-columns: 3.25rem 1fr;
    gap: 0.8rem 1.3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .privacy-banner {
    width: min(calc(100% - 2rem), 560px);
  }
}

/* ---------- V10 legal/navigation spacing corrections ---------- */
:root {
  --container: 1180px;
  --page-gutter: clamp(1.5rem, 4.2vw, 4rem);
}

.container {
  width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
}

.nav-links li:last-child a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  background: var(--gold);
  color: #100c07;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 34px -18px rgba(201, 164, 92, 0.65);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background-color 0.35s var(--ease), color 0.35s var(--ease);
}

.nav-links li:last-child a:hover {
  background: var(--gold-light);
  color: #100c07;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -18px rgba(201, 164, 92, 0.78);
}

.legal-page .site-nav {
  background: rgba(244, 234, 220, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-light);
}

.legal-page .nav-links a:not(.btn),
.legal-page .logo {
  color: var(--text-dark);
}

.legal-page .legal-main {
  padding-top: clamp(8rem, 10vw, 10.5rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.legal-page .legal-shell {
  display: block;
  max-width: 860px;
  margin-inline: auto;
}

.legal-page .legal-article {
  width: 100%;
  max-width: none;
}

@media (max-width: 900px) {
  .nav-links li:last-child a {
    width: fit-content;
    margin-top: 1rem;
    padding-inline: 1.8rem;
  }

  .site-nav.menu-open .nav-links li:last-child {
    border-bottom: 0;
    padding-top: 0.35rem;
  }

  .site-nav.menu-open .nav-links li:last-child a {
    display: inline-flex;
    padding-block: 0.95rem;
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 1.25rem;
  }

  .legal-page .legal-main {
    padding-top: 7.25rem;
  }
}


/* ---------- V11 footer polish ---------- */
.site-footer {
  padding: clamp(4.5rem, 7.5vw, 7.25rem) 0 clamp(2rem, 3vw, 3rem);
}

.footer-grid {
  grid-template-columns: 1.618fr 1fr 1fr 1fr;
  gap: clamp(2.25rem, 5.2vw, 5.25rem);
  align-items: start;
}

.footer-brand p {
  max-width: 30ch;
}

.footer-bottom {
  align-items: center;
  gap: 1.4rem 2rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.85rem 1.15rem;
}

.footer-bottom-links a {
  position: relative;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 247, 235, 0.74);
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  color: var(--gold-light);
}

.footer-bottom-links a:not(:last-child)::after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 247, 235, 0.28);
  position: absolute;
  right: -0.62rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom-links {
    justify-content: flex-start;
  }
}

/* ---------- V12 requested product-section polish ---------- */
.spot-media--talking .filmstrip {
  width: 85%;
  margin-inline: auto;
}

#daily-drop {
  background: #ccc0f2;
}

.drop-strip--duo {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.drop-strip--duo .drop-item,
.drop-strip--duo .drop-item:nth-child(even) {
  transform: none;
}

.drop-strip--duo .drop-item .frame {
  aspect-ratio: auto;
  border-radius: clamp(1.25rem, 2vw, 1.75rem);
  overflow: hidden;
  box-shadow: 0 2.2rem 5.5rem rgba(52, 35, 99, 0.22);
}

.drop-strip--duo .drop-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 900px) {
  .spot-media--talking .filmstrip {
    width: 100%;
  }

  .drop-strip--duo {
    grid-template-columns: 1fr;
  }
}

/* ---------- V13 Daily Drop final color/alignment update ---------- */
#daily-drop {
  background: #f7f4ff;
}

#daily-drop .drop-head-row {
  text-align: center;
  justify-items: center;
  align-items: center;
}

#daily-drop .section-head,
#daily-drop .section-title,
#daily-drop .lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#daily-drop .drop-day {
  margin-left: auto;
  margin-right: auto;
}

#daily-drop .drop-cta {
  display: flex;
  justify-content: center;
}

#daily-drop .drop-cta .btn,
#daily-drop .drop-cta .btn-gold {
  background: #503a92;
  color: #ffffff;
}

#daily-drop .drop-cta .btn:hover,
#daily-drop .drop-cta .btn-gold:hover {
  background: #503a92;
  color: #ffffff;
  box-shadow: 0 14px 34px -14px rgba(80, 58, 146, 0.65);
}

/* ---------- V15 global width + hero video alignment ---------- */
:root {
  --container: 1003px; /* 1180px reduced by ~15% */
}

.container {
  width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
}

.hero-video-shell video,
.hero-media .hero-video-shell video {
  object-position: center top;
}

.legal-page .legal-shell {
  max-width: 731px; /* 860px reduced by ~15% */
}

@media (max-width: 1080px) {
  .hero-media {
    max-width: min(100%, 612px); /* previous 720px reduced by ~15% */
  }
}

/* V17: Character System section uses exact 50/50 desktop split */
@media (min-width: 1081px) {
  #character-system .spot--flip {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}


/* ---------- Floating scroll controls ---------- */
.scroll-dock {
  position: fixed;
  right: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  z-index: 160;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.scroll-dock__btn {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(9, 8, 10, 0.88);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  line-height: 1;
  box-shadow: 0 14px 30px -16px rgba(0,0,0,0.55);
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  backdrop-filter: blur(10px);
}

.scroll-dock__btn:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: #100c07;
  border-color: var(--gold);
}

.scroll-dock__btn:focus-visible {
  outline-color: var(--gold-light);
}

@media (max-width: 767px) {
  .scroll-dock {
    right: 0.9rem;
    bottom: 0.9rem;
  }
  .scroll-dock__btn {
    width: 2.65rem;
    height: 2.65rem;
    font-size: 1rem;
  }
}


/* ---------- V20 tablet layout corrections ---------- */
.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  background: var(--gold);
  color: #100c07;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px -18px rgba(201, 164, 92, 0.65);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background-color 0.35s var(--ease), color 0.35s var(--ease);
}

.nav-action:hover {
  background: var(--gold-light);
  color: #100c07;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -18px rgba(201, 164, 92, 0.78);
}

.nav-links li:last-child a {
  display: inline;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--muted-dark);
  font-weight: 500;
  letter-spacing: 0.14em;
}

.nav-links li:last-child a:hover {
  background: transparent;
  box-shadow: none;
  color: var(--text-dark);
  transform: none;
}

@media (max-width: 1080px) {
  .nav-inner {
    gap: 1rem;
  }

  .nav-inner nav[aria-label="Primary"] {
    margin-left: auto;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-action {
    display: inline-flex;
    padding-inline: 1.65rem;
  }

  .site-nav.menu-open {
    background: var(--cream);
    box-shadow: 0 1px 0 var(--border-light);
  }

  .site-nav.menu-open .nav-links {
    display: grid;
    position: absolute;
    top: clamp(4.25rem, 6.18vw, 5.75rem);
    left: 0;
    right: 0;
    gap: 0;
    background: var(--cream);
    padding: 0.5rem var(--page-gutter) 2rem;
    box-shadow: 0 30px 40px -30px rgba(21, 16, 12, 0.3);
  }

  .site-nav.menu-open .nav-links li {
    border-bottom: 1px solid var(--border-light);
  }

  .site-nav.menu-open .nav-links li:last-child {
    border-bottom: 0;
  }

  .site-nav.menu-open .nav-links a {
    display: block;
    padding: 1.05rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.618fr) minmax(240px, 1fr) !important;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
  }

  .hero-copy {
    max-width: none;
  }

  .hero-media {
    justify-self: end;
    width: min(100%, 320px) !important;
    max-width: 320px;
    margin-top: 0;
  }

  #talking-head-system .spot {
    grid-template-columns: minmax(0, 0.618fr) minmax(0, 1fr) !important;
    align-items: center;
  }

  #talking-head-system .spot-media {
    order: initial;
  }

  #character-system .spot--flip {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    align-items: center;
  }

  #character-system .spot-media,
  #character-system .spot-copy {
    order: initial !important;
  }

  .spot-media--talking .filmstrip {
    width: 92%;
    margin-left: auto;
    margin-right: 0;
  }

  .cs-collage {
    max-width: none;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 1fr 1fr 1fr !important;
    gap: clamp(1.5rem, 3.5vw, 3rem);
  }

  .footer-brand {
    grid-column: auto !important;
  }
}

@media (max-width: 767px) {
  .nav-action {
    padding-inline: 1.15rem;
    min-height: 2.9rem;
    font-size: 0.68rem;
  }
}


/* ===== Peek galleries ===== */
.peek-gallery {
  display: flex;
  align-items: stretch;
  gap: clamp(0.9rem, 1.8vw, 1.25rem);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.35rem;
  cursor: grab;
}

.peek-gallery::-webkit-scrollbar {
  display: none;
}

.peek-card {
  position: relative;
  flex: 0 0 76%;
  min-width: 0;
  scroll-snap-align: start;
  border-radius: 1.75rem;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 24px 46px -28px rgba(0,0,0,0.35);
  aspect-ratio: 3 / 4;
}

.peek-gallery--story .peek-card {
  flex-basis: 72%;
  aspect-ratio: 4 / 5;
}

.peek-card img,
.peek-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.peek-card figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(9,8,10,0.68);
  color: #fff7eb;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.peek-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(0,0,0,0.46), rgba(0,0,0,0));
  pointer-events: none;
}

#talking-head-system .spot-media--talking {
  align-self: start;
}

@media (max-width: 767px) {
  .peek-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    overflow: visible;
    cursor: default;
  }

  .peek-card,
  .peek-gallery--story .peek-card {
    flex: none;
    width: 100%;
    aspect-ratio: 4 / 5;
  }
}


/* ===== V22: Talking Head peek only on mobile ===== */
@media (min-width: 768px) {
  .peek-gallery--talking {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.9rem, 1.6vw, 1.15rem);
    overflow: visible;
    scroll-snap-type: none;
    cursor: default;
    padding-bottom: 0;
  }

  .peek-gallery--talking .peek-card {
    flex: none;
    width: 100%;
    aspect-ratio: 3 / 4;
    cursor: default;
  }
}

@media (max-width: 767px) {
  .peek-gallery--talking {
    display: flex;
    overflow-x: auto;
    gap: 0.9rem;
    padding-inline: 13vw;
    padding-bottom: 0.55rem;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 13vw;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
  }

  .peek-gallery--talking .peek-card {
    flex: 0 0 74%;
    width: auto;
    aspect-ratio: 3 / 4;
    scroll-snap-align: center;
    cursor: pointer;
  }

  .peek-gallery--talking .peek-card:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }
}


/* ===== V23: refined peek galleries ===== */
.peek-gallery {
  --peek-gap: clamp(0.9rem, 1.6vw, 1.1rem);
  gap: var(--peek-gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.35rem;
  cursor: grab;
}

.peek-gallery:active {
  cursor: grabbing;
}

.peek-gallery .peek-card {
  scroll-snap-align: center;
}

.peek-gallery--talking {
  margin-inline: 0;
}

.peek-gallery--story {
  margin-inline: 0;
}

/* Talking Head: desktop/tablet stays editorial grid */
@media (min-width: 768px) {
  .peek-gallery--talking {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--peek-gap);
    overflow: visible;
    scroll-snap-type: none;
    cursor: default;
    padding-bottom: 0;
  }

  .peek-gallery--talking .peek-card {
    width: 100%;
    min-width: 0;
    aspect-ratio: 3 / 4;
    cursor: default;
    scroll-snap-align: unset;
  }
}

/* Talking Head: mobile only, 1 image + next 1/5 peek, inside normal container width */
@media (max-width: 767px) {
  .peek-gallery--talking {
    display: flex;
    gap: var(--peek-gap);
    overflow-x: auto;
    padding-inline: 0;
    scroll-padding-inline: 0;
    -webkit-overflow-scrolling: touch;
  }

  .peek-gallery--talking .peek-card {
    flex: 0 0 calc(80% - (var(--peek-gap) * 0.8));
    width: auto;
    min-width: 0;
    aspect-ratio: 3 / 4;
    cursor: pointer;
  }
}

/* Visual Story: responsive peek carousel inside container */
.peek-gallery--story {
  display: flex;
  gap: var(--peek-gap);
  overflow-x: auto;
  padding-inline: 0;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
}

.peek-gallery--story .peek-card {
  width: auto;
  min-width: 0;
  aspect-ratio: 4 / 5;
  cursor: pointer;
}

@media (min-width: 1500px) {
  .peek-gallery--story .peek-card {
    flex: 0 0 calc(27.5% - (var(--peek-gap) * 0.75));
  }
}

@media (min-width: 768px) and (max-width: 1499px) {
  .peek-gallery--story .peek-card {
    flex: 0 0 calc(42% - (var(--peek-gap) * 0.6));
  }
}

@media (max-width: 767px) {
  .peek-gallery--story .peek-card {
    flex: 0 0 calc(80% - (var(--peek-gap) * 0.8));
  }
}

.peek-gallery--story .peek-card:focus-visible,
.peek-gallery--talking .peek-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}


/* ===== V24: Visual Story controlled one-step carousel ===== */
.story-carousel {
  --story-gap: clamp(0.85rem, 1.45vw, 1.08rem);
  --story-card-width: 280px;
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.story-carousel .peek-gallery--story {
  display: flex;
  align-items: stretch;
  gap: var(--story-gap);
  overflow: visible;
  scroll-snap-type: none;
  scrollbar-width: none;
  padding: 0;
  margin: 0;
  cursor: grab;
  will-change: transform;
  transform: translate3d(var(--story-offset, 0px), 0, 0);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-carousel.is-dragging .peek-gallery--story,
.story-carousel.is-dragging {
  cursor: grabbing;
}

.story-carousel .peek-gallery--story .peek-card {
  flex: 0 0 var(--story-card-width);
  width: var(--story-card-width);
  aspect-ratio: 1 / 1;
  scroll-snap-align: unset;
  cursor: pointer;
  border-radius: 1.55rem;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.story-carousel .peek-gallery--story .peek-card img,
.story-carousel .peek-gallery--story .peek-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-carousel .peek-gallery--story .peek-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .story-carousel .peek-gallery--story .peek-card {
    border-radius: 1.35rem;
  }
}

/* Keep all carousel math inside the normal content container, never the viewport edge. */
.section.dark .story-carousel,
.story-carousel {
  margin-inline: 0;
}


/* ===== V25: final responsive carousel ratios ===== */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

button,
input,
textarea,
select {
  -webkit-appearance: none;
  appearance: none;
}

/* Talking Head: desktop/tablet stays static 2x2 beside text. */
.talking-mobile-carousel {
  width: 100%;
  overflow: visible;
}

@media (min-width: 768px) {
  .talking-mobile-carousel .peek-gallery--talking {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.9rem, 1.6vw, 1.15rem);
    overflow: visible !important;
    transform: none !important;
    transition: none !important;
    padding: 0 !important;
    cursor: default !important;
  }

  .talking-mobile-carousel .peek-gallery--talking .peek-card {
    flex: none !important;
    width: 100% !important;
    min-width: 0;
    aspect-ratio: 3 / 4;
    cursor: default;
  }
}

/* Talking Head: mobile gets the same controlled one-step peek behavior as Visual Story. */
@media (max-width: 767px) {
  .talking-mobile-carousel {
    --story-gap: clamp(0.85rem, 3vw, 1rem);
    --story-card-width: 260px;
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
  }

  .talking-mobile-carousel .peek-gallery--talking {
    display: flex !important;
    align-items: stretch;
    gap: var(--story-gap);
    overflow: visible !important;
    scroll-snap-type: none !important;
    scrollbar-width: none;
    padding: 0 !important;
    margin: 0 !important;
    cursor: grab;
    will-change: transform;
    transform: translate3d(var(--story-offset, 0px), 0, 0);
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .talking-mobile-carousel .peek-gallery--talking .peek-card {
    flex: 0 0 var(--story-card-width) !important;
    width: var(--story-card-width) !important;
    aspect-ratio: 9 / 16;
    scroll-snap-align: unset;
    cursor: pointer;
    border-radius: 1.35rem;
  }
}

/* Visual Story: all media is shown in a strict 9:16 frame. */
.story-carousel .peek-gallery--story .peek-card {
  aspect-ratio: 9 / 16 !important;
}

.story-carousel .peek-gallery--story .peek-card img,
.story-carousel .peek-gallery--story .peek-card video,
.talking-mobile-carousel .peek-gallery--talking .peek-card img,
.talking-mobile-carousel .peek-gallery--talking .peek-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}


/* ===== V26: official VikkiSky image logo ===== */
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: inherit;
  text-decoration: none;
}

.logo-img {
  display: block;
  width: clamp(5.7rem, 7.2vw, 7.9rem);
  height: auto;
  object-fit: contain;
}

.footer-brand .logo-img {
  width: clamp(6.4rem, 8vw, 8.8rem);
}

.legal-page .logo {
  color: inherit;
}

@media (max-width: 767px) {
  .logo-img {
    width: 5.5rem;
  }

  .footer-brand .logo-img {
    width: 6.2rem;
  }
}
