/* ==========================================================================
   Rose Lactation Collective — site styles
   Palette (client brief): neutrals — beige/sand, dusty rose/mauve, ivory
   Fonts: Playfair Display (headlines), Montserrat (body), La Belle Aurore (script)
   ========================================================================== */

:root {
  --mauve: #A56A76;
  --mauve-dark: #8E5A65;
  --dusty: #B98A92;
  --blush: #EBD6D5;
  --rose-pale: #F5EAE8;
  --cream: #F7F1E4;
  --cream-deep: #EFE5D3;
  --ivory: #FFFDF9;
  --sand: #D9C0A3;
  --sand-pale: #EDE2D0;
  --plum: #5C4247;
  --ink: #3F2E32;
  --white: #FFFDF9;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --script: 'La Belle Aurore', 'Brush Script MT', cursive;
  --max: 1180px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 50px rgba(92, 66, 71, .14);
  --shadow-soft: 0 10px 30px rgba(92, 66, 71, .10);
  --header-h: 88px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; margin: 0; color: var(--plum); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--mauve); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--dusty); color: var(--ivory); }

.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; position: relative; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.center { text-align: center; }
.kicker {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--mauve);
  font-weight: 600; margin-bottom: 14px; display: inline-block;
}
.script { font-family: var(--script); font-weight: 400; color: var(--mauve); }
.lede { font-size: 18px; color: var(--plum); }
.muted { color: var(--plum); opacity: .8; }
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--plum); color: var(--cream);
  padding: 10px 16px; border-radius: 10px; text-decoration: none; transition: top .2s;
}
.skip:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none;
  padding: 15px 28px; border-radius: 999px; font-weight: 600; font-size: 13.5px; letter-spacing: 1px;
  text-transform: uppercase; border: 1.5px solid transparent; cursor: pointer; line-height: 1.2;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s, border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn-primary { background: var(--mauve); color: var(--ivory); box-shadow: 0 10px 24px rgba(165, 106, 118, .28); }
