/* ==========================================================================
   BellaCosmos — styles.css
   --------------------------------------------------------------------------
   The entire palette below was sampled directly from assets/images/bella-hero.jpeg
   so the site reads as a natural extension of that image.

     sky blue (top-left of image) ...... #B9D4E8
     periwinkle (top-right) ............ #91A7C9
     milky-way lavender ................ #B6C6DD
     warm cream (bottom-left) .......... #F9F2E5
     peach glow (center) ............... #F6ECE1
     cloud white-pink .................. #F5ECED
     harness rose (Bella's harness) .... #CE6C87
     moon .............................. #DBDDE9

   Table of contents
     01. Design tokens
     02. Reset & base
     03. Utilities
     04. Layout, sections & cloud dividers
     05. Buttons
     06. Header & navigation
     07. Hero
     08. Reels
     09. Meet Bella
     10. Real Bella (promise, gallery, story)
     11. Content pillars
     12. Why Bella works
     13. Social cards
     14. Brand partnerships
     15. Audience & performance
     16. Brand safety
     17. Contact
     18. Footer
     19. Lightbox
     20. Legal pages & 404
     21. Motion & reveals
     22. Responsive breakpoints
     23. Reduced motion, forced colors, print
   ========================================================================== */


/* ==========================================================================
   01. DESIGN TOKENS
   ========================================================================== */

