/* ============================================================
   MAMA BLOOM — warm, soulful maternal-wellness experience
   Morning light, not starlight.
   ============================================================ */

@font-face {
  font-family: "Grandeur";
  src: url("../assets/fonts/grandeur.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

:root {
  /* — warm palette — */
  --cream:       #fbf6f0;
  --cream-2:     #f7ece4;
  --blush:       #f6e6e2;
  --blush-2:     #efd2d4;
  --blush-3:     #e7b9c2;
  --plum:        #5b1f3a;
  --plum-deep:   #4a1730;
  --plum-rich:   #3a1226;
  --rose:        #d4849a;
  --rose-deep:   #b85f75;
  --gold:        #e0ad6e;
  --gold-soft:   #f4d8a8;
  --sage:        #93a386;

  --ink:         #4a1730;            /* text on light */
  --ink-soft:    rgba(74,23,48,.70);
  --ink-faint:   rgba(74,23,48,.72);
  --oncream:     #f6e7df;            /* text on deep */
  --oncream-soft: rgba(246,231,223,.74);
  --oncream-faint: rgba(246,231,223,.72);

  --font-display: "Grandeur", "Fraunces", Georgia, serif;
  --font-serif:   "Fraunces", Georgia, serif;
  --font-sans:    "Hanken Grotesk", system-ui, sans-serif;

  --fs-hero:    clamp(2.9rem, 8.2vw, 7.4rem);
  --fs-h2:      clamp(2rem, 4.8vw, 4.2rem);
  --fs-statement: clamp(1.9rem, 5.2vw, 4.6rem);
  --fs-h3:      clamp(1.3rem, 2.4vw, 1.85rem);
  --fs-h4:      clamp(1.12rem, 1.7vw, 1.45rem);
  --fs-lede:    clamp(1.18rem, 2vw, 1.7rem);
  --fs-body:    clamp(1.02rem, 1.15vw, 1.16rem);

  --shell:      min(1280px, 90vw);
  --ease:       cubic-bezier(.22,.61,.36,1);
  --ease-out:   cubic-bezier(.16,1,.3,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans); font-size: var(--fs-body); line-height: 1.6;
  color: var(--ink); background: var(--cream); overflow-x: hidden;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--rose); color: #2a0a18; }

.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none; opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none; } html { scroll-behavior: auto; } }

/* helpers */
.eyebrow { font-family: var(--font-sans); font-weight: 600; font-size: clamp(.7rem,.9vw,.8rem); letter-spacing: .26em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 1.2rem; }
.h2 { font-family: var(--font-serif); font-weight: 340; font-size: var(--fs-h2); line-height: 1.05; letter-spacing: -.015em; color: var(--ink); }
.body { font-size: var(--fs-lede); line-height: 1.5; color: var(--ink-soft); font-weight: 300; }
.center { text-align: center; }
.measure { max-width: 42ch; margin-inline: auto; }
em { font-style: italic; font-family: var(--font-display); color: var(--rose-deep); }
.skip { position: absolute; left: -999px; top: 0; z-index: 9999; background: var(--plum); color: var(--cream); padding: .8rem 1.2rem; border-radius: 0 0 12px 0; }
.skip:focus { left: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* deep (warm dark) sections invert text colors */
.deep { background: linear-gradient(165deg, var(--plum) 0%, var(--plum-rich) 100%); color: var(--oncream); }
.deep .h2, .deep .statement, .deep h3, .deep h4 { color: var(--cream); }
.deep .body, .deep p { color: var(--oncream-soft); }
.deep .eyebrow { color: var(--gold-soft); }
.deep em { color: var(--rose); }

/* soft (light blush) sections */
.soft { background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%); }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-family: var(--font-sans); font-weight: 600; font-size: .98rem; padding: .92rem 1.8rem; border-radius: 100px; cursor: pointer; transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease); border: 1px solid transparent; white-space: nowrap; }
.btn--solid { background: linear-gradient(120deg, var(--rose) 0%, var(--rose-deep) 100%); color: #fff; box-shadow: 0 14px 38px -14px rgba(184,95,117,.7); }
.btn--solid:hover { transform: translateY(-3px); box-shadow: 0 22px 54px -16px rgba(184,95,117,.85); }
.btn--ghost { background: rgba(91,31,58,.05); color: var(--plum); border-color: rgba(91,31,58,.22); }
.btn--ghost:hover { background: rgba(91,31,58,.1); transform: translateY(-3px); }
.btn--pill { background: var(--plum); color: var(--cream); padding: .58rem 1.25rem; font-size: .88rem; }
.btn--pill:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -12px rgba(91,31,58,.5); }
.btn--lg { padding: 1.15rem 2.6rem; font-size: 1.06rem; }
.btn--store { position: relative; overflow: hidden; }
.btn__apple { width: 18px; height: 18px; flex: none; margin-top: -2px; }
.btn--lg .btn__apple { width: 20px; height: 20px; }
.btn--store::after { content: ""; position: absolute; top: 0; left: -65%; width: 45%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent); transform: skewX(-18deg); animation: btnShimmer 5s ease-in-out infinite; pointer-events: none; }
@keyframes btnShimmer { 0%,16% { left: -65%; } 36%,100% { left: 135%; } }
@media (prefers-reduced-motion: reduce) { .btn--store::after { display: none; } }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 1.4rem clamp(1.1rem,5vw,4rem); transition: padding .5s var(--ease), background .5s var(--ease); }
.nav.is-stuck { padding-top: .8rem; padding-bottom: .8rem; background: rgba(251,246,240,.78); backdrop-filter: blur(16px) saturate(1.3); border-bottom: 1px solid rgba(91,31,58,.08); }
.nav__brand { display: flex; align-items: center; gap: .6rem; }
.nav__mark img { width: auto; height: 34px; filter: drop-shadow(0 2px 6px rgba(91,31,58,.20)); transition: transform .5s var(--ease); }
.nav__brand:hover .nav__mark img { transform: scale(1.07); }
.nav__word { font-family: var(--font-display); font-size: 1.4rem; color: var(--plum); white-space: nowrap; }
.nav__links { display: flex; gap: 2rem; }
.nav__links a { font-size: .92rem; font-weight: 500; color: var(--ink-soft); position: relative; transition: color .3s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px; background: var(--rose-deep); transition: width .4s var(--ease); }
.nav__links a:hover { color: var(--plum); }
.nav__links a:hover::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 1rem; }
.lang { display: inline-flex; border: 1px solid rgba(91,31,58,.2); border-radius: 100px; overflow: hidden; }
.lang__btn { font-family: var(--font-sans); font-weight: 600; font-size: .76rem; letter-spacing: .04em; padding: .4rem .68rem; background: transparent; color: var(--ink-faint); border: none; cursor: pointer; transition: background .3s, color .3s; }
.lang__btn.is-active { background: var(--plum); color: var(--cream); }
@media (max-width: 860px){ .nav__links { display: none; } }

