/* =====================================================================
   CANDY HOUSE (PRIVATE) LIMITED — Magical Candy World
   One font throughout: Fredoka. A vibrant, whimsical confectionery realm.
   ===================================================================== */

/* ----------  Tokens  ---------- */
:root {
  --pink:        #ff5fa2;
  --pink-deep:   #ff2e85;
  --bubblegum:   #4cc9ff;
  --bubblegum-d: #18a8e8;
  --lavender:    #b794ff;
  --lavender-d:  #9b6bff;
  --lemon:       #ffe14d;
  --lemon-d:     #ffc93c;
  --mint:        #7af0c8;
  --mint-d:      #34dba0;

  --cream:       #fff8fb;
  --ink:         #4e2360;   /* deep grape — body text on light */
  --ink-soft:    #8a5fa0;
  --white:       #ffffff;

  --grad-candy:  linear-gradient(120deg, var(--pink) 0%, var(--lavender-d) 55%, var(--bubblegum) 100%);
  --grad-sun:    radial-gradient(circle at 50% 50%, var(--lemon) 0%, var(--lemon-d) 70%);
  --grad-sky:    linear-gradient(180deg, #e3d2ff 0%, #ffd9ee 38%, #d2f4ff 72%, #e9fff6 100%);

  --shadow-pop:  0 18px 40px -16px rgba(155, 60, 140, .45);
  --shadow-soft: 0 10px 30px -12px rgba(120, 70, 160, .35);
  --shadow-deep: 0 30px 70px -28px rgba(80, 30, 90, .55);

  --r-lg: 36px;
  --r-md: 24px;
  --r-sm: 16px;

  --maxw: 1200px;
  --ease-pop: cubic-bezier(.34, 1.56, .64, 1);
}

/* ----------  Reset  ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Fredoka", system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.6;
  background: var(--grad-sky);
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--pink); color: #fff; }

/* sprinkle dust overlay across the whole page */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(255,95,162,.35) 1.5px, transparent 2px),
    radial-gradient(circle, rgba(76,201,255,.30) 1.5px, transparent 2px),
    radial-gradient(circle, rgba(255,225,77,.45) 1.5px, transparent 2px);
  background-size: 120px 120px, 180px 180px, 150px 150px;
  background-position: 0 0, 60px 40px, 30px 90px;
  opacity: .6;
}

.container { width: min(92%, var(--maxw)); margin-inline: auto; position: relative; z-index: 2; }