:root {

  /* --- Sky blues (from the upper half of the hero image) ----------------- */
  --sky-50:   #F4F9FC;
  --sky-100:  #EAF3F9;
  --sky-200:  #D7E7F1;
  --sky-300:  #B9D4E8;   /* sampled: top-left sky */
  --sky-400:  #91A7C9;   /* sampled: top-right sky */
  --sky-500:  #6B85B0;
  --sky-700:  #3D5480;   /* accessible sky tone for text */

  /* --- Lavender (milky-way band) ---------------------------------------- */
  --lav-50:   #F6F4FC;
  --lav-100:  #EFEBF9;
  --lav-200:  #DCD6EE;
  --lav-300:  #C4BAE2;
  --lav-500:  #8A79BC;
  --lav-700:  #5B4C8A;

  /* --- Creams & peach (lower-left of the hero image) --------------------- */
  --cream-50:  #FFFDF9;
  --cream-100: #FDF8EF;
  --cream-200: #F9F2E5;  /* sampled: bottom-left cream */
  --cream-300: #F2E7D3;
  --peach-100: #FBEFE4;
  --peach-200: #F6ECE1;  /* sampled: center peach glow */
  --peach-300: #F3D9C2;

  /* --- Clouds ------------------------------------------------------------ */
  --cloud-100: #FFFFFF;
  --cloud-200: #F5ECED;  /* sampled: cloud white-pink */
  --cloud-300: #E7DEE4;
  --moon:      #DBDDE9;  /* sampled: moon */

  /* --- Rose / coral (Bella's harness) ------------------------------------ */
  --rose-100: #FDEBF1;
  --rose-200: #F9CFDC;
  --rose-300: #F0A3B9;
  --rose-400: #E4708E;
  --rose-500: #CE6C87;   /* sampled: harness rose */
  --rose-600: #C0405F;   /* accessible on cream */
  --rose-700: #A32E4A;

  /* --- Gold (star highlights) -------------------------------------------- */
  --gold-100: #FDF3DD;
  --gold-200: #FAE6BE;
  --gold-400: #E9BC5C;
  --gold-600: #9E7215;   /* accessible gold for text */

  /* --- Navy (readable text) ---------------------------------------------- */
  --navy-900: #16233F;
  --navy-800: #1E2E4F;
  --navy-700: #2C3C63;
  --navy-500: #556388;
  --navy-400: #7C88A6;
  --navy-300: #A3ACC3;

  /* --- Semantic ---------------------------------------------------------- */
  --ink:        var(--navy-900);
  --ink-soft:   var(--navy-500);
  --ink-faint:  var(--navy-400);
  --surface:    var(--cloud-100);
  --page:       var(--cream-100);
  --line:       #E8E1EE;
  --line-warm:  #EEE4D6;

  /* --- Gradients (all image-derived) ------------------------------------- */
  --grad-page:    linear-gradient(180deg, #EAF3F9 0%, #F6F1EA 34%, #FDF8EF 68%, #F7F3FB 100%);
  --grad-sky:     linear-gradient(160deg, #EAF3F9 0%, #DCE9F4 46%, #EFEBF9 100%);
  --grad-cream:   linear-gradient(155deg, #FFFDF9 0%, #FDF8EF 52%, #F9F2E5 100%);
  --grad-rose:    linear-gradient(135deg, #E4708E 0%, #C0405F 100%);
  --grad-rose-hi: linear-gradient(135deg, #EE87A2 0%, #CB4A69 100%);
  --grad-lav:     linear-gradient(150deg, #F6F4FC 0%, #EAE4F6 45%, #DCE9F4 100%);
  --grad-gold:    linear-gradient(135deg, #FAE6BE 0%, #E9BC5C 100%);
  --grad-footer:  linear-gradient(170deg, #DCE9F4 0%, #E4E5F5 45%, #EBE4F4 100%);
  --grad-glass:   linear-gradient(140deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.55) 100%);

  /* --- Typography (system stacks — no external font requests) ------------- */
  --font-display: "Segoe UI Variable Display", ui-rounded, "SF Pro Rounded",
                  "Hiragino Maru Gothic ProN", Nunito, "Trebuchet MS",
                  system-ui, -apple-system, sans-serif;
  --font-body:    system-ui, -apple-system, "Segoe UI Variable Text", "Segoe UI",
                  Roboto, "Helvetica Neue", Arial, sans-serif;

  --fs-xs:   .8125rem;
  --fs-sm:   .9063rem;
  --fs-base: 1rem;
  --fs-md:   1.0625rem;
  --fs-lg:   1.1875rem;
  --fs-xl:   1.375rem;
  --fs-2xl:  1.75rem;
  --fs-3xl:  2.125rem;

  --lh-tight: 1.1;
  --lh-snug:  1.3;
  --lh-body:  1.68;

  --fw-normal: 400;
  --fw-medium: 550;
  --fw-semi:   640;
  --fw-bold:   740;

  /* --- Spacing ----------------------------------------------------------- */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 2.75rem; --sp-8: 3.5rem;
  --sp-9: 4.5rem;  --sp-10: 6rem;

  --section-py: clamp(3.75rem, 8vw, 6.75rem);

  /* --- Widths ------------------------------------------------------------ */
  --shell-max:    1220px;
  --shell-narrow: 780px;
  --shell-pad:    clamp(1.125rem, 4vw, 2.5rem);
  --header-h:     70px;

  /* --- Radii ------------------------------------------------------------- */
  --r-sm: 10px;  --r-md: 16px;  --r-lg: 24px;
  --r-xl: 32px;  --r-2xl: 44px; --r-pill: 999px;

  /* --- Shadows (soft, layered, never harsh) ------------------------------ */
  --sh-xs:   0 1px 2px rgba(30, 46, 79, .05);
  --sh-sm:   0 2px 10px rgba(30, 46, 79, .06), 0 1px 2px rgba(30, 46, 79, .04);
  --sh-md:   0 10px 28px rgba(30, 46, 79, .08), 0 2px 6px rgba(30, 46, 79, .04);
  --sh-lg:   0 20px 50px rgba(30, 46, 79, .10), 0 4px 14px rgba(30, 46, 79, .05);
  --sh-xl:   0 34px 80px rgba(30, 46, 79, .14), 0 8px 22px rgba(30, 46, 79, .06);
  --sh-rose: 0 12px 30px rgba(192, 64, 95, .26);
  --sh-glow: 0 0 60px rgba(185, 212, 232, .55);
  --sh-top:  inset 0 1px 0 rgba(255, 255, 255, .75);

  /* --- Motion ------------------------------------------------------------ */
  --ease:     cubic-bezier(.22, .68, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t-fast: .16s;  --t-base: .28s;  --t-slow: .5s;  --t-reveal: .68s;

  --focus-ring: 3px solid var(--sky-700);
  --focus-off:  3px;

  color-scheme: light;
}


/* ==========================================================================
   02. RESET & BASE
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: -.022em;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a {
  color: var(--rose-600);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
a:hover { color: var(--rose-700); }

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

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

:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-off);
  border-radius: var(--r-sm);
}
:focus:not(:focus-visible) { outline: none; }

::selection { background: var(--sky-200); color: var(--navy-900); }


/* ==========================================================================
   03. UTILITIES
   ========================================================================== */

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px; left: var(--sp-4);
  z-index: 300;
  padding: var(--sp-3) var(--sp-5);
  background: var(--navy-900);
  color: #fff;
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-weight: var(--fw-semi);
  box-shadow: var(--sh-lg);
  transition: top var(--t-base) var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

[hidden] { display: none !important; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }


/* ==========================================================================
   04. LAYOUT, SECTIONS & CLOUD DIVIDERS
   ========================================================================== */

.shell {
  width: 100%;
  max-width: var(--shell-max);
  margin-inline: auto;
  padding-inline: var(--shell-pad);
}

.section {
  position: relative;
  padding-block: var(--section-py);
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.section-head {
  max-width: 780px;
  margin: 0 auto var(--sp-8);
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
  padding: .42rem 1rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
  color: var(--rose-600);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.section-label::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad-rose);
}

.section-title {
  font-size: clamp(1.8rem, 4.6vw, 2.9rem);
  margin-bottom: var(--sp-4);
}

.section-lead {
  font-size: var(--fs-md);
  color: var(--ink-soft);
  max-width: 62ch;
  margin-inline: auto;
}
.section-lead + .section-lead { margin-top: var(--sp-4); }
.section-lead-sm { font-size: var(--fs-base); }

/* --- Cloud dividers, echoing the clouds in the hero image --------------- */
.cloud-divider {
  position: absolute;
  left: 0; right: 0;
  z-index: 2;
  line-height: 0;
  pointer-events: none;
}
.cloud-divider svg {
  width: 100%;
  height: clamp(48px, 7vw, 96px);
  display: block;
}
.cloud-divider-bottom { bottom: -1px; color: var(--cream-100); }
.cloud-divider-top    { top: -1px; transform: scaleY(-1); color: var(--cream-100); }

/* Section-specific divider tints so transitions stay seamless. */
.section-why .cloud-divider-top    { color: var(--cream-100); }
.section-why .cloud-divider-bottom { color: var(--cream-100); }
.site-footer .cloud-divider-top    { color: var(--cream-100); }

/* --- Decorative star particles ----------------------------------------- */
.star {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--gold-200);
  clip-path: polygon(50% 0%, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0% 50%, 40% 40%);
  opacity: .55;
  animation: twinkle 5.5s var(--ease) infinite;
  pointer-events: none;
}
@keyframes twinkle {
  0%, 100% { opacity: .16; transform: scale(.65); }
  50%      { opacity: .8;  transform: scale(1); }
}


/* ==========================================================================
   05. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 52px;
  padding: .9rem 1.7rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  letter-spacing: -.008em;
  text-align: center;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-base) var(--ease),
              background-color var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              color var(--t-base) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-icon { width: 20px; height: 20px; flex: none; }
.btn-icon-end { transition: transform var(--t-base) var(--ease); }
.btn-lg { min-height: 60px; padding: 1.05rem 2.1rem; font-size: var(--fs-md); }

.btn-primary {
  background: var(--grad-rose);
  color: #fff;
  box-shadow: var(--sh-rose), var(--sh-top);
}
.btn-primary:hover {
  color: #fff;
  background: var(--grad-rose-hi);
  box-shadow: 0 18px 40px rgba(192, 64, 95, .32), var(--sh-top);
  transform: translateY(-2px);
}

.btn-glass {
  background: var(--grad-glass);
  color: var(--navy-900);
  border-color: rgba(255, 255, 255, .9);
  box-shadow: var(--sh-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-glass:hover {
  color: var(--navy-900);
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--sh-lg);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, .85);
  color: var(--navy-900);
  border-color: var(--line);
  box-shadow: var(--sh-xs);
}
.btn-outline:hover {
  color: var(--navy-900);
  border-color: var(--sky-400);
  box-shadow: var(--sh-sm);
}
.btn-outline[aria-expanded="true"] .btn-icon-end { transform: rotate(180deg); }

.btn-tiktok {
  background: var(--navy-900);
  color: #fff;
  box-shadow: var(--sh-md);
}
.btn-tiktok:hover { background: var(--navy-700); color: #fff; box-shadow: var(--sh-lg); transform: translateY(-2px); }


/* ==========================================================================
   06. HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              backdrop-filter var(--t-base) var(--ease);
}
/* Once scrolled, becomes a softly blurred cream-white bar. */
.site-header.is-stuck {
  background: rgba(253, 248, 239, .86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: rgba(232, 225, 238, .9);
  box-shadow: 0 6px 26px rgba(30, 46, 79, .07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: var(--header-h);
}

/* --- Wordmark ----------------------------------------------------------- */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: var(--fw-bold);
  letter-spacing: -.03em;
  white-space: nowrap;
}
.wordmark:hover { color: var(--navy-900); }
.wordmark-badge {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  flex: none;
  border-radius: 50%;
  background: var(--grad-sky);
  color: var(--sky-700);
  box-shadow: var(--sh-sm), var(--sh-top);
  border: 1px solid rgba(255, 255, 255, .8);
}
.wordmark-badge svg { width: 30px; height: 30px; }
.wordmark-bella  { color: var(--rose-600); }
.wordmark-cosmos { color: var(--navy-900); }

/* --- Navigation (mobile drawer by default) ------------------------------ */
.primary-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 99;
  display: grid;
  gap: var(--sp-5);
  padding: var(--sp-6) var(--shell-pad) var(--sp-7);
  background: var(--cream-50);
  border-bottom: 1px solid var(--line);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  box-shadow: var(--sh-xl);
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(-14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease),
              transform var(--t-base) var(--ease),
              visibility var(--t-base) var(--ease);
}
.primary-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-list { display: grid; gap: var(--sp-1); }

.nav-link {
  display: block;
  padding: .8rem .9rem;
  border-radius: var(--r-md);
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.nav-link:hover { background: var(--sky-100); color: var(--navy-900); }
.nav-link.is-active { color: var(--rose-600); background: var(--rose-100); }

.nav-social {
  display: flex;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
}
.social-dot {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sky-100);
  color: var(--navy-800);
  transition: background-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}
.social-dot svg { width: 20px; height: 20px; }
.social-dot:hover { background: var(--navy-900); color: #fff; transform: translateY(-2px); }

/* --- Hamburger ---------------------------------------------------------- */
.nav-toggle {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  flex: none;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, .95);
  box-shadow: var(--sh-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background-color var(--t-fast) var(--ease);
}
.nav-toggle:hover { background: #fff; }
.nav-toggle-bars { display: grid; gap: 5px; width: 20px; }
.nav-toggle-bars span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-900);
  transition: transform var(--t-base) var(--ease), opacity var(--t-fast) var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(30, 46, 79, .3);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}
.nav-scrim.is-visible { opacity: 1; }

body.nav-open { overflow: hidden; }


/* ==========================================================================
   07. HERO
   ========================================================================== */

.hero {
  position: relative;
  isolation: isolate;
  /* Pulled up under the transparent header so the image fills the viewport. */
  margin-top: calc(var(--header-h) * -1);
  padding-top: var(--header-h);
  scroll-margin-top: 0;
  background: var(--grad-sky);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-img {
  width: 100%;
  height: 100%;
  /* Bella sits in the right ~43% of the image; this keeps her face, ears,
     raised paw and harness in frame while cropping only empty sky. */
  object-fit: cover;
  object-position: 74% 62%;
}
/* Very light cream veil over the left side only, purely to guarantee text
   contrast. Bella herself is never covered. */
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
              rgba(253, 248, 239, .88) 0%,
              rgba(252, 246, 236, .72) 26%,
              rgba(250, 244, 235, .34) 46%,
              rgba(250, 244, 235, 0)   62%);
}

.starfield { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.star-a { top: 16%; left: 7%;  width: 13px; height: 13px; animation-delay: 0s; }
.star-b { top: 63%; left: 13%; background: var(--cloud-100); animation-delay: 1.1s; }
.star-c { top: 26%; left: 40%; width: 9px;  height: 9px;  animation-delay: 2s; }
.star-d { top: 74%; left: 33%; width: 8px;  height: 8px;  background: var(--lav-200); animation-delay: 3s; }
.star-e { top: 11%; left: 27%; width: 7px;  height: 7px;  animation-delay: 3.8s; }
.star-f { top: 45%; left: 20%; width: 6px;  height: 6px;  background: var(--cloud-100); animation-delay: 1.7s; }

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  min-height: clamp(540px, 78vh, 860px);
  padding-block: clamp(2.5rem, 6vw, 4rem) clamp(4.5rem, 9vw, 7rem);
}

/* From 1280px up the hero becomes the full-bleed overlay layout: the height
   follows the hero image's own 2752:1536 ratio (1 / 1.791 ≈ 56vw), so the
   whole horizontal image stays in frame with the text sitting on its clean
   left side.

   Below 1280px the viewport is too narrow to fit a 1.79:1 image AND a side
   text column without either cropping Bella or running text over her, so the
   stacked treatment further down is used instead. */
@media (min-width: 1280px) {
  .hero {
    display: grid;
    align-content: center;
    min-height: min(56vw, 940px);
  }
  .hero-inner {
    min-height: 0;
    padding-block: clamp(1.5rem, 3vw, 2.5rem) clamp(3.5rem, 7vw, 6.5rem);
  }
  /* Anchored right: any horizontal trim comes off the empty left-hand sky,
     never off Bella. The 66% vertical anchor trims mostly empty upper sky
     and keeps Bella's harness and front paws in frame. */
  .hero-img { object-position: 100% 66%; }
  .hero-copy { max-width: clamp(30rem, 40vw, 36rem); }
}

.hero-copy { max-width: 33rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: var(--sp-5);
  padding: .48rem 1.05rem .48rem .8rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255, 255, 255, .95);
  box-shadow: var(--sh-sm), var(--sh-top);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--navy-800);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .035em;
}
.hero-badge-star { width: 16px; height: 16px; flex: none; color: var(--gold-400); }

.hero-title {
  font-size: clamp(2.6rem, 7.4vw, 4.6rem);
  margin-bottom: var(--sp-5);
  letter-spacing: -.035em;
}
.hero-title-line { display: block; }
.hero-title-accent {
  background: linear-gradient(100deg, #C0405F 0%, #B4527E 42%, #3D5480 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: var(--fs-md);
  color: var(--navy-700);
  max-width: 34rem;
  margin-bottom: var(--sp-6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.hero-trust {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--navy-900);
  margin-bottom: var(--sp-3);
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.05rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .9);
  color: var(--navy-700);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
}
.hero-note-icon { width: 16px; height: 16px; flex: none; color: var(--rose-500); }


/* ==========================================================================
   08. REELS
   ========================================================================== */

.section-reels { background: var(--cream-100); }

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

.reel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.reel-card.is-hidden { display: none; }
.reel-card.is-revealing { animation: reelIn .34s var(--ease-out) both; }
@keyframes reelIn {
  from { opacity: 0; transform: translateY(16px) scale(.985); }
  to   { opacity: 1; transform: none; }
}

.reel-media {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--grad-sky);
  overflow: hidden;
}
.reel-media img,
.reel-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #101A2E;
}

/* Branded stand-in when a poster image has not been uploaded yet. */
.reel-fallback {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 118%, rgba(244, 207, 220, .5) 0%, transparent 60%),
    linear-gradient(168deg, #F4F9FC 0%, #EAF0F8 44%, #F2E9F3 100%);
}
.reel-fallback-mark {
  position: absolute;
  right: -12%;
  bottom: -6%;
  width: 74%;
  height: auto;
  color: var(--sky-400);
  opacity: .34;
  transform: rotate(-10deg);
}

.reel-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  background: linear-gradient(180deg, rgba(22, 35, 63, 0) 44%, rgba(22, 35, 63, .5) 100%);
  transition: background-color var(--t-base) var(--ease);
}
.reel-media.is-fallback .reel-play { background: none; }
.reel-play::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 35, 63, 0);
  transition: background-color var(--t-base) var(--ease);
}
.reel-play:hover::after { background: rgba(22, 35, 63, .1); }