.btn-primary:hover { background: var(--mauve-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(165, 106, 118, .34); }
.btn-outline { border-color: var(--mauve); color: var(--mauve); background: transparent; }
.btn-outline:hover { background: rgba(165, 106, 118, .1); transform: translateY(-2px); }
.btn-light { background: var(--ivory); color: var(--mauve); }
.btn-light:hover { background: #fff; transform: translateY(-2px); }
.btn-plum { background: var(--plum); color: var(--cream); }
.btn-plum:hover { background: #4a353a; transform: translateY(-2px); }
.btn-sand { background: var(--sand); color: var(--plum); }
.btn-sand:hover { background: #cfb28f; transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 12px; }
.btn-link {
  display: inline-flex; align-items: center; gap: 8px; color: var(--mauve); font-weight: 600; text-decoration: none;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
}
.btn-link svg { width: 16px; height: 16px; transition: transform .25s; }
.btn-link:hover svg { transform: translateX(4px); }

/* ---------- Scroll progress + announcement ---------- */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--mauve), var(--sand)); z-index: 120; transition: width .1s linear; }
.topbar {
  background: var(--plum); color: var(--cream); font-size: 12.5px; letter-spacing: .6px;
  text-align: center; padding: 9px 16px; position: relative; z-index: 60;
}
.topbar a { color: var(--sand); font-weight: 600; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }

/* ---------- Header / navigation ---------- */
header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 241, 228, .88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(165, 106, 118, .14);
  transition: box-shadow .3s, background .3s;
}
header.site.scrolled { box-shadow: 0 8px 30px rgba(92, 66, 71, .10); background: rgba(247, 241, 228, .96); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; transition: height .3s var(--ease); }
header.site.scrolled .nav { height: 72px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img { width: 62px; height: 62px; border-radius: 50%; transition: transform .4s var(--ease), width .3s, height .3s; }
header.site.scrolled .brand img { width: 52px; height: 52px; }
.brand:hover img { transform: rotate(-8deg) scale(1.04); }
.brand .name { font-family: var(--serif); font-size: 19px; color: var(--plum); line-height: 1.1; }
.brand .name small { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--mauve); margin-top: 4px; }
nav.links { display: flex; align-items: center; gap: 30px; }
nav.links > a, nav.links .has-sub > a {
  white-space: nowrap; text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--plum); position: relative; padding: 6px 0;
}
nav.links > a::after, nav.links .has-sub > a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: var(--mauve);
  transform: scaleX(0); transition: transform .25s var(--ease); transform-origin: left;
}
nav.links > a:hover::after, nav.links > a[aria-current="page"]::after,
nav.links .has-sub > a:hover::after, nav.links .has-sub > a[aria-current="page"]::after { transform: scaleX(1); }
.has-sub { position: relative; display: flex; align-items: center; gap: 4px; }
.sub-toggle { background: none; border: 0; padding: 4px; color: var(--mauve); cursor: pointer; display: inline-flex; border-radius: 6px; }
.sub-toggle svg { width: 14px; height: 14px; transition: transform .25s; }
.has-sub.open .sub-toggle svg, .has-sub:hover .sub-toggle svg { transform: rotate(180deg); }
.sub {
  position: absolute; top: calc(100% + 14px); left: -18px; min-width: 200px; background: var(--ivory);
  border-radius: 16px; box-shadow: var(--shadow); border: 1px solid rgba(165, 106, 118, .14); padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .25s, transform .25s var(--ease), visibility .25s;
}
.sub::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.has-sub:hover .sub, .has-sub.open .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.sub a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 10px; text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: .4px; color: var(--plum); }
.sub a:hover { background: var(--rose-pale); color: var(--mauve); }
.sub a svg { width: 16px; height: 16px; stroke: var(--mauve); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta .btn { padding: 13px 22px; font-size: 12px; }
.menu-btn { display: none; background: none; border: 1.5px solid var(--mauve); border-radius: 12px; padding: 9px 10px; color: var(--mauve); cursor: pointer; }
.menu-btn span { display: block; width: 20px; height: 2px; background: currentColor; margin: 4px 0; transition: transform .3s, opacity .3s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Floating background icons (one layer per section, behind its content) ---------- */
section > .floaters { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
section > .wrap { position: relative; z-index: 1; }
.floaters .fl {
  position: absolute; bottom: -80px; color: var(--mauve); opacity: 0;
  animation: floatUp var(--dur, 26s) linear infinite; animation-delay: var(--delay, 0s);
  will-change: transform, opacity;
}
.bg-mauve > .floaters, .bg-plum > .floaters, .cta-band > .floaters, .bundle > .floaters { color: var(--cream); }
.floaters .fl svg { width: var(--size, 32px); height: var(--size, 32px); fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; animation: sway var(--sway, 6s) ease-in-out infinite alternate; }
@keyframes floatUp {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: var(--op, .16); }
  90%  { opacity: var(--op, .16); }
  100% { transform: translateY(var(--travel, -900px)) rotate(var(--rot, 20deg)); opacity: 0; }
}
@keyframes sway { from { transform: translateX(-14px) rotate(-6deg); } to { transform: translateX(14px) rotate(6deg); } }
main, footer, .topbar { position: relative; z-index: 1; }

/* ---------- Decorative blobs / waves / marquee ---------- */
.blob { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(2px); z-index: 0; }
.blob-1 { width: 420px; height: 420px; background: radial-gradient(circle at 40% 40%, rgba(217, 192, 163, .55), rgba(217, 192, 163, 0) 70%); }
.blob-2 { width: 520px; height: 520px; background: radial-gradient(circle at 50% 50%, rgba(185, 138, 146, .35), rgba(185, 138, 146, 0) 70%); }
.blob-3 { width: 340px; height: 340px; background: radial-gradient(circle at 50% 50%, rgba(235, 214, 213, .8), rgba(235, 214, 213, 0) 70%); }
.wave { line-height: 0; position: relative; z-index: 2; margin-bottom: -1px; }
.wave svg { width: 100%; height: 54px; display: block; }
.wave svg path { fill: currentColor; }
.wave--ivory { color: var(--ivory); }
.wave--cream { color: var(--cream); }
.wave--blush { color: var(--rose-pale); }
.wave--mauve { color: var(--mauve); }
.wave--plum { color: var(--plum); }
.wave--sand { color: var(--sand-pale); }
.wave.flip svg { transform: scaleY(-1); }
.marquee { overflow: hidden; overflow-x: clip; background: var(--mauve); color: var(--cream); padding: 16px 0; white-space: nowrap; position: relative; }
.marquee.marquee--sand { background: var(--sand); color: var(--plum); }
.marquee.marquee--plum { background: var(--plum); color: var(--sand); }
.marquee .track { display: inline-flex; gap: 0; animation: marquee 40s linear infinite; will-change: transform; }
.marquee:hover .track { animation-play-state: paused; }
.marquee span { font-family: var(--serif); font-size: 18px; letter-spacing: 2px; text-transform: uppercase; padding: 0 22px; display: inline-flex; align-items: center; gap: 22px; }
.marquee span::after { content: '✿'; font-size: 13px; opacity: .8; }
.marquee em { font-family: var(--script); font-style: normal; text-transform: none; font-size: 26px; letter-spacing: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal-left { transform: translateX(-40px); }
.js .reveal-right { transform: translateX(40px); }
.js .reveal-zoom { transform: scale(.92); }
.reveal.in { opacity: 1; transform: none; }
.js .stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(1) { transition-delay: .05s; }
.stagger.in > *:nth-child(2) { transition-delay: .15s; }
.stagger.in > *:nth-child(3) { transition-delay: .25s; }
.stagger.in > *:nth-child(4) { transition-delay: .35s; }
.stagger.in > *:nth-child(5) { transition-delay: .45s; }
.stagger.in > *:nth-child(6) { transition-delay: .55s; }
.stagger.in > *:nth-child(7) { transition-delay: .65s; }
.stagger.in > *:nth-child(8) { transition-delay: .75s; }
.stagger.in > *:nth-child(n+9) { transition-delay: .85s; }
[data-parallax] { will-change: transform; }

/* ---------- Sections ---------- */
section { padding: 100px 0; position: relative; overflow-x: clip; }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(32px, 3.8vw, 46px); }
.section-head h2 em { font-family: var(--script); font-style: normal; color: var(--mauve); font-size: 1.3em; line-height: .8; }
.section-head p { margin-top: 16px; color: var(--plum); font-size: 16.5px; }
.bg-ivory { background: var(--ivory); }
.bg-cream { background: var(--cream); }
.bg-blush { background: var(--rose-pale); }
.bg-sand { background: var(--sand-pale); }
.bg-mauve { background: var(--mauve); color: var(--cream); }
.bg-mauve h1, .bg-mauve h2, .bg-mauve h3, .bg-mauve p { color: var(--cream); }
.bg-mauve .kicker { color: var(--sand); }
.bg-plum { background: var(--plum); color: var(--cream); }
.bg-plum h1, .bg-plum h2, .bg-plum h3 { color: var(--cream); }
.bg-plum .kicker { color: var(--sand); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 84px 0 70px; overflow: hidden; background: var(--ivory); }
.page-hero .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.page-hero h1 { font-size: clamp(38px, 5vw, 60px); }
.page-hero h1 em { font-family: var(--script); font-style: normal; color: var(--mauve); font-size: 1.25em; line-height: .85; }
.page-hero .lede { margin: 20px 0 28px; max-width: 540px; }
.page-hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero .art { position: relative; }
.page-hero .art .photo { border-radius: 260px 260px var(--radius) var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 4.4; }
.page-hero .art .photo img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .art .seal { position: absolute; left: -30px; bottom: 30px; width: 150px; filter: drop-shadow(0 12px 24px rgba(92, 66, 71, .25)); }
.page-hero.compact { padding: 70px 0 56px; }
.page-hero.compact .wrap { display: block; text-align: center; }
.page-hero.compact .lede { margin: 20px auto 28px; }
.page-hero.compact .actions { justify-content: center; }
.crumbs { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--mauve); margin-bottom: 14px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* ---------- Home hero + slider ---------- */
.hero { padding: 70px 0 90px; overflow: hidden; background: var(--cream); }
.hero .wrap { display: grid; grid-template-columns: 1.02fr .98fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(38px, 4.6vw, 58px); }
.hero h1 em { font-family: var(--script); font-style: normal; color: var(--mauve); font-size: 1.25em; line-height: .85; }
.hero .lede { font-size: 17.5px; max-width: 560px; margin: 22px 0 32px; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .creds { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.cred {
  display: inline-flex; align-items: center; gap: 10px; background: var(--ivory); border: 1px solid rgba(165, 106, 118, .18);
  border-radius: 999px; padding: 8px 16px 8px 8px; font-size: 12px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--plum);
  box-shadow: var(--shadow-soft);
}
.cred img, .cred .ic { width: 34px; height: 34px; border-radius: 50%; object-fit: contain; background: #fff; }
.cred .ic { display: grid; place-items: center; background: var(--mauve); color: var(--cream); font-family: var(--serif); font-size: 13px; letter-spacing: 1px; }

.hero-slider { position: relative; }
.slider { position: relative; }
.slider .slides { position: relative; }
.slider[data-mode="fade"] .slides { aspect-ratio: 4 / 4.5; border-radius: 260px 260px var(--radius) var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.slider[data-mode="fade"] .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s var(--ease); }
.slider[data-mode="fade"] .slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 7s linear; }
.slider[data-mode="fade"] .slide.active { opacity: 1; z-index: 1; }
.slider[data-mode="fade"] .slide.active img { transform: scale(1); }
.slide .caption {
  position: absolute; left: 22px; right: 22px; bottom: 22px; background: rgba(255, 253, 249, .92); backdrop-filter: blur(8px);
  border-radius: 16px; padding: 14px 18px; font-size: 13.5px; color: var(--plum); display: flex; align-items: center; gap: 12px;
  transform: translateY(16px); opacity: 0; transition: opacity .8s .4s, transform .8s .4s var(--ease);
}
.slide.active .caption { transform: none; opacity: 1; }
.slide .caption b { font-family: var(--serif); font-weight: 400; font-size: 17px; display: block; }
.slider-nav { position: absolute; z-index: 3; display: flex; gap: 8px; }
.hero-slider .slider-nav { right: 18px; top: 18px; }
.slider-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 0; background: rgba(255, 253, 249, .92); color: var(--mauve); cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow-soft); transition: transform .25s, background .25s;
}
.slider-btn:hover { transform: scale(1.06); background: #fff; }
.slider-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.slider-dots { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.slider-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: var(--dusty); opacity: .45; cursor: pointer; padding: 0; transition: all .3s; }
.slider-dots button.active { opacity: 1; width: 28px; border-radius: 6px; background: var(--mauve); }
.hero-slider .slide .caption { left: 136px; }
.hero-slider .seal { position: absolute; left: -34px; bottom: 54px; width: 154px; filter: drop-shadow(0 12px 24px rgba(92, 66, 71, .25)); z-index: 2; }
.hero-slider .ring { position: absolute; right: -44px; top: -44px; width: 190px; height: 190px; border: 1px solid var(--dusty); border-radius: 50%; opacity: .6; }
.hero-slider .ring-2 { position: absolute; left: 30px; top: -30px; width: 90px; height: 90px; border: 1px dashed var(--sand); border-radius: 50%; opacity: .9; }

/* Track slider (testimonials etc.) */
.slider[data-mode="track"] { overflow: hidden; }
.slider[data-mode="track"] .slides { display: flex; transition: transform .8s var(--ease); }
.slider[data-mode="track"] .slide { flex: 0 0 100%; padding: 0 6px; }
.slider[data-mode="track"][data-per="3"] .slide { flex-basis: 33.3333%; }
.slider[data-mode="track"][data-per="2"] .slide { flex-basis: 50%; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 22px; }
.slider-controls .slider-dots { margin: 0; }

/* ---------- Intro strip (3 pillars) ---------- */
.pillars .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar { background: var(--ivory); border-radius: var(--radius); padding: 34px 30px; border: 1px solid rgba(165, 106, 118, .12); text-align: center; transition: transform .3s var(--ease), box-shadow .3s; }
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar .ic { width: 64px; height: 64px; border-radius: 50%; background: var(--rose-pale); display: grid; place-items: center; margin: 0 auto 18px; }
.pillar .ic svg { width: 28px; height: 28px; stroke: var(--mauve); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 { font-size: 22px; margin-bottom: 8px; }
.pillar p { font-size: 14.5px; color: var(--plum); margin: 0; }

/* ---------- Split (image + text) ---------- */
.split .wrap { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: center; }
.split.reverse .wrap > :first-child { order: 2; }
.split h2 { font-size: clamp(30px, 3.4vw, 42px); margin-bottom: 18px; }
.split h2 em { font-family: var(--script); font-style: normal; color: var(--mauve); font-size: 1.3em; line-height: .8; }
.split p { color: var(--plum); }
.frame { position: relative; }
.frame img.main { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 1 / 1.05; object-fit: cover; width: 100%; }
.frame.arch img.main { border-radius: 300px 300px var(--radius) var(--radius); }
.frame .motif { position: absolute; right: -26px; bottom: -30px; width: 130px; opacity: .95; }
.frame .tag {
  position: absolute; left: -22px; top: 36px; background: var(--ivory); border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow);
  font-size: 13px; color: var(--plum); display: flex; gap: 12px; align-items: center; max-width: 230px;
}
.frame .tag b { font-family: var(--serif); font-weight: 400; font-size: 18px; display: block; color: var(--mauve); }
.frame .tag .n { font-family: var(--serif); font-size: 32px; color: var(--mauve); line-height: 1; }
.frame .stamp { position: absolute; right: -20px; top: -20px; width: 120px; filter: drop-shadow(0 10px 20px rgba(92, 66, 71, .22)); animation: spin 26s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.sig { font-family: var(--script); font-size: 36px; color: var(--mauve); margin-top: 22px; line-height: 1; }
.sig small { display: block; font-family: var(--sans); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--plum); margin-top: 6px; }
.checks { display: grid; gap: 12px; margin: 22px 0 28px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--plum); }
.checks li::before { content: ''; flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--mauve) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F7F1E4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 12px no-repeat; margin-top: 2px; }
.bg-mauve .checks li { color: var(--cream); }
.bg-mauve .checks li::before { background-color: var(--sand); }
blockquote.pull { margin: 26px 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--sand); font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--mauve); line-height: 1.4; }