/* HERO — photo-led, calm, soulful */
.hero { position: relative; min-height: 100svh; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(2rem,5vw,5.5rem); padding: 8rem clamp(1.4rem,6vw,5.5rem) 4rem; overflow: hidden;
  background: radial-gradient(135% 115% at 100% -10%, #fdf7f1 0%, #f8e8e3 38%, #f0d0d2 100%); }
.hero__petals { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
@media (prefers-reduced-motion: reduce) { .hero__petals { display: none; } }
.hero__content { max-width: 600px; position: relative; z-index: 2; }
.hero__title { font-family: var(--font-serif); font-weight: 330; font-size: clamp(2.5rem,5.4vw,5rem); line-height: 1.02; letter-spacing: -.025em; color: var(--plum); margin-bottom: 1.5rem; }
.hero__title em { color: var(--rose-deep); }
.hero__lockup { display: flex; align-items: center; gap: clamp(.85rem,2vw,1.7rem); margin-bottom: 1.7rem; }
.hero__heart { flex: 0 0 auto; width: clamp(74px,9vw,122px); height: auto; color: var(--rose-deep); overflow: visible; }
.hero__heart path { stroke-dasharray: 1; stroke-dashoffset: 1; animation: heartDraw 1.8s var(--ease) .35s forwards; }
@keyframes heartDraw { to { stroke-dashoffset: 0; } }
.hero__lines { min-width: 0; }
.hero__title { margin-bottom: .12rem; }
.hero__script { font-family: "Bradley Hand", "Segoe Script", var(--font-display), cursive; font-weight: 400; font-size: clamp(1.9rem,4vw,3.05rem); line-height: 1.06; color: var(--rose-deep); margin: .15rem 0 0; }
@media (prefers-reduced-motion: reduce) { .hero__heart path { animation: none; stroke-dashoffset: 0; } }
@media (max-width: 560px) { .hero__lockup { flex-direction: column; align-items: center; gap: .6rem; } }
.hero__sub { font-size: var(--fs-lede); font-weight: 300; line-height: 1.5; color: var(--ink-soft); margin-bottom: 2.1rem; max-width: 44ch; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__meta { margin-top: 1.7rem; font-size: .82rem; color: var(--ink-faint); }
.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero__glow { position: absolute; width: 92%; height: 84%; background: radial-gradient(circle, rgba(212,132,154,.42), transparent 64%); filter: blur(54px); z-index: 0; }
.hero__photo { position: relative; z-index: 2; width: min(440px, 84%); aspect-ratio: 4 / 5.1; border-radius: 999px 999px 34px 34px; overflow: hidden; border: 8px solid #fffdfb; box-shadow: 0 60px 110px -45px rgba(91,31,58,.5); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%; }
.hero__petal { position: absolute; z-index: 3; width: 46px; height: 58px; border-radius: 60% 60% 56% 56% / 70% 70% 42% 42%; background: linear-gradient(160deg, rgba(232,181,194,.9), rgba(244,216,168,.45)); box-shadow: 0 10px 22px rgba(184,95,117,.3); animation: petalFloat 9s ease-in-out infinite; }
.hero__petal--1 { top: 5%; right: 10%; animation-delay: -1s; }
.hero__petal--2 { bottom: 9%; left: 6%; width: 32px; height: 40px; animation-delay: -4.5s; opacity: .82; }
@keyframes petalFloat { 0%,100%{ transform: translateY(0) rotate(-8deg) } 50%{ transform: translateY(-18px) rotate(10deg) } }

/* SANCTUARY / THE RITUAL (deep) */
.sanctuary { padding: clamp(5rem,11vw,9rem) clamp(1.2rem,5vw,2rem); }
.sanctuary__inner { width: var(--shell); margin: 0 auto; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem,6vw,6rem); align-items: center; }
.sanctuary__device { display: flex; justify-content: center; }
.sanctuary__device .device__glow { background: radial-gradient(50% 45% at 50% 40%, rgba(224,173,110,.5), transparent 70%); }
.sanctuary__copy .micro-trust { margin-top: 1.6rem; }
.sanctuary__device { position: relative; min-height: clamp(420px,48vw,580px); }
.sanctuary__halo { position: absolute; width: 80%; height: 70%; border-radius: 50%; z-index: 0; background: radial-gradient(circle, rgba(224,173,110,.36), rgba(224,173,110,.12) 45%, transparent 72%); filter: blur(52px); }
.sanctuary__device .device { z-index: 2; }
.device--tilt-r { transform: perspective(1300px) rotateY(8deg) rotateX(3deg); }
.sanctuary__device:hover .device--tilt-r { transform: perspective(1300px) rotateY(4deg) rotateX(1deg); }
.schip { position: absolute; z-index: 4; display: flex; align-items: center; gap: .5rem; background: rgba(38,10,22,.62); -webkit-backdrop-filter: blur(13px); backdrop-filter: blur(13px); border: 1px solid rgba(224,173,110,.34); border-radius: 14px; padding: .56rem .86rem; font-family: var(--font-sans); font-size: .8rem; font-weight: 500; color: #f4e7d6; box-shadow: 0 18px 42px -18px rgba(0,0,0,.7); white-space: nowrap; }
.schip__ic { color: var(--gold); font-size: .95em; }
.schip--a { top: 11%; left: -7%; animation: floaty 6.5s ease-in-out infinite; }
.schip--b { bottom: 27%; right: -10%; animation: floaty 7.5s ease-in-out -2.2s infinite; }
.schip--c { bottom: 9%; left: 7%; animation: floaty 5.6s ease-in-out -1.1s infinite; }
.schip__wave { display: inline-flex; align-items: flex-end; gap: 2px; height: 13px; }
.schip__wave i { width: 3px; background: var(--gold); border-radius: 2px; height: 40%; animation: eq 1s ease-in-out infinite; }
.schip__wave i:nth-child(2) { animation-delay: .15s; }
.schip__wave i:nth-child(3) { animation-delay: .3s; }
.schip__wave i:nth-child(4) { animation-delay: .45s; }
@keyframes eq { 0%,100% { height: 30%; } 50% { height: 100%; } }
@media (max-width: 900px) { .schip { display: none; } .device--tilt-r { transform: none; } .sanctuary__device { min-height: 0; } }
@media (prefers-reduced-motion: reduce) { .schip, .schip__wave i { animation: none !important; } .device--tilt-r { transform: none; } }

/* ECOSYSTEM — clean feature grid */
.eco-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem,1.8vw,1.5rem); max-width: 1100px; margin: 0 auto; }
.eco-card { background: #fffdfb; border: 1px solid rgba(91,31,58,.08); border-radius: 22px; padding: clamp(1.6rem,2.4vw,2.2rem); box-shadow: 0 22px 50px -36px rgba(91,31,58,.34); transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s; }
.eco-card:hover { transform: translateY(-6px); border-color: rgba(184,95,117,.34); box-shadow: 0 38px 66px -36px rgba(91,31,58,.42); }
.eco-card__icon { display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 15px; margin-bottom: 1.15rem; color: var(--rose-deep); background: radial-gradient(circle at 35% 30%, rgba(212,132,154,.24), rgba(212,132,154,.08)); border: 1px solid rgba(212,132,154,.3); }
.eco-card__icon svg { width: 25px; height: 25px; }
.eco-card h4 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.2rem,1.6vw,1.45rem); color: var(--plum); margin-bottom: .5rem; }
.eco-card p { font-size: .97rem; line-height: 1.56; color: var(--ink-soft); }
@media (max-width: 860px) { .eco-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .eco-grid { grid-template-columns: 1fr; } }

/* GUIDED MEDITATION — a breathing illustration */
.meditation { padding: clamp(5.5rem,12vw,10rem) clamp(1.2rem,5vw,2rem); text-align: center; position: relative; overflow: hidden; }
.meditation__inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 1; }
.med__motes { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.med__motes span { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(244,216,168,.55), rgba(212,132,154,.22) 60%, transparent 72%); filter: blur(.5px); animation-name: moteRise; animation-timing-function: ease-in-out; animation-iteration-count: infinite; }
@keyframes moteRise { 0% { transform: translateY(30px) scale(.7); opacity: 0; } 20% { opacity: .85; } 80% { opacity: .4; } 100% { transform: translateY(-170px) scale(1.15); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .med__motes { display: none; } }
.meditation__art { position: relative; width: min(880px, 96%); margin: clamp(2.4rem,5vw,3.4rem) auto 0; border-radius: 30px; isolation: isolate; }
.meditation__halo { position: absolute; inset: -16% -10%; border-radius: 50%; background: radial-gradient(ellipse at center, rgba(212,132,154,.42), rgba(244,216,168,.15) 50%, transparent 72%); filter: blur(12px); z-index: 0; animation: breathe-glow 8s ease-in-out infinite; }
.meditation__illus { position: relative; z-index: 1; display: block; width: 100%; border-radius: 28px; box-shadow: 0 34px 80px -30px rgba(91,31,58,.52), inset 0 0 0 1px rgba(255,255,255,.45); animation: breathe-soft 8s ease-in-out infinite; }
@keyframes breathe-soft { 0%,100%{ transform: scale(.994) } 50%{ transform: scale(1.013) } }
@keyframes breathe-glow { 0%,100%{ transform: scale(.95); opacity:.68 } 50%{ transform: scale(1.06); opacity:1 } }
.meditation__cue { margin-top: clamp(1.8rem,3.5vw,2.6rem); font-family: var(--font-serif); font-style: italic; font-size: clamp(1.05rem,1.6vw,1.3rem); color: var(--rose-deep); letter-spacing: .01em; }
@media (prefers-reduced-motion: reduce) { .meditation__illus, .meditation__halo, .hero__petal, .float-mascot, .cta__mascot { animation: none !important; } }

/* EMPATHY */
.empathy { position: relative; padding: clamp(6rem,14vw,13rem) clamp(1.2rem,5vw,2rem); text-align: center; }
.empathy__inner { max-width: 940px; margin: 0 auto; position: relative; z-index: 2; }
.statement { font-family: var(--font-serif); font-weight: 320; font-size: var(--fs-statement); line-height: 1.08; letter-spacing: -.02em; color: var(--plum); margin-bottom: 1.8rem; }
.lede { font-size: var(--fs-lede); font-weight: 300; line-height: 1.5; color: var(--ink-soft); max-width: 48ch; margin: 0 auto; }
.petal-field { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }

/* COMPANION (deep) */
.companion { padding: clamp(5rem,10vw,9rem) clamp(1.2rem,5vw,2rem); }
.companion__grid { width: var(--shell); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,6vw,6rem); align-items: center; }
.companion__copy .body { margin-bottom: 2.2rem; max-width: 42ch; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2rem; }
.feature-list li { display: flex; gap: 1rem; align-items: flex-start; font-size: 1.06rem; color: var(--oncream-soft); font-weight: 300; }
.feature-list strong { color: var(--cream); font-weight: 600; }
.feature-list__dot { flex: none; width: 11px; height: 11px; margin-top: .5rem; border-radius: 50%; background: radial-gradient(circle at 35% 30%, var(--gold-soft), var(--rose-deep)); box-shadow: 0 0 14px rgba(244,216,168,.5); }
.micro-trust { font-size: .9rem; color: var(--oncream-faint); border-left: 2px solid var(--rose); padding-left: 1rem; }
.companion__device { position: relative; display: flex; justify-content: center; }

.device { position: relative; width: clamp(230px,30vw,320px); border-radius: 42px; padding: 9px; background: linear-gradient(150deg, rgba(255,238,238,.18), rgba(255,238,238,.04)); border: 1px solid rgba(255,225,225,.16); box-shadow: 0 50px 90px -40px rgba(0,0,0,.6); transition: transform .6s var(--ease); transform-style: preserve-3d; }
.device img { border-radius: 34px; }
.device__glow { position: absolute; inset: -28% -18% -38%; z-index: -1; background: radial-gradient(50% 45% at 50% 40%, rgba(212,132,154,.55), transparent 70%); filter: blur(20px); }
.device--lg { width: clamp(250px,34vw,370px); box-shadow: 0 50px 90px -40px rgba(91,31,58,.35); }
.float-mascot { position: absolute; width: clamp(70px,9vw,118px); filter: drop-shadow(0 14px 24px rgba(0,0,0,.35)); animation: bob 7s ease-in-out infinite; z-index: 3; }
.float-mascot--a { top: -7%; right: 1%; }

/* COMPANION — living showcase: tilted device, halo, floating glass chips */
.companion__device { min-height: clamp(420px,48vw,560px); }
.companion__halo { position: absolute; width: 80%; height: 72%; border-radius: 50%; z-index: 0; background: radial-gradient(circle, rgba(224,173,110,.30), rgba(212,132,154,.20) 46%, transparent 72%); filter: blur(48px); }
.companion__device .device { z-index: 2; width: clamp(252px,33vw,360px); }
.device--tilt { transform: perspective(1300px) rotateY(-9deg) rotateX(3deg); }
.companion__device:hover .device--tilt { transform: perspective(1300px) rotateY(-4deg) rotateX(1deg); }
.chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: .5rem; background: rgba(255,250,247,.86); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.7); border-radius: 15px; padding: .62rem .92rem; font-family: var(--font-sans); font-size: .84rem; font-weight: 500; color: var(--plum); box-shadow: 0 20px 44px -20px rgba(0,0,0,.55); white-space: nowrap; }
.chip__spark { color: var(--rose-deep); font-size: .9em; }
.chip--listen { top: 8%; left: -7%; animation: floaty 6.5s ease-in-out infinite; }
.chip--remember { bottom: 15%; right: -8%; animation: floaty 7.5s ease-in-out -2.4s infinite; }
.chip--type { bottom: 32%; left: -3%; gap: .3rem; padding: .72rem .85rem; animation: floaty 5.5s ease-in-out -1s infinite; }
.chip--type span { width: 7px; height: 7px; border-radius: 50%; background: var(--rose); animation: typedot 1.4s ease-in-out infinite; }
.chip--type span:nth-child(2) { animation-delay: .2s; }
.chip--type span:nth-child(3) { animation-delay: .4s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@keyframes typedot { 0%,100% { opacity: .35; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-3px); } }
@media (max-width: 900px) { .chip { display: none; } .device--tilt { transform: none; } .companion__device { min-height: 0; } }
@media (prefers-reduced-motion: reduce) { .chip, .chip--type span { animation: none !important; } .device--tilt { transform: none; } }
@keyframes bob { 0%,100%{ transform: translateY(0) rotate(-4deg) } 50%{ transform: translateY(-15px) rotate(4deg) } }