.reel-play-btn {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: var(--rose-600);
  box-shadow: 0 10px 28px rgba(22, 35, 63, .26), var(--sh-top);
  transition: transform var(--t-base) var(--ease), background-color var(--t-base) var(--ease);
}
.reel-play-btn svg { width: 26px; height: 26px; margin-left: 3px; }
.reel-play:hover .reel-play-btn { transform: scale(1.09); background: #fff; }

.reel-platform {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .32rem .62rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .94);
  color: var(--navy-900);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  box-shadow: var(--sh-sm);
  backdrop-filter: blur(4px);
}
.reel-platform svg { width: 15px; height: 15px; }

.reel-category {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  padding: .32rem .7rem;
  border-radius: var(--r-pill);
  background: rgba(22, 35, 63, .8);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  backdrop-filter: blur(4px);
}

.reel-error {
  position: absolute;
  bottom: 12px; left: 12px;
  z-index: 3;
  padding: .32rem .7rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .94);
  color: var(--rose-700);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  box-shadow: var(--sh-sm);
}

.reel-body {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-4) calc(var(--sp-4) + 2px);
}
.reel-title { font-size: var(--fs-base); font-weight: var(--fw-bold); letter-spacing: -.01em; flex: 1; }
.reel-external {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  flex: none;
  border-radius: 50%;
  background: var(--sky-100);
  color: var(--sky-700);
}
.reel-external svg { width: 16px; height: 16px; }