/* ---------- Cards ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--ivory); border-radius: var(--radius); padding: 36px 32px; position: relative; overflow: hidden;
  border: 1px solid rgba(165, 106, 118, .12); transition: transform .3s var(--ease), box-shadow .3s; text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card::after { content: ''; position: absolute; right: -40px; top: -40px; width: 120px; height: 120px; border-radius: 50%; background: var(--rose-pale); opacity: 0; transition: opacity .3s; }
.card:hover::after { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card .ic { width: 56px; height: 56px; border-radius: 50%; background: var(--mauve); display: grid; place-items: center; margin-bottom: 20px; }
.card .ic svg { width: 26px; height: 26px; stroke: var(--cream); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.card.soft .ic { background: var(--rose-pale); }
.card.soft .ic svg { stroke: var(--mauve); }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--plum); margin-bottom: 16px; flex: 1; }
.card .price, .card .meta { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mauve); font-weight: 600; }
.card .btn-link { margin-top: auto; }
.card.on-cream { background: var(--cream); }
.card.on-mauve { background: var(--mauve-dark); color: var(--cream); border-color: transparent; }
.card.on-mauve h3, .card.on-mauve p { color: var(--cream); }
.card.on-mauve .ic { background: rgba(255, 253, 249, .16); }
.card.featured { background: var(--plum); color: var(--cream); border-color: transparent; }
.card.featured h3, .card.featured p { color: var(--cream); }
.card.featured .price { color: var(--sand); }

/* Icon list */
.icon-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 28px; }
.icon-list li { display: flex; gap: 16px; align-items: flex-start; }
.icon-list .ic { flex: none; width: 46px; height: 46px; border-radius: 14px; background: var(--rose-pale); display: grid; place-items: center; }
.icon-list .ic svg { width: 22px; height: 22px; stroke: var(--mauve); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.icon-list b { font-family: var(--serif); font-weight: 400; font-size: 19px; color: var(--plum); display: block; margin-bottom: 2px; }
.icon-list p { font-size: 14.5px; color: var(--plum); margin: 0; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: var(--ivory);
  border: 1px solid rgba(165, 106, 118, .2); font-size: 13.5px; color: var(--plum); font-weight: 500; transition: all .25s;
}
.chip::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--mauve); }
.chip:hover { background: var(--mauve); color: var(--cream); border-color: var(--mauve); transform: translateY(-2px); }
.chip:hover::before { background: var(--cream); }
.chip.filter { cursor: pointer; text-decoration: none; }
.chip.filter.active { background: var(--plum); color: var(--cream); border-color: var(--plum); }
.chip.filter.active::before { background: var(--sand); }