/* ----------  Typography  ---------- */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.05; letter-spacing: -.5px; color: var(--ink); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .8rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--lavender-d);
  background: rgba(255,255,255,.7);
  padding: .45rem 1.1rem; border-radius: 999px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.2rem;
}
.eyebrow::before { content: "✦"; color: var(--pink); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-head h2 {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  margin-bottom: 1rem;
}
.section-head p { font-size: 1.12rem; color: var(--ink-soft); }
.text-pink { color: var(--pink-deep); }
.text-blue { color: var(--bubblegum-d); }
.text-grad {
  background: var(--grad-candy);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 600; font-size: 1.02rem;
  padding: .95rem 1.9rem; border-radius: 999px;
  transition: transform .25s var(--ease-pop), box-shadow .25s ease, filter .25s ease;
  will-change: transform;
}
.btn-primary { background: var(--grad-candy); color: #fff; box-shadow: var(--shadow-pop); }
.btn-primary:hover { transform: translateY(-3px) scale(1.03); filter: saturate(1.15); }
.btn-ghost {
  background: rgba(255,255,255,.75); color: var(--ink);
  box-shadow: var(--shadow-soft); border: 2px solid rgba(255,255,255,.9);
}
.btn-ghost:hover { transform: translateY(-3px); background: #fff; }
.btn-lemon { background: var(--grad-sun); color: var(--ink); box-shadow: 0 16px 34px -16px rgba(255,180,40,.7); }
.btn-lemon:hover { transform: translateY(-3px) scale(1.03); }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  padding: .7rem 0;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(255,248,251,.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px -16px rgba(120,60,150,.4);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; font-weight: 600; }
.brand .logo-mark {
  width: 46px; height: 46px; border-radius: 16px;
  background: var(--grad-candy);
  display: grid; place-items: center; color: #fff; font-size: 1.4rem;
  box-shadow: var(--shadow-pop);
  transform: rotate(-6deg);
}
.brand .brand-name { font-size: 1.3rem; line-height: 1; }
.brand .brand-name small { display: block; font-size: .62rem; letter-spacing: 2px; color: var(--ink-soft); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  padding: .55rem .95rem; border-radius: 999px; font-weight: 500; color: var(--ink);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-links a:hover { background: rgba(183,148,255,.18); transform: translateY(-2px); }
.nav-links a.nav-privacy { color: var(--lavender-d); font-weight: 600; }
.nav-links a.nav-privacy:hover { background: rgba(155,107,255,.16); }
.nav-actions { display: flex; align-items: center; gap: .6rem; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,.8); box-shadow: var(--shadow-soft); }
.nav-toggle span { display: block; width: 22px; height: 2.5px; background: var(--ink); margin: 4px auto; border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

/* =====================================================================
   HERO  — layered candy-world scene
   ===================================================================== */
.hero { position: relative; padding: 4rem 0 7rem; overflow: hidden; }
.hero-sky-deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.cloud {
  position: absolute; background: rgba(255,255,255,.75); border-radius: 999px;
  filter: blur(.5px); box-shadow: 0 20px 40px -20px rgba(150,100,180,.4);
}
.cloud::before, .cloud::after { content:""; position:absolute; background: inherit; border-radius: 999px; }
.cloud.c1 { width: 160px; height: 52px; top: 8%; left: 6%; }
.cloud.c1::before { width: 80px; height: 80px; top: -34px; left: 22px; }
.cloud.c1::after  { width: 56px; height: 56px; top: -20px; left: 86px; }
.cloud.c2 { width: 120px; height: 40px; top: 22%; right: 10%; opacity: .8; }
.cloud.c2::before { width: 60px; height: 60px; top: -26px; left: 18px; }
.cloud.c2::after  { width: 44px; height: 44px; top: -14px; left: 64px; }
.sun {
  position: absolute; top: 6%; right: 16%;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--grad-sun);
  box-shadow: 0 0 0 18px rgba(255,225,77,.25), 0 0 80px 10px rgba(255,201,60,.5);
  animation: sun-pulse 6s ease-in-out infinite;
}
@keyframes sun-pulse { 50% { box-shadow: 0 0 0 26px rgba(255,225,77,.18), 0 0 110px 18px rgba(255,201,60,.55); } }

.hero-grid {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: center;
}
.hero-copy { max-width: 600px; }
.hero-copy h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  margin: 1rem 0 1.2rem;
}
.hero-copy h1 .line { display: block; }
.hero-copy p.lead { font-size: 1.22rem; color: var(--ink-soft); margin-bottom: 2rem; max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero-stats .stat strong { display: block; font-size: 1.9rem; color: var(--pink-deep); }
.hero-stats .stat span { font-size: .85rem; color: var(--ink-soft); letter-spacing: .5px; }

/* floating island holding hero product */
.hero-stage { position: relative; min-height: 460px; }
.island {
  position: relative; width: min(420px, 92%); margin-inline: auto;
  animation: float-y 6s ease-in-out infinite;
}
.island .island-disc {
  position: relative; aspect-ratio: 1; border-radius: 50%;
  overflow: hidden; border: 12px solid #fff;
  box-shadow: var(--shadow-deep);
}
.island .island-disc img { width: 100%; height: 100%; object-fit: cover; }
.island .island-base {
  position: absolute; left: 50%; bottom: -34px; transform: translateX(-50%);
  width: 78%; height: 70px;
  background: linear-gradient(180deg, #b07be0, #7a4bbf);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  box-shadow: inset 0 6px 0 rgba(255,255,255,.25);
  z-index: -1;
}
.island .island-base::after {
  content:""; position:absolute; inset: 0 0 auto 0; height: 22px;
  background: repeating-linear-gradient(90deg, var(--pink) 0 14px, var(--lemon) 14px 28px, var(--mint) 28px 42px, var(--bubblegum) 42px 56px);
  border-radius: 999px 999px 0 0; opacity: .85;
}
.island .ribbon {
  position: absolute; top: 14px; left: -18px;
  background: var(--grad-candy); color: #fff; font-weight: 600;
  padding: .5rem 1.1rem; border-radius: 999px; box-shadow: var(--shadow-pop);
  font-size: .85rem; transform: rotate(-8deg);
}

/* floating sweets (SVG) sprinkled in hero */
.floaty { position: absolute; z-index: 4; filter: drop-shadow(0 12px 18px rgba(120,60,150,.3)); }
.floaty.f1 { width: 90px;  top: 4%;   left: 2%;  animation: float-y 5s ease-in-out infinite; }
.floaty.f2 { width: 74px;  bottom: 8%; left: 8%;  animation: float-y 7s ease-in-out infinite .6s; }
.floaty.f3 { width: 80px;  top: 10%;  right: 4%; animation: float-rot 9s linear infinite; }
.floaty.f4 { width: 64px;  bottom: 2%; right: 12%; animation: float-y 6s ease-in-out infinite .3s; }

@keyframes float-y   { 50% { transform: translateY(-22px); } }
@keyframes float-rot { to { transform: rotate(360deg); } }

/* wavy candy divider */
.wave-divider { position: relative; line-height: 0; z-index: 2; margin-top: -1px; }
.wave-divider svg { width: 100%; height: 90px; display: block; }

/* =====================================================================
   GENERIC SECTION
   ===================================================================== */
.section { padding: 5.5rem 0; position: relative; }
.section-cream { background: var(--cream); }
.section-cream-soft { background: linear-gradient(180deg, #fff8fb, #fff0f8); }

/* product / island card */
.cards-grid { display: grid; gap: 2rem; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }

.candy-card {
  position: relative; background: #fff; border-radius: var(--r-lg);
  padding: 1rem 1rem 1.6rem; box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease-pop), box-shadow .35s ease;
  overflow: hidden;
}
.candy-card::before { /* frosting drip top */
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 14px;
  background: var(--card-accent, var(--grad-candy));
}
.candy-card:hover { transform: translateY(-12px) rotate(-1deg); box-shadow: var(--shadow-deep); }
.candy-card .ph {
  position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/3;
  background: #f3e9fb;
}
.candy-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-pop); }
.candy-card:hover .ph img { transform: scale(1.08) rotate(1deg); }
.candy-card .tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--ink); font-weight: 600; font-size: .72rem;
  letter-spacing: 1px; text-transform: uppercase; padding: .4rem .8rem; border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.candy-card .body { padding: 1.3rem .6rem 0; }
.candy-card h3 { font-size: 1.45rem; margin-bottom: .5rem; }
.candy-card p { color: var(--ink-soft); font-size: .98rem; }
.candy-card .pill-row { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }
.mini-pill { font-size: .76rem; font-weight: 600; padding: .3rem .75rem; border-radius: 999px; color: var(--ink); }
.p-pink { background: rgba(255,95,162,.16); color: var(--pink-deep); }
.p-blue { background: rgba(76,201,255,.18); color: var(--bubblegum-d); }
.p-mint { background: rgba(52,219,160,.18); color: var(--mint-d); }
.p-lem  { background: rgba(255,201,60,.22); color: #b8841f; }
.p-lav  { background: rgba(155,107,255,.16); color: var(--lavender-d); }

/* =====================================================================
   CHOCOLATE CAVERNS  (rich, deeper band)
   ===================================================================== */
.choc {
  background: radial-gradient(120% 120% at 50% 0%, #6a3b8f 0%, #3d2160 55%, #2a1646 100%);
  color: #fdeffb; overflow: hidden; position: relative;
}
.choc .section-head h2, .choc h3 { color: #fff; }
.choc .section-head p { color: #e6cdf2; }
.choc .eyebrow { background: rgba(255,255,255,.14); color: #f4d9ff; }
.choc .candy-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(8px); }
.choc .candy-card h3 { color: #fff; }
.choc .candy-card p { color: #e3cdf0; }
.choc-glow { position: absolute; width: 360px; height: 360px; border-radius: 50%; filter: blur(80px); opacity: .55; z-index: 0; }
.choc-glow.g1 { background: var(--pink); top: -80px; left: -60px; }
.choc-glow.g2 { background: var(--bubblegum); bottom: -120px; right: -40px; }

/* =====================================================================
   GUMMY GROVE  (split feature)
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split .feature-art {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 14px solid #fff; box-shadow: var(--shadow-deep);
  transform: rotate(-2deg); aspect-ratio: 5/4;
}
.split .feature-art img { width: 100%; height: 100%; object-fit: cover; }
.split .feature-art .blob-badge {
  position: absolute; bottom: -26px; right: -22px; width: 130px; height: 130px;
  background: var(--grad-sun); color: var(--ink); border-radius: 42% 58% 60% 40% / 45% 45% 55% 55%;
  display: grid; place-items: center; text-align: center; font-weight: 600; line-height: 1.1;
  box-shadow: var(--shadow-pop); transform: rotate(8deg); padding: 1rem;
  animation: blob-spin 14s ease-in-out infinite;
}
@keyframes blob-spin { 50% { border-radius: 58% 42% 40% 60% / 55% 55% 45% 45%; transform: rotate(-6deg); } }
.split h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
.split p { color: var(--ink-soft); margin-bottom: 1rem; font-size: 1.08rem; }
.feature-list { display: grid; gap: .9rem; margin: 1.4rem 0 2rem; }
.feature-list li { display: flex; gap: .8rem; align-items: flex-start; font-weight: 500; }
.feature-list .dot {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%;
  background: var(--grad-candy); color: #fff; display: grid; place-items: center; font-size: .9rem;
  box-shadow: var(--shadow-soft);
}

/* =====================================================================
   CANDY TUNNEL  (perspective transition)
   ===================================================================== */
.tunnel { position: relative; height: 320px; overflow: hidden; display: grid; place-items: center;
  background: #2a1646; }
.tunnel .ring {
  position: absolute; border-radius: 50%; border-style: solid; border-width: 22px;
  left: 50%; top: 50%; translate: -50% -50%;
  animation: tunnel-in 5s linear infinite;
}
.tunnel .label { position: relative; z-index: 5; text-align: center; color: #fff; }
.tunnel .label h2 { font-size: clamp(1.8rem,5vw,3rem); }
.tunnel .label p { color: #f0d8ff; }
@keyframes tunnel-in {
  from { width: 40px; height: 40px; opacity: 0; }
  20%  { opacity: 1; }
  to   { width: 1400px; height: 1400px; opacity: 0; }
}

/* =====================================================================
   CANDY KITCHEN  (illustrated process)
   ===================================================================== */
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step {
  position: relative; background: #fff; border-radius: var(--r-md); padding: 2rem 1.4rem 1.6rem;
  box-shadow: var(--shadow-soft); text-align: center;
  transition: transform .35s var(--ease-pop);
}
.step:hover { transform: translateY(-10px); }
.step .icon { width: 78px; height: 78px; margin: 0 auto 1rem; }
.step .num {
  position: absolute; top: -16px; left: 50%; translate: -50% 0;
  width: 38px; height: 38px; border-radius: 50%; background: var(--grad-candy); color: #fff;
  display: grid; place-items: center; font-weight: 600; box-shadow: var(--shadow-pop);
}
.step h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.step p { font-size: .92rem; color: var(--ink-soft); }
.step-connector { /* dotted candy path behind steps on desktop */ }

/* =====================================================================
   BEST SELLERS
   ===================================================================== */
.best .candy-card { padding-top: 1rem; }
.rank-badge {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 600; color: var(--ink); box-shadow: var(--shadow-pop); font-size: 1.05rem;
}
.rank-1 { background: var(--grad-sun); }
.rank-2 { background: linear-gradient(135deg,#e7e7ef,#bfc3d9); }
.rank-3 { background: linear-gradient(135deg,#ffcf9e,#f0a463); }
.stars { color: var(--lemon-d); letter-spacing: 2px; margin-top: .6rem; font-size: .95rem; }

/* =====================================================================
   MARQUEE
   ===================================================================== */
.marquee { overflow: hidden; padding: 1.3rem 0; background: var(--grad-candy); }
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; width: max-content; animation: scroll-x 26s linear infinite; }
.marquee span { color: #fff; font-weight: 600; font-size: 1.25rem; display: inline-flex; align-items: center; gap: .8rem; }
.marquee span::before { content: "✸"; color: var(--lemon); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: stretch; }
.contact-card {
  background: #fff; border-radius: var(--r-lg); padding: 2.6rem; box-shadow: var(--shadow-soft);
}
.contact-card.brandy { background: var(--grad-candy); color: #fff; box-shadow: var(--shadow-deep); }
.contact-card.brandy h2 { color: #fff; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; margin-top: 1.6rem; }
.info-row .ic {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(255,255,255,.22); font-size: 1.4rem;
}
.contact-card:not(.brandy) .info-row .ic { background: rgba(155,107,255,.15); }
.info-row h4 { font-size: 1.05rem; margin-bottom: .15rem; }
.info-row a, .info-row p { font-size: 1.05rem; }
.contact-card.brandy a { color: #fff; }
.contact-card.brandy .info-row p, .contact-card.brandy .muted { color: rgba(255,255,255,.85); }
.muted { color: var(--ink-soft); }

.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 500; margin-bottom: .4rem; font-size: .95rem; }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: .85rem 1.1rem; border-radius: 14px; border: 2px solid #f0e2fb; background: #fdf9ff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--lavender); box-shadow: 0 0 0 4px rgba(183,148,255,.2); }
.form-note { font-size: .85rem; color: var(--ink-soft); margin-top: .5rem; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: #2a1646; color: #ecdcf6; padding: 4rem 0 1.5rem; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.site-footer .brand .brand-name, .site-footer .brand small { color: #fff; }
.site-footer h4 { color: #fff; margin-bottom: 1rem; font-size: 1.05rem; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: #d8c3ec; transition: color .2s ease, padding .2s ease; }
.footer-links a:hover { color: var(--lemon); padding-left: 4px; }
.footer-links a.footer-privacy { color: var(--mint); font-weight: 600; }
.footer-blurb { color: #c9b3e0; max-width: 320px; margin-top: 1rem; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .9rem; color: #b59ccf;
}
.footer-bottom a { color: var(--mint); }

/* =====================================================================
   PRIVACY PAGE
   ===================================================================== */
.policy-hero { padding: 4rem 0 2rem; text-align: center; }
.policy-hero h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); margin-bottom: .8rem; }
.policy-hero p { color: var(--ink-soft); }
.policy-body { padding: 1rem 0 5rem; }
.policy-card {
  background: #fff; border-radius: var(--r-lg); padding: clamp(1.8rem, 4vw, 3.4rem);
  box-shadow: var(--shadow-soft); width: min(92%, 880px); margin-inline: auto;
}
.policy-card h2 { font-size: 1.5rem; margin: 2.2rem 0 .8rem; color: var(--ink); }
.policy-card h2:first-of-type { margin-top: .5rem; }
.policy-card h3 { font-size: 1.12rem; margin: 1.2rem 0 .5rem; color: var(--lavender-d); }
.policy-card p, .policy-card li { color: var(--ink-soft); margin-bottom: .7rem; line-height: 1.7; }
.policy-card ul { padding-left: 1.3rem; list-style: disc; }
.policy-card ul li { margin-bottom: .4rem; }
.policy-card a { color: var(--pink-deep); font-weight: 600; }
.policy-toc { background: #faf4ff; border-radius: var(--r-md); padding: 1.4rem 1.6rem; margin-bottom: 2rem; }
.policy-toc strong { display:block; margin-bottom:.6rem; color: var(--ink); }
.policy-toc a { display: inline-block; margin: .2rem .8rem .2rem 0; color: var(--lavender-d); font-weight: 500; }
.policy-updated { display:inline-block; background: rgba(52,219,160,.18); color: var(--mint-d); font-weight:600; padding:.4rem 1rem; border-radius:999px; }

/* =====================================================================
   REVEAL ANIMATIONS
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s var(--ease-pop); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: 380px; order: -1; }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split .feature-art { order: -1; }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 72px 4% auto 4%; flex-direction: column; align-items: stretch;
    background: rgba(255,248,251,.97); backdrop-filter: blur(14px); padding: 1rem; border-radius: var(--r-md);
    box-shadow: var(--shadow-deep); gap: .2rem;
    transform: translateY(-12px) scale(.98); opacity: 0; pointer-events: none; transition: .3s var(--ease-pop);
    z-index: 70;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: .8rem 1rem; }
  .nav-toggle { display: block; }
  .nav .btn.nav-cta { display: none; }
}
@media (max-width: 560px) {
  .cards-3 { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.4rem; }
  .contact-card { padding: 1.8rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