@media (hover: hover) and (pointer: fine) {
  .reel-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
}

.reel-toggle-wrap { display: flex; justify-content: center; margin-top: var(--sp-6); }

.reel-footer {
  margin-top: var(--sp-7);
  display: grid;
  justify-items: center;
  gap: var(--sp-4);
  text-align: center;
}
.ai-disclosure {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.2rem;
  border-radius: var(--r-pill);
  background: var(--sky-100);
  border: 1px solid var(--sky-200);
  color: var(--navy-700);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}

.noscript-card {
  display: grid;
  justify-items: center;
  gap: var(--sp-4);
  padding: var(--sp-6);
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  color: var(--ink-soft);
}


/* ==========================================================================
   09. MEET BELLA
   ========================================================================== */

.section-meet { background: linear-gradient(180deg, var(--cream-100) 0%, var(--sky-50) 100%); }

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

.trait-card {
  padding: var(--sp-6) var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  text-align: center;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

.trait-art {
  display: grid;
  place-items: center;
  width: 76px; height: 76px;
  margin: 0 auto var(--sp-4);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm), var(--sh-top);
}
.trait-art svg { width: 42px; height: 42px; }
.trait-art-sky      { background: var(--sky-100);   color: var(--sky-700); }
.trait-art-gold     { background: var(--gold-100);  color: var(--gold-600); }
.trait-art-rose     { background: var(--rose-100);  color: var(--rose-600); }
.trait-art-lavender { background: var(--lav-100);   color: var(--lav-700); }

.trait-title { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.trait-text  { font-size: var(--fs-sm); color: var(--ink-soft); }

@media (hover: hover) and (pointer: fine) {
  .trait-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
}


/* ==========================================================================
   10. REAL BELLA
   ========================================================================== */

.section-real { background: linear-gradient(180deg, var(--sky-50) 0%, var(--cream-100) 62%); }

.promise {
  position: relative;
  max-width: 740px;
  margin: 0 auto var(--sp-8);
  padding: var(--sp-8) var(--sp-5) var(--sp-6);
  text-align: center;
  background: var(--grad-cream);
  border: 1px solid var(--line-warm);
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-md);
}
.promise-constellation {
  position: absolute;
  top: -26px; left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad-sky);
  color: var(--sky-700);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--sh-md);
}
.promise-constellation svg { width: 40px; height: 40px; }
.promise blockquote { margin: 0; }
.promise blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.4vw, 1.9rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  letter-spacing: -.025em;
  color: var(--navy-900);
}
.promise figcaption {
  margin-top: var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--rose-600);
}

/* --- Editorial photo gallery -------------------------------------------- */
.photo-gallery {
  --photo-cols: 4;
  display: grid;
  grid-template-columns: repeat(min(var(--photo-cols), 2), minmax(0, 1fr));
  gap: clamp(.75rem, 2.4vw, 1.25rem);
  margin-inline: auto;
}
.photo-gallery[data-empty="true"] { display: none; }

.photo-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--sky-100);
  box-shadow: var(--sh-md);
  cursor: zoom-in;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 32%;
  transition: transform var(--t-slow) var(--ease);
}
.photo-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--sp-7) var(--sp-4) var(--sp-3);
  background: linear-gradient(180deg, transparent, rgba(22, 35, 63, .78));
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  text-align: left;
  line-height: 1.35;
}
.photo-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: .28rem .62rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .93);
  color: var(--navy-900);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  box-shadow: var(--sh-xs);
}

@media (hover: hover) and (pointer: fine) {
  .photo-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
  .photo-card:hover img { transform: scale(1.05); }
}