/* SEASONS (light) */
.seasons { padding: clamp(5rem,10vw,9rem) 0 clamp(2rem,4vw,3.5rem); }
.seasons__head { width: var(--shell); margin: 0 auto clamp(2.5rem,5vw,4rem); text-align: center; }
.seasons__head .body { color: var(--ink-soft); }
.seasons__rail { display: flex; gap: 1.5rem; padding: 1rem clamp(1.2rem,5vw,4rem) 2rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.seasons__rail::-webkit-scrollbar { display: none; }
.season { flex: 0 0 clamp(248px,27vw,304px); scroll-snap-align: center; border-radius: 28px; overflow: hidden; background: linear-gradient(165deg, #fff 0%, var(--blush) 100%); border: 1px solid rgba(91,31,58,.08); box-shadow: 0 26px 50px -32px rgba(91,31,58,.28); transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s; display: flex; flex-direction: column; }
.season:hover { transform: translateY(-9px); border-color: rgba(184,95,117,.4); box-shadow: 0 40px 70px -34px rgba(91,31,58,.36); }
.season__visual { aspect-ratio: 2 / 3; position: relative; overflow: hidden; }
.season__visual--photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; display: block; transition: transform 1.2s var(--ease); }
.season:hover .season__visual--photo img { transform: scale(1.05); }
.season__visual--soft { display: grid; place-items: center; background: linear-gradient(165deg, #fbeef0 0%, #f2dbe4 100%); position: relative; }
.season__visual--soft::before { content: ""; position: absolute; width: 62%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.85), rgba(212,132,154,.14) 52%, transparent 72%); }
.season__visual--sage { background: linear-gradient(165deg, #eef2ec 0%, #e1e9dd 100%); }
.season__visual--sage::before { background: radial-gradient(circle, rgba(255,255,255,.8), rgba(168,181,160,.16) 52%, transparent 72%); }
.season__mascot { width: clamp(150px,18vw,196px); position: relative; filter: drop-shadow(0 16px 28px rgba(91,31,58,.24)); animation: bob 7s ease-in-out infinite; }
.season__body { padding: 1.5rem 1.6rem 1.85rem; }
@media (prefers-reduced-motion: reduce) { .season__mascot { animation: none; } .season:hover .season__visual--photo img { transform: none; } }
.season h3 { font-family: var(--font-serif); font-weight: 360; font-size: var(--fs-h3); color: var(--plum); margin-bottom: .6rem; letter-spacing: -.01em; }
.season p { font-size: 1rem; color: var(--ink-soft); font-weight: 300; line-height: 1.55; }
.season--tender { background: linear-gradient(165deg, #fff 0%, #eef1ea 100%); border-color: rgba(147,163,134,.35); }
.season--tender h3 { color: var(--sage); }

/* ECOSYSTEM (light) */
.ecosystem { padding: clamp(2rem,4vw,3.5rem) clamp(1.2rem,5vw,2rem) clamp(5rem,11vw,10rem); background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%); }
.ecosystem__head { text-align: center; margin-bottom: clamp(3rem,6vw,5rem); }

/* TINY (cream tenderness) */
.tiny { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(2rem,6vw,5rem); align-items: center; max-width: 1180px; margin: clamp(2rem,5vw,5rem) auto; padding: clamp(4rem,9vw,7rem) clamp(1.4rem,5vw,3rem); }
.tiny__art { position: relative; display: flex; justify-content: center; align-items: center; min-height: clamp(380px,42vw,480px); }
.tiny__halo { position: absolute; width: 78%; height: 70%; border-radius: 50%; z-index: 0; background: radial-gradient(circle, rgba(212,132,154,.30), rgba(244,216,168,.14) 48%, transparent 72%); filter: blur(46px); }
.tiny__art .device { z-index: 2; width: clamp(218px,26vw,288px); }
.tiny__heart { position: absolute; z-index: 4; top: 5%; left: 3%; width: clamp(52px,6.5vw,82px); color: var(--rose-deep); animation: floaty 6s ease-in-out infinite; }
.tiny__heart svg { width: 100%; height: auto; overflow: visible; }
@media (max-width: 900px) { .tiny__heart { display: none; } .tiny__art .device--tilt { transform: none; } .tiny__art { min-height: 0; } }
.tiny__copy .body { margin-bottom: 0; }
.tiny__copy .h2 { margin-bottom: 1.3rem; }

/* PRIVACY (deep) */
.privacy { padding: clamp(5rem,11vw,10rem) clamp(1.2rem,5vw,2rem); }
.privacy__head { text-align: center; margin-bottom: clamp(3rem,6vw,5rem); }
.privacy__grid { width: var(--shell); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }
.glass { position: relative; padding: 2rem 1.7rem; border-radius: 24px; background: linear-gradient(160deg, rgba(255,238,238,.10), rgba(255,238,238,.03)); border: 1px solid rgba(255,225,225,.14); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 24px 50px -34px rgba(0,0,0,.55); transition: transform .5s var(--ease), background .5s, border-color .5s, box-shadow .5s; overflow: hidden; }
.glass::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(224,173,110,.7), transparent); }
.glass:hover { transform: translateY(-8px); background: linear-gradient(160deg, rgba(255,238,238,.17), rgba(255,238,238,.05)); border-color: rgba(224,173,110,.42); box-shadow: 0 42px 72px -34px rgba(0,0,0,.65); }
.glass__icon { display: inline-grid; place-items: center; width: 46px; height: 46px; margin-bottom: 1.1rem; border-radius: 14px; color: var(--gold-soft); background: radial-gradient(circle at 35% 30%, rgba(224,173,110,.30), rgba(224,173,110,.08)); border: 1px solid rgba(224,173,110,.32); }
.glass__icon svg { width: 23px; height: 23px; }
.glass h4 { font-family: var(--font-serif); font-weight: 400; font-size: 1.22rem; color: var(--cream); margin-bottom: .55rem; }
.glass p { font-size: .97rem; color: var(--oncream-soft); font-weight: 300; line-height: 1.55; }
@media (max-width: 900px){ .privacy__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .privacy__grid { grid-template-columns: 1fr; gap: 1.1rem; } }

/* CTA — warm dusk */
/* VOICES — testimonial cards */
.voices { padding: clamp(5rem,11vw,9rem) clamp(1.2rem,5vw,2rem); }
.voices__head { text-align: center; margin-bottom: clamp(2.4rem,5vw,3.6rem); }
.voices__grid { width: var(--shell); max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(1rem,1.8vw,1.4rem); align-items: stretch; }
.voice--feature { grid-row: 1 / span 2; }
.voice { position: relative; display: flex; flex-direction: column; background: linear-gradient(168deg, #fffefc 0%, #fdf4ec 100%); border: 1px solid rgba(91,31,58,.07); border-radius: 24px; padding: clamp(1.8rem,2.6vw,2.7rem); box-shadow: 0 26px 58px -40px rgba(91,31,58,.45); overflow: hidden; transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s; }
.voice::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .7; }
.voice:hover { transform: translateY(-6px); border-color: rgba(224,173,110,.4); box-shadow: 0 46px 86px -42px rgba(91,31,58,.55); }
.voice__quote { font-family: var(--font-serif); font-weight: 360; font-size: clamp(1.06rem,1.4vw,1.24rem); line-height: 1.52; letter-spacing: -.005em; color: var(--plum); }
.voice--feature .voice__quote { font-size: clamp(1.2rem,1.85vw,1.52rem); line-height: 1.48; color: var(--plum-deep); }
.voice__quote em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--rose-deep); }
.voice__cite { display: flex; align-items: center; gap: .8rem; margin-top: auto; padding-top: 1.5rem; border-top: 1px solid rgba(91,31,58,.08); }
.voice__av { flex: none; display: grid; place-items: center; width: 47px; height: 47px; border-radius: 50%; color: var(--gold); background: radial-gradient(circle at 35% 30%, rgba(224,173,110,.32), rgba(224,173,110,.07)); border: 1px solid rgba(224,173,110,.36); box-shadow: 0 6px 16px -10px rgba(224,173,110,.7); }
.voice__av svg { width: 23px; height: 23px; }
.voice__id { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.voice__role { font-family: var(--font-sans); font-weight: 700; font-size: .92rem; color: var(--plum); letter-spacing: .005em; }
.voice__sub { font-family: var(--font-sans); font-weight: 500; font-size: .8rem; color: var(--ink-faint); }
@media (max-width: 820px){ .voices__grid { grid-template-columns: 1fr; } .voice--feature { grid-row: auto; } }

.cta { position: relative; padding: clamp(6rem,13vw,12rem) clamp(1.2rem,5vw,2rem); text-align: center; overflow: hidden; background: radial-gradient(120% 90% at 50% 110%, #f6cdc7 0%, #f5e1d6 45%, var(--cream) 100%); }
.cta__scene { position: absolute; inset: 0; z-index: 0; background: url("../assets/silhouettes/meadow.jpg") center/cover no-repeat; }
.cta__scene::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(251,246,240,.74) 0%, rgba(251,246,240,.56) 48%, rgba(246,205,199,.52) 100%), radial-gradient(78% 58% at 50% 42%, rgba(251,246,240,.6), transparent 72%); }
.cta__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; opacity: .7; }
.cta__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta__mascot { width: clamp(80px,10vw,124px); margin: 0 auto 1.4rem; filter: drop-shadow(0 16px 28px rgba(91,31,58,.28)); animation: bob 8s ease-in-out infinite; }
.cta .eyebrow { color: var(--rose-deep); }
.cta__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.8rem,8vw,6rem); line-height: .98; color: var(--plum); margin-bottom: 1.2rem; }
.cta__sub { font-size: var(--fs-lede); font-weight: 300; color: var(--ink-soft); max-width: 40ch; margin: 0 auto 2.4rem; }
.cta__actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.cta__note { font-size: .85rem; letter-spacing: .03em; color: var(--ink-faint); }