/* ---------- Credentials strip ---------- */
.credentials { background: var(--ivory); }
.credentials .row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.credential { display: flex; gap: 20px; align-items: center; background: var(--cream); border-radius: var(--radius); padding: 26px 28px; border: 1px solid rgba(165, 106, 118, .12); transition: transform .3s var(--ease), box-shadow .3s; }
.credential:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.credential .badge { flex: none; width: 88px; height: 88px; border-radius: 50%; background: #fff; display: grid; place-items: center; padding: 8px; box-shadow: var(--shadow-soft); overflow: hidden; }
.credential .badge img { width: 100%; height: 100%; object-fit: contain; }
.credential .badge.text { background: var(--mauve); color: var(--cream); font-family: var(--serif); font-size: 26px; letter-spacing: 1px; }
.credential .badge.text small { display: block; font-family: var(--sans); font-size: 8.5px; letter-spacing: 2px; text-transform: uppercase; text-align: center; margin-top: 2px; }
.credential h3 { font-size: 19px; margin-bottom: 4px; }
.credential p { font-size: 13.5px; color: var(--plum); margin: 0; }

/* ---------- Steps ---------- */
.steps .row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: step; }
.step { position: relative; padding: 34px 30px 30px; background: var(--ivory); border-radius: var(--radius); border: 1px solid rgba(165, 106, 118, .12); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--serif); font-size: 56px; color: var(--dusty); line-height: 1; display: block; margin-bottom: 14px;
}
.step h3 { font-size: 22px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--plum); margin: 0; }
.steps.four .row { grid-template-columns: repeat(4, 1fr); }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--ivory); border-radius: var(--radius); padding: 38px 36px; border: 1px solid rgba(165, 106, 118, .12); height: 100%;
  display: flex; flex-direction: column; position: relative;
}
.testimonial::before { content: '“'; font-family: var(--serif); font-size: 90px; color: var(--sand); line-height: .6; position: absolute; top: 26px; right: 30px; opacity: .9; }
.testimonial p { font-family: var(--serif); font-size: 18.5px; color: var(--plum); font-style: italic; flex: 1; margin: 0 0 20px; line-height: 1.5; }
.testimonial cite { font-style: normal; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mauve); font-weight: 600; display: flex; align-items: center; gap: 10px; }
.testimonial cite::before { content: ''; width: 26px; height: 1.5px; background: var(--mauve); }
.stars { color: var(--sand); letter-spacing: 3px; font-size: 14px; margin-bottom: 14px; }

/* ---------- Courses ---------- */
.course-teaser .grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.course {
  background: var(--ivory); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(165, 106, 118, .12);
  display: grid; grid-template-rows: auto 1fr; transition: transform .3s var(--ease), box-shadow .3s;
}
.course:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.course .cover { background: linear-gradient(135deg, var(--mauve) 0%, var(--mauve-dark) 100%); padding: 34px 32px 0; position: relative; overflow: hidden; min-height: 220px; }
.course .cover.sand { background: linear-gradient(135deg, var(--sand) 0%, #cbb08e 100%); }
.course .cover.blush { background: linear-gradient(135deg, var(--dusty) 0%, var(--mauve) 100%); }
.course .cover .device { background: var(--plum); border-radius: 14px 14px 0 0; padding: 10px 10px 0; box-shadow: 0 -10px 40px rgba(0, 0, 0, .18); margin-top: 10px; }
.course .cover .screen { background: var(--cream); border-radius: 8px 8px 0 0; padding: 26px 22px 30px; min-height: 150px; display: grid; gap: 8px; align-content: start; }
.course .cover .screen img { width: 44px; height: 44px; }
.course .cover .screen b { font-family: var(--serif); font-weight: 400; font-size: 18px; color: var(--plum); line-height: 1.2; }
.course .cover .screen span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--mauve); font-weight: 600; }
.course .cover .pill { position: absolute; top: 18px; right: 18px; background: rgba(255, 253, 249, .92); color: var(--mauve); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; padding: 7px 12px; border-radius: 999px; }
.course .body { padding: 30px 32px 32px; display: flex; flex-direction: column; }
.course h3 { font-size: 24px; margin-bottom: 8px; }
.course .body p { font-size: 15px; color: var(--plum); flex: 1; }
.course .body .btn { align-self: flex-start; }