.photo-note {
  margin-top: var(--sp-4);
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--ink-faint);
}

/* --- Story card ---------------------------------------------------------- */
.story-card {
  position: relative;
  max-width: 780px;
  margin: var(--sp-8) auto 0;
  padding: var(--sp-7) var(--sp-5) var(--sp-6);
  text-align: center;
  background: var(--grad-lav);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-md);
}
.story-art {
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  margin: 0 auto var(--sp-4);
  border-radius: 50%;
  background: rgba(255, 255, 255, .85);
  color: var(--rose-500);
  box-shadow: var(--sh-sm), var(--sh-top);
}
.story-art svg { width: 36px; height: 36px; }
.story-card p {
  font-size: var(--fs-md);
  color: var(--navy-700);
  max-width: 58ch;
  margin: 0 auto var(--sp-6);
}


/* ==========================================================================
   11. CONTENT PILLARS
   ========================================================================== */

.section-pillars { background: var(--cream-100); }

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

.pillar-card {
  position: relative;
  padding: var(--sp-6) var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.pillar-card::before {
  content: "";
  position: absolute;
  top: -70px; right: -70px;
  width: 180px; height: 180px;
  border-radius: 50%;
  opacity: .55;
  transition: transform var(--t-slow) var(--ease);
}
.pillar-rose::before     { background: var(--rose-100); }
.pillar-sky::before      { background: var(--sky-100); }
.pillar-gold::before     { background: var(--gold-100); }
.pillar-lavender::before { background: var(--lav-100); }

.pillar-art {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  margin-bottom: var(--sp-4);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--sh-sm);
}
.pillar-art svg { width: 38px; height: 38px; }
.pillar-rose     .pillar-art { color: var(--rose-600); }
.pillar-sky      .pillar-art { color: var(--sky-700); }
.pillar-gold     .pillar-art { color: var(--gold-600); }
.pillar-lavender .pillar-art { color: var(--lav-700); }