/* FOOTER */
.foot { position: relative; background: linear-gradient(180deg, var(--cream-2) 0%, var(--blush-2) 100%); color: var(--ink); padding: clamp(3rem,6vw,4.6rem) clamp(1.2rem,5vw,4rem) 2.2rem; overflow: hidden; }
.foot::after { content: ""; position: absolute; bottom: -30%; right: -6%; width: 440px; height: 440px; border-radius: 50%; background: radial-gradient(circle, rgba(224,173,110,.2), transparent 70%); pointer-events: none; }
.foot__divider { position: relative; width: min(680px, 76vw); margin: 0 auto clamp(2.2rem,5vw,3.2rem); display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--rose-deep); }
.foot__divider::before, .foot__divider::after { content: ""; height: 1px; flex: 1; }
.foot__divider::before { background: linear-gradient(90deg, transparent, rgba(184,95,117,.45)); }
.foot__divider::after { background: linear-gradient(90deg, rgba(184,95,117,.45), transparent); }
.foot__divider svg { width: 18px; height: 18px; flex: none; opacity: .85; }
.foot__inner { position: relative; width: var(--shell); margin: 0 auto 2.4rem; display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: clamp(1.6rem,4vw,3rem); }
.foot__brand { max-width: 40ch; }
.foot__id { display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1rem; }
.foot__id img { height: 36px; width: auto; filter: drop-shadow(0 3px 8px rgba(91,31,58,.18)); transition: transform .5s var(--ease); }
.foot__id:hover img { transform: scale(1.07) rotate(-3deg); }
.foot__word { font-family: var(--font-display); font-size: 1.75rem; color: var(--plum); }
.foot__tag { color: var(--ink-soft); font-size: .95rem; font-weight: 300; line-height: 1.55; }
.foot__love { font-family: "Bradley Hand", "Segoe Script", var(--font-display), cursive; font-size: 1.4rem; line-height: 1.25; color: var(--rose-deep); margin-top: .65rem; }
.foot__col { display: flex; flex-direction: column; align-items: flex-start; gap: .72rem; }
.foot__eyebrow { font-family: var(--font-sans); font-weight: 600; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: .3rem; }
.foot__col a { font-size: .93rem; color: var(--ink-soft); transition: color .3s var(--ease); }
.foot__col a:hover { color: var(--rose-deep); }
.foot__social { display: flex; align-items: center; gap: .7rem; margin-top: 1.6rem; }
.foot__social-label { font-size: .82rem; color: var(--ink-faint); margin-right: .15rem; letter-spacing: .01em; }
.foot__social a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; color: var(--plum); background: rgba(91,31,58,.05); border: 1px solid rgba(91,31,58,.14); transition: background .4s var(--ease), transform .4s var(--ease), border-color .4s; }
.foot__social a:hover { background: rgba(212,132,154,.2); border-color: var(--rose); transform: translateY(-3px); }
.foot__social svg { width: 19px; height: 19px; }