/* Course detail (courses page) */
.course-detail { padding: 90px 0; }
.course-detail .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.course-detail.reverse .wrap > :first-child { order: 2; }
.course-detail h2 { font-size: clamp(30px, 3.4vw, 42px); margin-bottom: 8px; }
.course-detail .meta-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 12px 0 18px; }
.course-detail .learn { margin: 24px 0 8px; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--mauve); font-weight: 700; }
.course-detail .btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.course-detail .fine { font-size: 12.5px; color: var(--plum); opacity: .75; margin-top: 16px; max-width: 520px; }
.mockup { position: relative; padding: 30px; }
.mockup .bg { position: absolute; inset: 0; border-radius: var(--radius); background: linear-gradient(135deg, var(--rose-pale), var(--blush)); }
.mockup .bg.sand { background: linear-gradient(135deg, var(--sand-pale), var(--sand)); }
.mockup .laptop { position: relative; background: var(--plum); border-radius: 18px 18px 6px 6px; padding: 14px 14px 0; box-shadow: var(--shadow); }
.mockup .laptop .screen { background: var(--cream); border-radius: 10px 10px 0 0; padding: 30px 28px; min-height: 240px; display: grid; gap: 10px; align-content: center; text-align: center; justify-items: center; }
.mockup .laptop .screen img { width: 70px; }
.mockup .laptop .screen b { font-family: var(--serif); font-weight: 400; font-size: 24px; color: var(--plum); line-height: 1.2; }
.mockup .laptop .screen span { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--mauve); font-weight: 600; }
.mockup .laptop .screen .play { width: 54px; height: 54px; border-radius: 50%; background: var(--mauve); display: grid; place-items: center; margin-top: 6px; box-shadow: 0 8px 20px rgba(165, 106, 118, .4); }
.mockup .laptop .screen .play svg { width: 20px; height: 20px; fill: var(--cream); margin-left: 3px; }
.mockup .base { position: relative; height: 14px; background: #4a353a; border-radius: 0 0 14px 14px; margin: 0 -18px; }
.mockup .float-card { position: absolute; background: var(--ivory); border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow); font-size: 13px; color: var(--plum); display: flex; gap: 10px; align-items: center; }
.mockup .float-card b { font-family: var(--serif); font-weight: 400; color: var(--mauve); font-size: 16px; display: block; }
.mockup .float-card.tl { left: -10px; top: 10px; }
.mockup .float-card.br { right: -10px; bottom: 26px; }

/* Bundle band */
.bundle { background: var(--mauve); color: var(--cream); padding: 80px 0; position: relative; overflow: hidden; }
.bundle .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.bundle h2 { color: var(--cream); font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 14px; }
.bundle p { color: var(--cream); opacity: .95; }
.bundle .kicker { color: var(--sand); }
.bundle .btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.bundle .motif-bg { position: absolute; right: -60px; bottom: -80px; width: 460px; opacity: .08; pointer-events: none; }
.bundle .art { display: grid; place-items: center; }
.bundle .art img { width: min(100%, 320px); filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .18)); }