.pillar-title { position: relative; font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.pillar-text  { position: relative; font-size: var(--fs-sm); color: var(--ink-soft); }

@media (hover: hover) and (pointer: fine) {
  .pillar-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
  .pillar-card:hover::before { transform: scale(1.28); }
}


/* ==========================================================================
   12. WHY BELLA WORKS
   ========================================================================== */

.section-why {
  position: relative;
  isolation: isolate;
  background: var(--grad-sky);
  padding-block: calc(var(--section-py) + 2rem);
  overflow: hidden;
}

.why-sky { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.why-moon {
  position: absolute;
  top: 12%; right: 8%;
  width: clamp(78px, 11vw, 140px);
  opacity: .85;
  filter: drop-shadow(0 10px 30px rgba(30, 46, 79, .12));
  animation: floatSlow 9s var(--ease) infinite;
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.star-g { top: 22%; left: 12%; width: 14px; height: 14px; animation-delay: .4s; }
.star-h { top: 66%; left: 6%;  width: 10px; height: 10px; background: var(--cloud-100); animation-delay: 2.2s; }
.star-i { top: 78%; right: 14%; width: 11px; height: 11px; animation-delay: 3.4s; }

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

.benefit-card {
  padding: var(--sp-6) var(--sp-5);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm), var(--sh-top);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.benefit-num {
  display: block;
  margin-bottom: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  letter-spacing: -.04em;
  background: linear-gradient(135deg, #C0405F 0%, #3D5480 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.benefit-title { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.benefit-text  { font-size: var(--fs-sm); color: var(--ink-soft); }

@media (hover: hover) and (pointer: fine) {
  .benefit-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
}


/* ==========================================================================
   13. SOCIAL CARDS
   ========================================================================== */

.section-social { background: var(--cream-100); }

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

.social-card {
  display: grid;
  justify-items: center;
  gap: var(--sp-2);
  height: 100%;
  padding: var(--sp-6) var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  color: var(--navy-900);
  text-align: center;
  transition: transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease);
}
.social-card:hover { color: var(--navy-900); }

.social-card-icon {
  display: grid;
  place-items: center;
  width: 66px; height: 66px;
  margin-bottom: var(--sp-2);
  border-radius: var(--r-lg);
  color: #fff;
  box-shadow: var(--sh-md);
  transition: transform var(--t-base) var(--ease);
}
.social-card-icon svg { width: 32px; height: 32px; }

.social-tiktok    .social-card-icon { background: #14161C; }
.social-instagram .social-card-icon { background: linear-gradient(135deg, #F9CE34 0%, #EE2A7B 50%, #6228D7 100%); }
.social-facebook  .social-card-icon { background: #1877F2; }
.social-youtube   .social-card-icon { background: #E62117; }

/* Each card keeps a soft BellaCosmos-palette wash so the row stays on-brand. */
.social-tiktok    { background: linear-gradient(170deg, #FFFFFF 0%, #F2F4F8 100%); }
.social-instagram { background: linear-gradient(170deg, #FFFFFF 0%, #FCEFF4 100%); }
.social-facebook  { background: linear-gradient(170deg, #FFFFFF 0%, #EDF4FC 100%); }
.social-youtube   { background: linear-gradient(170deg, #FFFFFF 0%, #FDF0EE 100%); }

.social-card-name { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: var(--fw-bold); }
.social-card-handle { font-size: var(--fs-xs); color: var(--ink-faint); }
.social-card-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: var(--sp-3);
  padding: .62rem 1.15rem;
  min-height: 44px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  transition: background-color var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.social-card-cta svg { width: 16px; height: 16px; transition: transform var(--t-base) var(--ease); }

@media (hover: hover) and (pointer: fine) {
  .social-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: var(--sky-200); }
  .social-card:hover .social-card-icon { transform: scale(1.07); }
  .social-card:hover .social-card-cta { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
  .social-card:hover .social-card-cta svg { transform: translateX(3px); }
}

.social-outro {
  margin-top: var(--sp-7);
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  color: var(--navy-700);
}


/* ==========================================================================
   14. BRAND PARTNERSHIPS — light sky / lavender / cream, never dark
   ========================================================================== */

.section-brands {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 90% 60% at 82% 8%, rgba(244, 207, 220, .38) 0%, transparent 62%),
    linear-gradient(158deg, #EFEBF9 0%, #E2EBF6 42%, #FDF8EF 100%);
  overflow: hidden;
}
.brands-sky { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.star-j { top: 14%; left: 8%;  width: 12px; height: 12px; animation-delay: .8s; }
.star-k { top: 72%; left: 4%;  width: 9px;  height: 9px;  background: var(--cloud-100); animation-delay: 2.6s; }
.star-l { top: 30%; right: 6%; width: 11px; height: 11px; animation-delay: 4s; }

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

.partner-card {
  padding: var(--sp-6) var(--sp-5);
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm), var(--sh-top);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.partner-art {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin-bottom: var(--sp-4);
  border-radius: var(--r-md);
  background: var(--grad-sky);
  color: var(--sky-700);
  box-shadow: var(--sh-xs);
}
.partner-art svg { width: 28px; height: 28px; }
.partner-title { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.partner-text  { font-size: var(--fs-sm); color: var(--ink-soft); }

@media (hover: hover) and (pointer: fine) {
  .partner-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
}

.fit-panel {
  margin-top: var(--sp-8);
  padding: var(--sp-7) var(--sp-5);
  background: rgba(255, 255, 255, .66);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-sm);
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.fit-title { font-size: var(--fs-xl); margin-bottom: var(--sp-5); }
.fit-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-2);
}
.fit-list li {
  padding: .55rem 1.05rem;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
  color: var(--navy-700);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}

.brand-cta {
  margin-top: var(--sp-8);
  display: grid;
  justify-items: center;
  gap: var(--sp-5);
  text-align: center;
}
.brand-cta-text {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  color: var(--navy-800);
  max-width: 46ch;
}
.brand-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
  width: 100%;
}
.brand-cta-actions .btn { flex: 1 1 240px; max-width: 320px; }


/* ==========================================================================
   15. AUDIENCE & PERFORMANCE
   ========================================================================== */

.section-stats { background: var(--cream-100); }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: clamp(.75rem, 2vw, 1.25rem);
  margin-bottom: var(--sp-7);
}
.stat-card {
  padding: var(--sp-5) var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  text-align: center;
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.5vw, 2.1rem);
  font-weight: var(--fw-bold);
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--rose-600);
  margin-bottom: var(--sp-1);
}
.stat-value-text { font-size: clamp(1.05rem, 3vw, 1.3rem); color: var(--navy-900); }
.stat-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.stat-empty {
  max-width: 62ch;
  margin: 0 auto var(--sp-7);
  padding: var(--sp-6) var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  text-align: center;
  font-size: var(--fs-md);
  color: var(--ink-soft);
}

.position-panel {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--sp-6) var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
}
.position-title { font-size: var(--fs-xl); margin-bottom: var(--sp-4); text-align: center; }
.position-list { display: grid; gap: var(--sp-3); }
.position-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--navy-700);
}
.position-list svg { width: 21px; height: 21px; flex: none; color: var(--sky-700); margin-top: 1px; }
.position-note {
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
  font-size: var(--fs-xs);
  color: var(--ink-faint);
  text-align: center;
}

.mediakit-panel {
  display: grid;
  gap: var(--sp-5);
  align-items: center;
  max-width: 800px;
  margin: var(--sp-6) auto 0;
  padding: var(--sp-6) var(--sp-5);
  background: var(--grad-lav);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  text-align: center;
}
.mediakit-title { font-size: var(--fs-xl); margin-bottom: var(--sp-2); }
.mediakit-text  { font-size: var(--fs-sm); color: var(--ink-soft); }
.mediakit-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-3); }


/* ==========================================================================
   16. BRAND SAFETY
   ========================================================================== */

.section-safety { background: linear-gradient(180deg, var(--cream-100) 0%, var(--sky-50) 100%); }

.safety-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: var(--sp-7) var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-md);
}
.safety-head {
  display: grid;
  justify-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  text-align: center;
}
.safety-art {
  display: grid;
  place-items: center;
  width: 74px; height: 74px;
  border-radius: var(--r-lg);
  background: var(--sky-100);
  color: var(--sky-700);
  box-shadow: var(--sh-sm), var(--sh-top);
}
.safety-art svg { width: 42px; height: 42px; }

.safety-list { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
.safety-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: .7rem .9rem;
  border-radius: var(--r-md);
  background: var(--sky-50);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--navy-700);
}
.safety-list svg { width: 21px; height: 21px; flex: none; color: var(--rose-500); margin-top: 1px; }

.safety-note {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  max-width: 60ch;
  margin-inline: auto;
}


/* ==========================================================================
   17. CONTACT
   ========================================================================== */

.section-contact { background: var(--sky-50); }

.contact-card {
  position: relative;
  max-width: 740px;
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-5) var(--sp-7);
  background: var(--grad-cream);
  border: 1px solid var(--line-warm);
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-lg);
  display: grid;
  justify-items: center;
  gap: var(--sp-5);
  text-align: center;
}
.contact-constellation {
  position: absolute;
  top: -26px; left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad-sky);
  color: var(--sky-700);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--sh-md);
}
.contact-constellation svg { width: 40px; height: 40px; }

.contact-email-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
}
.contact-email {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3.4vw, 1.35rem);
  font-weight: var(--fw-bold);
  color: var(--navy-900);
  letter-spacing: -.01em;
  word-break: break-word;
}
.contact-email:hover { color: var(--rose-600); }

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 44px;
  padding: .55rem 1.05rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line-warm);
  color: var(--navy-700);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.copy-btn:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.copy-btn .btn-icon { width: 17px; height: 17px; }
.copy-btn.is-copied { background: var(--sky-100); border-color: var(--sky-300); color: var(--sky-700); }

.copy-status {
  min-height: 1.4em;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--sky-700);
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-2);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line-warm);
  width: 100%;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 44px;
  padding: .55rem 1.05rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line-warm);
  color: var(--navy-900);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  transition: background-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}
.social-pill svg { width: 17px; height: 17px; }
.social-pill:hover { background: var(--navy-900); color: #fff; transform: translateY(-2px); }


/* ==========================================================================
   18. FOOTER — soft sky-blue to lavender, never dark
   ========================================================================== */

.site-footer {
  position: relative;
  background: var(--grad-footer);
  color: var(--navy-700);
  padding-block: calc(var(--sp-9) + 1rem) var(--sp-6);
  font-size: var(--fs-sm);
}

.footer-top {
  display: grid;
  gap: var(--sp-7);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(30, 46, 79, .12);
}

.footer-brand .wordmark-footer { font-size: 1.3rem; margin-bottom: var(--sp-4); }
.footer-brand .wordmark-badge { background: rgba(255, 255, 255, .82); }

.footer-tag {
  font-family: var(--font-display);
  font-weight: var(--fw-semi);
  color: var(--navy-800);
  margin-bottom: var(--sp-4);
  max-width: 34ch;
}
.footer-contact a { color: var(--navy-700); }
.footer-contact a:hover { color: var(--rose-700); text-decoration: underline; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-6);
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose-600);
  margin-bottom: var(--sp-3);
}
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a { color: var(--navy-700); }
.footer-col a:hover { color: var(--navy-900); }