/* BACK TO TOP — golden floating control */
.to-top { position: fixed; right: clamp(1rem,3vw,2.1rem); bottom: clamp(1rem,3vw,2.1rem); z-index: 60; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); cursor: pointer; display: grid; place-items: center; color: #5b1f3a; background: radial-gradient(circle at 36% 30%, #f3d29a 0%, #e0ad6e 55%, #cf9a52 100%); box-shadow: 0 16px 34px -12px rgba(176,116,42,.62), inset 0 1px 0 rgba(255,255,255,.55); opacity: 0; transform: translateY(16px) scale(.9); pointer-events: none; transition: opacity .45s var(--ease), transform .45s var(--ease), box-shadow .4s; }
.to-top.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.to-top:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 24px 44px -12px rgba(176,116,42,.7), inset 0 1px 0 rgba(255,255,255,.55); }
.to-top:focus-visible { outline: 2px solid var(--plum); outline-offset: 3px; }
.to-top svg { width: 22px; height: 22px; }
@media (prefers-reduced-motion: reduce) { .to-top { transition: opacity .3s; } .to-top.is-visible, .to-top:hover { transform: none; } }
.foot__note { position: relative; width: var(--shell); margin: 0 auto clamp(1.5rem,3vw,2.1rem); display: flex; gap: .7rem; align-items: flex-start; font-size: .82rem; line-height: 1.6; color: var(--ink-faint); }
.foot__ai-tag { flex: none; margin-top: .12rem; font-family: var(--font-sans); font-weight: 700; font-size: .62rem; letter-spacing: .14em; color: var(--rose-deep); background: rgba(184,95,117,.1); border: 1px solid rgba(184,95,117,.32); border-radius: 100px; padding: .2rem .52rem; }
.foot__legal { position: relative; width: var(--shell); margin: 0 auto; padding-top: 1.8rem; border-top: 1px solid rgba(91,31,58,.13); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.foot__legal p { font-size: .82rem; color: var(--ink-faint); }
@media (max-width: 760px){ .foot__inner { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; } .foot__brand { grid-column: 1 / -1; } }
@media (max-width: 460px){ .foot__inner { grid-template-columns: 1fr; } }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero, .companion__grid, .tiny, .sanctuary__inner { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 7rem; gap: 2.6rem; text-align: center; }
  .hero__content { max-width: none; margin: 0 auto; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .companion__copy { order: 2; } .companion__device { order: 1; }
  .tiny__art { order: -1; }
  .sanctuary__device { order: -1; }
}
@media (max-width: 560px) {
  .hero__cta { flex-direction: column; }
  .hero__cta .btn, .cta__actions .btn { width: 100%; }
  .nav { padding-left: 1.1rem; padding-right: 1.1rem; }
  .nav__word { display: none; }
  .nav__mark img { width: auto; height: 32px; }
  .nav__right { gap: .55rem; }
  .lang__btn { padding: .38rem .6rem; }
  .btn--pill { padding: .5rem .9rem; font-size: .8rem; }
}