/* ---------- Guides ---------- */
.guide-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.guide-section { padding: 70px 0; }
.guide-section h2 { font-size: clamp(28px, 3vw, 38px); margin-bottom: 8px; }
.guide-section .sub-head { color: var(--plum); max-width: 620px; margin-bottom: 34px; }
.guide {
  background: var(--ivory); border-radius: var(--radius); border: 1px solid rgba(165, 106, 118, .12); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.guide:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.guide .top { padding: 30px 30px 0; display: flex; justify-content: space-between; align-items: flex-start; }
.guide .top .ic { width: 54px; height: 54px; border-radius: 16px; background: var(--rose-pale); display: grid; place-items: center; }
.guide .top .ic svg { width: 26px; height: 26px; stroke: var(--mauve); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.guide .type { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--mauve); font-weight: 700; background: var(--cream); padding: 6px 12px; border-radius: 999px; }
.guide .body { padding: 20px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.guide h3 { font-size: 21px; margin-bottom: 8px; }
.guide p { font-size: 14.5px; color: var(--plum); flex: 1; }
.guide .btn { align-self: flex-start; }

/* ---------- Pricing ---------- */
.pricing .grid { grid-template-columns: repeat(3, 1fr); }
.price-card { background: var(--ivory); border-radius: var(--radius); padding: 36px 32px; border: 1px solid rgba(165, 106, 118, .12); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.hl { background: var(--plum); color: var(--cream); }
.price-card.hl h3, .price-card.hl p, .price-card.hl li { color: var(--cream); }
.price-card h3 { font-size: 22px; margin-bottom: 6px; }
.price-card .amount { font-family: var(--serif); font-size: 36px; color: var(--mauve); margin: 8px 0 4px; line-height: 1; }
.price-card.hl .amount { color: var(--sand); }
.price-card .amount small { display: block; font-family: var(--sans); font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase; color: inherit; opacity: .8; margin-top: 8px; line-height: 1.4; }
.price-card .desc { font-size: 14px; color: var(--plum); margin-bottom: 18px; }
.price-card ul { display: grid; gap: 8px; margin-bottom: 24px; flex: 1; }
.price-card li { font-size: 14px; color: var(--plum); display: flex; gap: 10px; }
.price-card li::before { content: '✓'; color: var(--mauve); font-weight: 700; }
.price-card.hl li::before { color: var(--sand); }
.note { font-size: 13px; color: var(--plum); opacity: .8; }

/* ---------- Instagram / social ---------- */
.social { background: var(--ivory); }
.social .handle { font-family: var(--script); font-size: 34px; color: var(--mauve); text-decoration: none; display: inline-block; margin-top: 4px; }
.social .handle:hover { text-decoration: underline; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 36px; }
.ig-grid .ig-embed { grid-column: span 2; }
.ig-grid .ig-embed blockquote { margin: 0 !important; min-width: 0 !important; width: 100% !important; }
.ig-tile {
  aspect-ratio: 1; border-radius: 18px; overflow: hidden; position: relative; display: block; text-decoration: none;
  background: var(--rose-pale); border: 1px solid rgba(165, 106, 118, .14); transition: transform .3s var(--ease), box-shadow .3s;
}
.ig-tile:hover { transform: translateY(-5px) scale(1.02); box-shadow: var(--shadow); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; }
.ig-tile .ov { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(92, 66, 71, .0); transition: background .3s; color: var(--cream); }
.ig-tile:hover .ov { background: rgba(92, 66, 71, .45); }
.ig-tile .ov svg { width: 34px; height: 34px; opacity: 0; transition: opacity .3s; stroke: currentColor; fill: none; stroke-width: 1.6; }
.ig-tile:hover .ov svg { opacity: 1; }
.ig-tile.placeholder { display: grid; place-items: center; color: var(--mauve); }
.ig-tile.placeholder svg { width: 40%; height: 40%; stroke: currentColor; fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; opacity: .8; }
.ig-tile.placeholder:nth-child(2n) { background: var(--cream-deep); }
.ig-tile.placeholder:nth-child(3n) { background: var(--sand-pale); }
.social-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none; padding: 13px 22px; border-radius: 999px; font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; border: 1.5px solid var(--mauve); color: var(--mauve); transition: all .25s;
}
.social-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.social-btn:hover { background: var(--mauve); color: var(--cream); transform: translateY(-2px); }
.social-btn.soon { border-style: dashed; opacity: .7; cursor: default; }
.social-btn.soon:hover { background: transparent; color: var(--mauve); transform: none; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--plum); color: var(--cream); padding: 90px 0; position: relative; overflow: hidden; text-align: center; }
.cta-band h2 { color: var(--cream); font-size: clamp(32px, 4vw, 48px); margin-bottom: 14px; }
.cta-band h2 em { font-family: var(--script); font-style: normal; color: var(--sand); font-size: 1.3em; line-height: .8; }
.cta-band p { color: var(--cream); opacity: .9; max-width: 600px; margin: 0 auto 28px; }
.cta-band .kicker { color: var(--sand); }
.cta-band .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .motif-bg { position: absolute; left: -80px; bottom: -120px; width: 420px; opacity: .07; pointer-events: none; }
.cta-band .motif-bg.right { left: auto; right: -80px; transform: scaleX(-1); }

/* ---------- FAQ ---------- */
details { border-bottom: 1px solid rgba(165, 106, 118, .2); padding: 18px 0; }
details summary { cursor: pointer; font-family: var(--serif); font-size: 19px; color: var(--plum); list-style: none; display: flex; justify-content: space-between; gap: 20px; align-items: center; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: '+'; color: var(--mauve); font-size: 26px; line-height: 1; transition: transform .3s; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin: 12px 0 0; font-size: 15px; color: var(--plum); max-width: 680px; }

/* ---------- Contact ---------- */
.contact .wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact .info { display: grid; gap: 22px; margin-top: 26px; }
.contact .info div b { display: block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--mauve); margin-bottom: 4px; }
.contact .info a { text-decoration: none; }
.contact .info a:hover { text-decoration: underline; }
form.form { background: var(--ivory); border-radius: var(--radius); padding: 36px; border: 1px solid rgba(165, 106, 118, .12); display: grid; gap: 16px; box-shadow: var(--shadow-soft); }
form.form label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mauve); font-weight: 600; display: grid; gap: 6px; }
form.form input, form.form select, form.form textarea {
  font: inherit; padding: 13px 15px; border: 1px solid rgba(165, 106, 118, .3); border-radius: 12px; background: var(--cream); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
form.form input:focus, form.form select:focus, form.form textarea:focus { outline: none; border-color: var(--mauve); box-shadow: 0 0 0 4px rgba(165, 106, 118, .14); }
form.form textarea { min-height: 120px; resize: vertical; }
form.form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form.form small { font-size: 12px; color: var(--plum); opacity: .8; }
.form-note { color: var(--mauve); font-weight: 600; margin: 0; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--plum); color: var(--cream); padding: 72px 0 28px; }
footer .cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
footer h4 { font-family: var(--serif); font-weight: 400; font-size: 18px; margin: 0 0 16px; color: var(--sand); }
footer a { color: var(--cream); text-decoration: none; opacity: .9; font-size: 14px; display: block; margin-bottom: 9px; transition: opacity .2s, transform .2s; }
footer a:hover { opacity: 1; transform: translateX(3px); }
footer .fb { display: flex; gap: 16px; align-items: flex-start; }
footer .fb img { width: 84px; height: 84px; border-radius: 50%; flex: none; }
footer .fb p { font-size: 14px; max-width: 320px; opacity: .9; margin: 6px 0 0; }
footer .fb .est { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sand); margin-top: 10px; }
footer .soon { opacity: .55; font-size: 14px; margin-bottom: 9px; }
footer .socials { display: flex; gap: 10px; margin-top: 14px; }
footer .socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(247, 241, 228, .35); display: grid; place-items: center; margin: 0; }
footer .socials a:hover { background: var(--mauve); border-color: var(--mauve); transform: translateY(-2px); }
footer .socials svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
footer .legal { border-top: 1px solid rgba(247, 241, 228, .2); margin-top: 48px; padding-top: 22px; font-size: 12px; opacity: .75; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* Back to top */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--mauve); color: var(--cream);
  display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow); opacity: 0; transform: translateY(16px); transition: opacity .3s, transform .3s var(--ease);
}
.to-top.show { opacity: 1; transform: none; }
.to-top svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  nav.links { gap: 22px; }
  .nav-cta .btn { display: none; }
}
@media (max-width: 980px) {
  :root { --header-h: 76px; }
  .hero .wrap, .page-hero .wrap, .split .wrap, .contact .wrap, .course-detail .wrap, .bundle .wrap { grid-template-columns: 1fr; }
  .split.reverse .wrap > :first-child, .course-detail.reverse .wrap > :first-child { order: 0; }
  .hero-slider, .page-hero .art { max-width: 520px; margin: 0 auto; width: 100%; }
  .hero-slider .seal, .page-hero .art .seal { left: -6px; }
  .grid, .grid-4, .pillars .wrap, .credentials .row, .steps .row, .steps.four .row, .pricing .grid, .course-teaser .grid { grid-template-columns: 1fr 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .ig-grid .ig-embed { grid-column: span 3; }
  footer .cols { grid-template-columns: 1fr 1fr; }
  .icon-list { grid-template-columns: 1fr; }
  .slider[data-mode="track"][data-per="3"] .slide { flex-basis: 50%; }
  nav.links { display: none; }
  .menu-btn { display: block; }
  nav.links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; align-items: stretch;
    padding: 18px 24px 24px; gap: 4px; border-bottom: 1px solid rgba(165, 106, 118, .2); box-shadow: var(--shadow);
  }
  nav.links.open > a, nav.links.open .has-sub > a { padding: 12px 0; font-size: 14px; border-bottom: 1px solid rgba(165, 106, 118, .1); }
  nav.links.open > a::after, nav.links.open .has-sub > a::after { display: none; }
  .has-sub { flex-wrap: wrap; justify-content: space-between; }
  .has-sub > a { flex: 1; }
  .sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; background: transparent; padding: 0 0 6px 14px; display: none; width: 100%; }
  .has-sub.open .sub { display: block; }
  nav.links.open .mobile-cta { margin-top: 14px; }
  .frame .tag { left: 0; }
  .mockup .float-card.tl { left: 6px; }
  .mockup .float-card.br { right: 6px; }
}
@media (max-width: 600px) {
  .wrap { width: calc(100% - 32px); }
  section { padding: 64px 0; }
  .hero { padding: 44px 0 64px; }
  .page-hero { padding: 56px 0 44px; }
  .grid, .grid-2, .grid-4, .pillars .wrap, .credentials .row, .steps .row, .steps.four .row, .pricing .grid, .course-teaser .grid, footer .cols { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ig-grid .ig-embed { grid-column: span 2; }
  .slider[data-mode="track"][data-per="3"] .slide, .slider[data-mode="track"][data-per="2"] .slide { flex-basis: 100%; }
  form.form .two { grid-template-columns: 1fr; }
  form.form { padding: 26px 20px; }
  .brand .name { display: none; }
  .hero-slider .seal, .page-hero .art .seal { width: 108px; bottom: 16px; left: 0; }
  .hero-slider .slide .caption { left: 104px; right: 14px; bottom: 14px; padding: 10px 14px; font-size: 12.5px; }
  .slide .caption b { font-size: 15px; }
  .hero .creds { gap: 10px; }
  .btn { padding: 14px 22px; }
  .hero .actions .btn, .page-hero .actions .btn, .cta-band .actions .btn { width: 100%; }
  .marquee span { font-size: 15px; }
  .credential { flex-direction: column; text-align: center; }
  .frame .motif { width: 100px; right: -10px; }
  .to-top { right: 14px; bottom: 14px; }
  .topbar { font-size: 11.5px; }
}

/* ---- review fixes: contact info list, dark-section overrides, chips ---- */
.contact .info div b { font-family: var(--sans); font-weight: 600; }
.contact .info .soon { opacity: .55; cursor: default; }
.contact .info .soon:hover { text-decoration: none; }
.split.bg-mauve p, .split.bg-plum p, .bg-mauve .lede, .bg-plum .lede { color: var(--cream); }
.split.bg-mauve h2 em, .split.bg-plum h2 em, .bg-mauve .section-head h2 em, .bg-plum .section-head h2 em { color: var(--sand); }
.bg-mauve .btn-link, .bg-plum .btn-link { color: var(--cream); }
a.chip { text-decoration: none; }
.wave.from-mauve { background: var(--mauve); }
.wave.from-plum { background: var(--plum); }
.wave.from-cream { background: var(--cream); }
.wave.from-ivory { background: var(--ivory); }
.wave.from-blush { background: var(--rose-pale); }
.wave.from-sand { background: var(--sand-pale); }

.bundle h2 em { font-family: var(--script); font-style: normal; color: var(--sand); font-size: 1.3em; line-height: .8; }

.form-card { background: var(--ivory); border-radius: var(--radius); padding: 36px; border: 1px solid rgba(165, 106, 118, .12); display: grid; gap: 16px; box-shadow: var(--shadow-soft); }
.form-card h3 { font-size: 24px; }
.form-card p { color: var(--plum); margin: 0; }
.form-card .btns { display: flex; gap: 12px; flex-wrap: wrap; }
.form-card small { font-size: 12px; color: var(--plum); opacity: .8; }
.form-card small a { color: var(--mauve); }

/* ---------- Course pricing bits ---------- */
.price-chip { background: var(--plum); color: var(--cream); border-color: var(--plum); }
.price-chip::before { display: none; }
.price-chip b { font-family: var(--serif); font-weight: 400; font-size: 16px; }
.price-chip s { opacity: .7; font-size: 12px; margin-left: 2px; }
.bundle-price { font-family: var(--serif); font-size: 30px; margin: 6px 0 4px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bundle-price s { font-size: 18px; opacity: .7; }
.save-pill { font-family: var(--sans); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; background: var(--sand); color: var(--plum); padding: 5px 10px; border-radius: 999px; }
.course .row-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.course .price { font-family: var(--serif); font-size: 22px; color: var(--mauve); }
.mockup .laptop .screen.has-img { padding: 0; position: relative; min-height: 240px; }
.mockup .laptop .screen.has-img .cover-img { width: 100%; height: 240px; object-fit: cover; border-radius: 10px 10px 0 0; }
.mockup .laptop .screen.has-img b, .mockup .laptop .screen.has-img span { position: absolute; left: 24px; right: 24px; color: var(--ivory); text-shadow: 0 2px 10px rgba(0, 0, 0, .5); }
.mockup .laptop .screen.has-img b { bottom: 44px; }
.mockup .laptop .screen.has-img span { bottom: 22px; color: var(--sand); }
.mockup .laptop .screen.has-img .play { position: absolute; right: 22px; top: 22px; }
.course .cover .screen.has-img { padding: 0; position: relative; }
.course .cover .screen.has-img .cover-img { width: 100%; height: 150px; object-fit: cover; border-radius: 8px 8px 0 0; }
.course .cover .screen.has-img b, .course .cover .screen.has-img span { position: absolute; left: 18px; right: 18px; color: var(--ivory); text-shadow: 0 2px 8px rgba(0, 0, 0, .5); }
.course .cover .screen.has-img b { bottom: 30px; } .course .cover .screen.has-img span { bottom: 12px; color: var(--sand); }
.course .cover .screen.has-img .play { display: none; }
.course .cover .screen .play { display: none; }

/* ---------- Checkout ---------- */
.checkout-page .nav .secure { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; color: var(--mauve); }
.checkout-page .nav .secure svg { width: 16px; height: 16px; }
.checkout-page nav.links { display: flex !important; }
.checkout-page .menu-btn { display: none; }
.checkout { padding: 56px 0 90px; min-height: 70vh; }
.co-head { margin-bottom: 26px; }
.co-head h1 { font-size: clamp(32px, 4vw, 44px); }
.co-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start; }
.co-main { display: grid; gap: 22px; }
.co-card { background: var(--ivory); border: 1px solid rgba(165, 106, 118, .14); border-radius: var(--radius); padding: 30px 32px; box-shadow: var(--shadow-soft); }
.co-card h2 { font-size: 24px; margin-bottom: 16px; }
.co-card h3 { font-size: 22px; margin-bottom: 18px; }
.co-card .two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.co-card label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mauve); font-weight: 600; display: grid; gap: 6px; margin-bottom: 12px; }
.co-card input:not([type="checkbox"]):not([type="radio"]), .co-card textarea { font: inherit; padding: 13px 15px; border: 1px solid rgba(165, 106, 118, .3); border-radius: 12px; background: var(--cream); color: var(--ink); width: 100%; }
.co-card input:focus, .co-card textarea:focus { outline: none; border-color: var(--mauve); box-shadow: 0 0 0 4px rgba(165, 106, 118, .14); }
.co-card label.check { display: flex; align-items: center; gap: 10px; text-transform: none; letter-spacing: 0; font-size: 14.5px; color: var(--ink); font-weight: 500; margin: 6px 0 12px; }
.co-card .hint { font-size: 13px; color: var(--plum); opacity: .8; margin: 4px 0 14px; }
.co-methods { display: flex; gap: 22px; margin-bottom: 18px; flex-wrap: wrap; }
.co-methods .method { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; color: var(--plum); cursor: pointer; text-transform: none; letter-spacing: 0; margin: 0; }
.co-methods input { width: 20px; height: 20px; accent-color: var(--mauve); }
.payment-element { min-height: 120px; }
.co-error { background: #f8e9e8; color: #8a2f2a; border-radius: 12px; padding: 12px 16px; font-size: 14px; margin: 16px 0 0; }
.co-unconfigured { background: var(--rose-pale); border-radius: 14px; padding: 18px 20px; }
.co-summary { position: sticky; top: calc(var(--header-h) + 20px); }
.co-item { display: grid; grid-template-columns: 54px 1fr auto; gap: 14px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid rgba(165, 106, 118, .16); }
.co-item img { width: 54px; height: 54px; border-radius: 50%; }
.co-item b { font-family: var(--serif); font-weight: 400; font-size: 17px; color: var(--plum); display: block; line-height: 1.25; }
.co-item span:not(.amt) { font-size: 12px; color: var(--mauve); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.co-item .amt { font-weight: 600; color: var(--plum); }
.co-lines { display: grid; gap: 8px; padding: 16px 0; border-bottom: 1px solid rgba(165, 106, 118, .16); font-size: 14.5px; color: var(--plum); }
.co-lines div { display: flex; justify-content: space-between; }
.co-due { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-size: 16px; font-weight: 600; color: var(--plum); }
.co-due em { font-style: normal; font-size: 11px; letter-spacing: 1.5px; background: var(--sand-pale); color: var(--plum); padding: 4px 8px; border-radius: 999px; margin-right: 6px; }
.co-pay { width: 100%; font-size: 15px; padding: 17px 24px; }
.co-summary .fine { font-size: 12px; color: var(--plum); opacity: .75; margin: 14px 0 0; }
.co-summary .delivery { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--plum); background: var(--rose-pale); border-radius: 12px; padding: 12px 14px; margin: 16px 0 0; }
.co-summary .delivery svg { width: 18px; height: 18px; flex: none; color: var(--mauve); margin-top: 2px; }
.co-footer { padding: 26px 0; }
.co-footer .legal { border: 0; margin: 0; padding: 0; }
.co-footer a { display: inline; margin: 0; }
.complete .co-card { padding: 48px 40px; }
.co-state { display: none; }
.complete[data-state="paid"] .co-state--paid, .complete[data-state="pending"] .co-state--pending, .complete[data-state="failed"] .co-state--failed, .complete[data-state="missing"] .co-state--missing { display: block; }
.co-icon { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 18px; }
.co-icon svg { width: 32px; height: 32px; }
.co-icon.ok { background: #e3f2e8; color: #3d8b5a; }
.co-icon.wait { background: var(--sand-pale); color: var(--plum); }
.co-icon.bad { background: #f8e9e8; color: #b3423c; }
.complete h1 { font-size: clamp(32px, 4vw, 44px); margin: 8px 0 14px; }
.complete h1 em { font-family: var(--script); font-style: normal; color: var(--mauve); font-size: 1.25em; }
@media (max-width: 980px) { .co-grid { grid-template-columns: 1fr; } .co-summary { position: static; } }
@media (max-width: 600px) { .co-card { padding: 22px 18px; } .co-card .two { grid-template-columns: 1fr; } .checkout { padding: 34px 0 60px; } }

/* ---------- Policy pages ---------- */
.policy { padding: 70px 0 90px; }
.policy-body { background: var(--ivory); border: 1px solid rgba(165, 106, 118, .12); border-radius: var(--radius); padding: 44px 48px; box-shadow: var(--shadow-soft); color: var(--plum); font-size: 15.5px; }
.policy-body h2 { font-size: 26px; margin: 34px 0 12px; }
.policy-body h2:first-child { margin-top: 0; }
.policy-body h3 { font-size: 20px; margin: 24px 0 8px; }
.policy-body h4 { font-size: 17px; margin: 18px 0 6px; }
.policy-body p { margin: 0 0 14px; }
.policy-body ul, .policy-body ol { margin: 0 0 16px; padding-left: 22px; display: grid; gap: 6px; }
.policy-body ul { list-style: disc; } .policy-body ol { list-style: decimal; }
.policy-body a { color: var(--mauve); }
.policy-body i { color: var(--mauve); }
.policy-nav { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }
.policy-nav a { text-decoration: none; }
footer .policy-links { display: flex; gap: 14px; flex-wrap: wrap; width: 100%; margin-top: 4px; }
footer .policy-links a { display: inline; margin: 0; opacity: .8; font-size: 12px; text-decoration: underline; }
.co-footer .policy-links { margin: 0; width: auto; }
@media (max-width: 600px) { .policy-body { padding: 26px 20px; } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .floaters { display: none; }
  .marquee .track { animation: none; }
  .frame .stamp { animation: none; }
  .slider[data-mode="fade"] .slide img { transform: none; transition: none; }
  [data-parallax] { transform: none !important; }
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
}