.footer-transparency {
  display: grid;
  gap: var(--sp-2);
  padding-block: var(--sp-6);
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--navy-500);
  border-bottom: 1px solid rgba(30, 46, 79, .12);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-5);
}
.footer-copy { font-size: var(--fs-xs); color: var(--navy-500); }

.to-top {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 44px;
  padding: .55rem 1.1rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(255, 255, 255, .95);
  color: var(--navy-800);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  box-shadow: var(--sh-xs);
  transition: background-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.to-top svg { width: 17px; height: 17px; }
.to-top:hover { background: #fff; transform: translateY(-2px); }


/* ==========================================================================
   19. LIGHTBOX
   ========================================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: var(--sp-4);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}
.lightbox.is-open { opacity: 1; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 35, 63, .86);
  backdrop-filter: blur(8px);
  cursor: zoom-out;
}

.lightbox-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  width: 100%;
  max-width: 720px;
  max-height: 100%;
}

.lightbox-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  min-height: 0;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: calc(100dvh - 12rem);
  width: auto;
  border-radius: var(--r-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  background: var(--navy-900);
}
.lightbox-figure figcaption {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: rgba(255, 255, 255, .94);
  text-align: center;
  padding-inline: var(--sp-4);
}

.lightbox-btn {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  backdrop-filter: blur(6px);
  transition: background-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.lightbox-btn svg { width: 22px; height: 22px; }
.lightbox-btn:hover { background: rgba(255, 255, 255, .3); transform: scale(1.06); }
.lightbox-btn:focus-visible { outline-color: #fff; }

.lightbox-close { top: -4px; right: 0; }
.lightbox-prev  { left: -4px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: -4px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.06); }

.lightbox-counter {
  flex: none;
  margin: 0;
  padding: .3rem .85rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .88);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  white-space: nowrap;
}

body.lightbox-open { overflow: hidden; }


/* ==========================================================================
   20. LEGAL PAGES & 404
   ========================================================================== */

.page-hero {
  position: relative;
  padding-block: clamp(2.75rem, 7vw, 5rem) var(--sp-6);
  text-align: center;
  background: var(--grad-sky);
  scroll-margin-top: var(--header-h);
}
.page-hero .section-title { margin-bottom: var(--sp-3); }
.page-updated { font-size: var(--fs-xs); color: var(--ink-faint); }

.legal-body {
  max-width: var(--shell-narrow);
  margin: 0 auto;
  padding-block: var(--sp-8) var(--sp-9);
}
.legal-card {
  padding: clamp(1.5rem, 5vw, 2.75rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
}
.legal-card h2 {
  font-size: var(--fs-xl);
  margin-top: var(--sp-7);
  margin-bottom: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
}
.legal-card > h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-card h3 { font-size: var(--fs-md); margin-top: var(--sp-5); margin-bottom: var(--sp-2); }
.legal-card p, .legal-card li { color: var(--ink-soft); font-size: var(--fs-sm); }
.legal-card p + p { margin-top: var(--sp-3); }
.legal-card ul {
  list-style: disc;
  padding-left: 1.35rem;
  margin-top: var(--sp-3);
  display: grid;
  gap: .45rem;
}
.legal-card ul li::marker { color: var(--sky-400); }
.legal-card dl { margin: var(--sp-3) 0 0; display: grid; gap: var(--sp-3); }
.legal-card dt { font-weight: var(--fw-semi); color: var(--navy-900); font-size: var(--fs-sm); }
.legal-card dd { margin: 0; color: var(--ink-soft); font-size: var(--fs-sm); }

/* Highly visible so it can never be shipped by accident. */
.placeholder {
  display: inline-block;
  padding: .15rem .55rem;
  border-radius: var(--r-sm);
  background: var(--gold-100);
  border: 1px dashed var(--gold-600);
  color: var(--gold-600);
  font-family: ui-monospace, "Cascadia Code", "SF Mono", Menlo, Consolas, monospace;
  font-size: .82em;
  font-weight: var(--fw-semi);
}

.notice {
  display: grid;
  gap: var(--sp-2);
  padding: var(--sp-5);
  margin-bottom: var(--sp-6);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--sky-50);
}
.notice-warning { background: #FFF7E6; border-color: #E7C67C; }
.notice-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--navy-900);
}
.notice p { font-size: var(--fs-sm); color: var(--ink-soft); }

/* --- 404 ---------------------------------------------------------------- */
.error-page {
  position: relative;
  min-height: calc(100dvh - var(--header-h));
  display: grid;
  place-items: center;
  padding-block: var(--sp-8);
  text-align: center;
  background: var(--grad-sky);
  overflow: hidden;
}
.error-inner { position: relative; z-index: 2; display: grid; justify-items: center; gap: var(--sp-5); max-width: 640px; }
.error-figure {
  width: min(420px, 84vw);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  border: 4px solid rgba(255, 255, 255, .85);
}
.error-figure img { width: 100%; height: auto; display: block; }
.error-code {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 14vw, 5.5rem);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: -.05em;
  background: linear-gradient(120deg, #C0405F 0%, #B4527E 48%, #3D5480 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.error-text { font-size: var(--fs-md); color: var(--navy-700); max-width: 48ch; }
.error-links { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-3); }


/* ==========================================================================
   21. MOTION & REVEALS
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-reveal) var(--ease-out), transform var(--t-reveal) var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* Hero entrance — staggered, gentle, runs once on load. */
[data-anim] { animation: heroIn .82s var(--ease-out) both; }
[data-anim="1"] { animation-delay: .05s; }
[data-anim="2"] { animation-delay: .14s; }
[data-anim="3"] { animation-delay: .24s; }
[data-anim="4"] { animation-delay: .34s; }
[data-anim="5"] { animation-delay: .44s; }
[data-anim="6"] { animation-delay: .52s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.no-js [data-anim] { animation: none; opacity: 1; }


/* ==========================================================================
   22. RESPONSIVE BREAKPOINTS
   Mobile-first: everything above covers ~360px upward.
   ========================================================================== */

/* --- MOBILE HERO (< 768px) ---------------------------------------------
   The image becomes its own responsive block so Bella is never badly cropped,
   with the headline in a cream panel that curves up over the image.
   ----------------------------------------------------------------------- */
@media (max-width: 1279.98px) {
  .hero {
    margin-top: calc(var(--header-h) * -1);
    padding-top: 0;
    background: var(--cream-100);
  }
  .hero-media {
    position: relative;
    inset: auto;
    z-index: 0;
    aspect-ratio: 4 / 3;
    width: 100%;
  }
  .hero-img {
    /* Keeps Bella's face, ears and raised paw in frame on narrow screens. */
    object-position: 84% 48%;
  }
  .hero-scrim {
    /* Soft fade into the cream panel rather than a hard edge. */
    background: linear-gradient(180deg,
                rgba(253, 248, 239, 0) 62%,
                rgba(253, 248, 239, .55) 84%,
                rgba(253, 248, 239, .95) 100%);
  }
  .starfield { display: none; }

  .hero-inner {
    position: relative;
    z-index: 3;
    min-height: 0;
    margin-top: -34px;
    padding-block: var(--sp-6) var(--sp-8);
    background: var(--cream-100);
    border-radius: var(--r-2xl) var(--r-2xl) 0 0;
    box-shadow: 0 -18px 40px rgba(30, 46, 79, .06);
  }
  .hero-copy { max-width: none; text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-title { font-size: clamp(2.3rem, 11vw, 3.1rem); }
}

/* Large phones, tablets and small laptops: a wider, shorter image block reads
   better than the 4:3 crop used on small phones. Bella stays fully in frame. */
@media (min-width: 600px) and (max-width: 1279.98px) {
  .hero-media { aspect-ratio: 16 / 9; }
  .hero-img { object-position: 74% 50%; }
  .hero-inner { margin-top: -46px; }
  .hero-copy { max-width: 40rem; margin-inline: auto; }
  .hero-title { font-size: clamp(2.8rem, 6vw, 3.9rem); }
}

/* --- ≥ 560px ------------------------------------------------------------ */
@media (min-width: 560px) {
  .reel-grid,
  .trait-grid,
  .pillar-grid,
  .social-grid,
  .safety-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .mediakit-panel { grid-template-columns: 1fr auto; text-align: left; }
  .mediakit-panel .mediakit-actions { justify-content: flex-end; }

  .hero-actions .btn { flex: 0 1 auto; }
}

/* --- ≥ 768px: tablet ---------------------------------------------------- */
@media (min-width: 768px) {
  :root { --header-h: 78px; }

  .photo-gallery {
    grid-template-columns: repeat(var(--photo-cols), minmax(0, 1fr));
    max-width: min(100%, calc(var(--photo-cols) * 300px));
  }
  .photo-card img { aspect-ratio: 3 / 4; }

  .benefit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .footer-top { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.6fr); align-items: start; }
  .footer-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .safety-panel { padding: var(--sp-8) var(--sp-7); }
  .contact-card { padding: var(--sp-9) var(--sp-7) var(--sp-8); }
  .story-card   { padding: var(--sp-8) var(--sp-7) var(--sp-7); }
  .fit-panel    { padding: var(--sp-7) var(--sp-6); }
}

/* --- ≥ 1024px: desktop -------------------------------------------------- */
@media (min-width: 1024px) {
  :root { --header-h: 84px; }

  .nav-toggle { display: none; }
  .nav-scrim  { display: none !important; }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: var(--sp-5);
    padding: 0;
    max-height: none;
    overflow: visible;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-list { display: flex; align-items: center; gap: var(--sp-1); }
  .nav-link {
    padding: .5rem .75rem;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semi);
    border-radius: var(--r-pill);
  }
  .nav-social {
    padding-top: 0;
    border-top: 0;
    padding-left: var(--sp-4);
    border-left: 1px solid rgba(30, 46, 79, .14);
    gap: var(--sp-1);
  }
  .social-dot { width: 38px; height: 38px; background: transparent; color: var(--navy-800); }
  .social-dot svg { width: 18px; height: 18px; }

  .reel-grid,
  .trait-grid,
  .pillar-grid,
  .social-grid,
  .partner-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .reel-title { font-size: var(--fs-sm); }
}

/* --- ≥ 1200px ----------------------------------------------------------- */
@media (min-width: 1200px) {
  .nav-link { font-size: var(--fs-base); padding: .55rem .9rem; }
  .reel-title { font-size: var(--fs-base); }
}

/* --- ≥ 1440px ----------------------------------------------------------- */
@media (min-width: 1440px) {
  :root { --shell-max: 1280px; }
  .hero-inner { min-height: clamp(600px, 76vh, 880px); }
}

/* --- Very wide screens ---------------------------------------------------
   On ultrawide monitors the hero box becomes much wider than the image's own
   ratio, so more height is trimmed. Anchoring lower keeps Bella's harness and
   front paws visible and takes the loss from the empty upper sky instead. */
@media (min-width: 1800px) {
  .hero-img { object-position: 100% 74%; }
}


/* ==========================================================================
   23. REDUCED MOTION, FORCED COLORS, PRINT
   ========================================================================== */

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

  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal { opacity: 1; transform: none; }
  [data-anim] { animation: none; opacity: 1; }
  .star { animation: none; opacity: .4; }
  .why-moon { animation: none; }

  .reel-card:hover, .trait-card:hover, .pillar-card:hover,
  .benefit-card:hover, .social-card:hover, .partner-card:hover,
  .photo-card:hover, .btn:hover { transform: none; }
  .photo-card:hover img { transform: none; }
}

@media (forced-colors: active) {
  .btn, .social-card, .reel-card, .photo-card,
  .trait-card, .pillar-card, .partner-card, .benefit-card {
    border: 1px solid CanvasText;
  }
  .hero-title-accent, .benefit-num, .error-code { color: CanvasText; }
  .hero-scrim, .star, .why-sky, .brands-sky { display: none; }
}

@media print {
  .site-header, .nav-scrim, .to-top, .lightbox,
  .reel-play, .starfield, .why-sky, .brands-sky, .cloud-divider { display: none !important; }

  body { background: #fff; color: #000; }
  .section { padding-block: 1.5rem; page-break-inside: avoid; }
  .reveal, [data-anim] { opacity: 1; transform: none; animation: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}
