/* ============================================================
   Adriele Correa — Marketing site
   Layout + components. Tokens live in tokens.css.
   Ported from the design-system React/JSX prototype to static
   HTML/CSS so it deploys to Cloudflare Pages with no build step.
   ============================================================ */

/* -------------------- base -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; }
img { max-width: 100%; }
section { scroll-margin-top: 110px; }
*:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 3px; border-radius: 4px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.iridescent-line { height: 1px; background: var(--gradient-iridescent); border: 0; opacity: .7; }
.eyebrow--light { color: var(--lavender-300); }

/* inline SVG icon (Lucide paths via <use> sprite) */
.lic { width: 18px; height: 18px; display: inline-block; vertical-align: middle; flex-shrink: 0; }
/* <picture> shouldn't add a box — let the inner <img> obey container rules */
picture { display: contents; }

/* skip link (keyboard / screen-reader) */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--eggplant-900); color: var(--cream-50);
  padding: 10px 16px; border-radius: 999px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600; text-decoration: none;
  transition: top 160ms var(--ease-out-soft);
}
.skip-link:focus { top: 16px; color: var(--cream-50); }

/* -------------------- speech dots motif -------------------- */
.speech-dots { display: inline-flex; align-items: center; gap: 6px; }
.speech-dots span {
  width: 8px; height: 8px; border-radius: 99px; background: var(--brand-lavender);
  animation: acDots 1.4s ease-in-out infinite;
}
.speech-dots span:nth-child(2) { animation-delay: .18s; }
.speech-dots span:nth-child(3) { animation-delay: .36s; }
.speech-dots--sm span { width: 6px; height: 6px; }
.speech-dots--gold span { background: var(--gold-300); }
@keyframes acDots { 0%, 100% { opacity: .35; } 40% { opacity: 1; } }

/* -------------------- buttons -------------------- */
.btn {
  border: 0; cursor: pointer; font-family: var(--font-body); font-weight: 600;
  border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; text-decoration: none; line-height: 1;
  transition: all 200ms var(--ease-out-soft);
}
.btn--sm { height: 38px; padding: 0 18px; font-size: 14px; }
.btn--md { height: 48px; padding: 0 26px; font-size: 15px; }
.btn--lg { height: 56px; padding: 0 32px; font-size: 16px; }
.btn--primary { background: var(--brand-gold); color: var(--eggplant-900); box-shadow: var(--shadow-gold); }
.btn--primary:hover { background: var(--gold-600); color: var(--eggplant-900); transform: translateY(-1px); box-shadow: 0 18px 44px rgba(212,165,116,0.42); }
.btn--secondary { background: transparent; color: var(--fg-strong); border: 1px solid var(--border-strong); }
.btn--secondary:hover { background: var(--cream-50); border-color: var(--brown-500); color: var(--brown-500); }
.btn--ghost {
  background: transparent; color: var(--fg-strong); padding: 0; height: auto; border-radius: 0;
  text-decoration: underline; text-decoration-color: var(--brand-gold); text-underline-offset: 5px;
}
.btn--ghost:hover { color: var(--gold-700); }
.btn--block { width: 100%; }
.btn .lic { width: 18px; height: 18px; }

/* -------------------- nav -------------------- */
.nav-wrap {
  position: fixed; top: 22px; left: 0; right: 0; z-index: 50;
  pointer-events: none; transition: top 240ms var(--ease-out-soft);
}
.nav-wrap.scrolled { top: 14px; }
.nav { max-width: 1180px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: center; pointer-events: auto; }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  width: 100%; max-width: 980px; padding: 12px 14px 12px 22px;
  background: rgba(240, 235, 225, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border); border-radius: 999px;
  box-shadow: var(--shadow-sm); transition: box-shadow 240ms var(--ease-out-soft);
}
.nav-wrap.scrolled .nav__inner { box-shadow: var(--shadow-md); }
.nav__brand { display: inline-flex; text-decoration: none; }
.wordmark { display: inline-flex; align-items: center; gap: 12px; }
.wordmark img { height: 34px; width: auto; display: block; }
.wordmark__name { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--fg-strong); letter-spacing: -0.01em; }
.nav__links { display: flex; gap: 26px; }
.nav__links a { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--fg-strong); text-decoration: none; padding: 8px 4px; transition: color 160ms var(--ease-out-soft); }
.nav__links a:hover { color: var(--gold-700); }
.nav__toggle {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid var(--border-strong); border-radius: 999px;
  background: transparent; color: var(--fg-strong); cursor: pointer;
}

.mobile-menu {
  position: fixed; top: 78px; left: 16px; right: 16px; z-index: 49;
  background: rgba(240, 235, 225, 0.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow-lg);
  padding: 18px; display: none; flex-direction: column; gap: 6px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-body); font-size: 16px; font-weight: 500; color: var(--fg-strong); text-decoration: none; padding: 12px 14px; border-radius: 12px; }
.mobile-menu a:hover { background: var(--cream-50); color: var(--brown-500); }
.mobile-menu .btn { margin-top: 8px; }

/* -------------------- generic section -------------------- */
.section { padding: 96px 0; position: relative; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section__head--left { text-align: left; margin-left: 0; margin-right: 0; }
.section__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(32px, 4.2vw, 48px); line-height: 1.08; letter-spacing: -0.02em;
  color: var(--fg-strong); margin: 14px 0 0; text-wrap: balance;
}
.section__title em { font-style: italic; color: var(--brown-500); }
.section__lead {
  font-family: var(--font-body); font-size: 18px; line-height: 1.6;
  color: var(--fg-muted); margin: 18px auto 0; max-width: 580px; text-wrap: pretty;
}
.section__head--left .section__lead { margin-left: 0; margin-right: 0; }

/* -------------------- hero -------------------- */
.hero { padding: 156px 0 100px; background: var(--gradient-hero-cream); position: relative; overflow: hidden; }
.hero__halo {
  position: absolute; right: -6%; top: 12%; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(168,146,196,0.35), rgba(212,165,116,0.18) 55%, transparent 75%);
  filter: blur(10px); pointer-events: none;
}
.hero__grid {
  max-width: 1180px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center;
}
.hero__eyebrow-row { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(44px, 6vw, 78px); line-height: 1.02; letter-spacing: -0.025em;
  color: var(--eggplant-900); margin: 0; text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--brown-500); }
.hero__lead { font-family: var(--font-body); font-size: 19px; line-height: 1.6; color: var(--fg); margin-top: 26px; max-width: 520px; text-wrap: pretty; }
.hero__actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero__social { display: flex; align-items: center; gap: 14px; margin-top: 36px; }
.hero__avatars { display: flex; }
.hero__avatars span { width: 34px; height: 34px; border-radius: 99px; border: 2px solid var(--cream-50); box-shadow: var(--shadow-xs); }
.hero__avatars span + span { margin-left: -10px; }
.hero__social p { margin: 0; font-size: 13px; color: var(--fg-muted); line-height: 1.4; }
.hero__social b { color: var(--fg-strong); }

.hero__portrait-wrap { position: relative; justify-self: end; }
.hero__portrait { width: 440px; height: 540px; max-width: 100%; border-radius: 28px; background: var(--gradient-iridescent); padding: 3px; box-shadow: var(--shadow-lg); }
.hero__portrait-inner { width: 100%; height: 100%; border-radius: 26px; overflow: hidden; position: relative; }
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; display: block; }
.hero__chip {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  background: rgba(250, 247, 240, 0.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 16px; padding: 14px 16px; box-shadow: var(--shadow-md);
}
.hero__chip-row { display: flex; gap: 10px; align-items: flex-start; }
.hero__chip p { margin: 0; font-family: var(--font-display); font-style: italic; font-size: 15px; line-height: 1.4; color: var(--eggplant-900); }
.hero__chip .attr { display: block; font-style: normal; font-family: var(--font-body); font-size: 11px; color: var(--fg-muted); margin-top: 4px; letter-spacing: .04em; }

/* -------------------- value props -------------------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vp-card {
  background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
  transition: transform 240ms var(--ease-out-soft), box-shadow 240ms var(--ease-out-soft);
}
.vp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vp-card__icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--bg-tint-lavender);
  display: flex; align-items: center; justify-content: center; color: var(--eggplant-700); margin-bottom: 22px;
}
.vp-card__icon .lic { width: 22px; height: 22px; }
.vp-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 24px; color: var(--fg-strong); margin: 0 0 12px; letter-spacing: -0.015em; line-height: 1.15; }
.vp-card p { margin: 0; color: var(--fg-muted); font-size: 15px; line-height: 1.6; }

/* -------------------- programme cards -------------------- */
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.prog-card {
  position: relative; background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px 30px 32px; box-shadow: var(--shadow-sm);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 240ms var(--ease-out-soft), box-shadow 240ms var(--ease-out-soft);
}
.prog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prog-card--featured { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.prog-card--featured:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.prog-card__bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-iridescent); }
.prog-card__eyebrow { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--eyebrow); margin-bottom: 16px; }
.prog-card--featured .prog-card__eyebrow { color: var(--brown-500); }
.prog-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 32px; color: var(--fg-strong); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 14px; }
.prog-card h3 em { font-style: italic; color: var(--brown-500); }
.prog-card__body { margin: 0; color: var(--fg-muted); font-size: 14px; line-height: 1.6; }
.prog-card__price { display: flex; align-items: baseline; gap: 8px; margin: 24px 0 18px; }
.prog-card__price .amt { font-family: var(--font-display); font-weight: 500; font-size: 38px; color: var(--fg-strong); letter-spacing: -0.02em; }
.prog-card__price .unit { color: var(--fg-muted); font-size: 13px; }
.prog-card ul { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.prog-card li { display: flex; gap: 10px; font-size: 14px; color: var(--fg); }
.prog-card li .lic { width: 16px; height: 16px; color: var(--gold-700); flex-shrink: 0; margin-top: 3px; }
.prog-card__cta { margin-top: auto; }
.prog-card__cta .lic { width: 16px; height: 16px; }

/* -------------------- process steps -------------------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 18px; }
.step__n { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 36px; color: var(--lavender-400); letter-spacing: -0.01em; margin-bottom: 14px; }
.step__line { height: 1px; background: var(--gradient-iridescent); opacity: .7; margin-bottom: 18px; }
.step h3 { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--fg-strong); margin: 0 0 10px; letter-spacing: -0.015em; line-height: 1.2; }
.step p { margin: 0; color: var(--fg-muted); font-size: 14px; line-height: 1.6; }

/* -------------------- testimonials (dark) -------------------- */
.testimonials { background: var(--eggplant-700); color: var(--cream-50); padding: 112px 0; position: relative; overflow: hidden; }
.testimonials__glow {
  position: absolute; inset: 0; opacity: .32; pointer-events: none;
  background:
    radial-gradient(60% 50% at 12% 0%, rgba(168,146,196,0.55), transparent 70%),
    radial-gradient(50% 50% at 95% 100%, rgba(212,165,116,0.40), transparent 70%);
}
.testimonials__inner { max-width: 1180px; margin: 0 auto; padding: 0 32px; position: relative; }
.testimonials__head { max-width: 720px; margin-bottom: 64px; }
.testimonials__head h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(34px, 4.4vw, 52px); line-height: 1.05; letter-spacing: -0.02em; color: var(--cream-50); margin: 14px 0 0; text-wrap: balance; }
.testimonials__head h2 em { font-style: italic; color: var(--gold-300); }
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard {
  margin: 0; padding: 28px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; flex-direction: column; gap: 20px;
}
.tcard blockquote { margin: 0; font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 20px; line-height: 1.4; color: var(--cream-50); letter-spacing: -0.005em; }
.tcard figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard__avatar { width: 38px; height: 38px; border-radius: 99px; display: flex; align-items: center; justify-content: center; color: var(--eggplant-900); font-weight: 600; font-size: 13px; letter-spacing: .02em; flex-shrink: 0; }
.tcard__name { font-size: 14px; font-weight: 600; color: var(--cream-50); }
.tcard__role { font-size: 12px; color: var(--lavender-300); }

/* -------------------- about -------------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center; }
.about__photo { position: relative; }
.about__frame { width: 100%; aspect-ratio: 4 / 5; border-radius: var(--radius-xl); background: var(--gradient-iridescent); padding: 3px; box-shadow: var(--shadow-lg); }
.about__frame-inner { width: 100%; height: 100%; border-radius: 26px; overflow: hidden; }
.about__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; display: block; }
.about__badge {
  position: absolute; bottom: -22px; right: -22px;
  background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 14px 18px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px;
}
.about__badge .txt { font-family: var(--font-body); font-size: 13px; }
.about__badge b { color: var(--fg-strong); }
.about__badge .muted { color: var(--fg-muted); }
.about__body h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(32px, 4vw, 48px); line-height: 1.08; letter-spacing: -0.02em; color: var(--fg-strong); margin: 16px 0 24px; }
.about__body h2 em { font-style: italic; color: var(--brown-500); }
.about__body p { font-size: 17px; line-height: 1.7; color: var(--fg); margin: 0 0 18px; max-width: 560px; }
.about__body p.last { margin-bottom: 32px; }
.about__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.about__actions .lic { width: 16px; height: 16px; }

/* -------------------- faq -------------------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow 200ms var(--ease-out-soft); }
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-item__btn { width: 100%; text-align: left; background: transparent; border: 0; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px; cursor: pointer; font-family: var(--font-body); }
.faq-item__q { font-family: var(--font-display); font-weight: 500; font-size: 20px; color: var(--fg-strong); letter-spacing: -0.01em; line-height: 1.25; }
.faq-toggle { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-toggle::before, .faq-toggle::after { content: ''; position: absolute; background: var(--brown-500); border-radius: 2px; transition: transform 240ms var(--ease-out-soft), opacity 200ms var(--ease-out-soft); }
.faq-toggle::before { left: 0; right: 0; top: 8px; height: 2px; }
.faq-toggle::after { top: 0; bottom: 0; left: 8px; width: 2px; }
.faq-item.open .faq-toggle::after { opacity: 0; transform: scaleY(0); }
.faq-item__panel { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 280ms var(--ease-out-soft), opacity 200ms var(--ease-out-soft); }
.faq-item.open .faq-item__panel { max-height: 400px; opacity: 1; }
.faq-item__panel p { margin: 0; padding: 0 24px 22px; font-size: 15px; line-height: 1.65; color: var(--fg-muted); }

/* -------------------- final cta -------------------- */
.final-cta { background: var(--gradient-hero-cream); padding: 112px 0; text-align: center; border-top: 1px solid var(--border); }
.final-cta__inner { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.final-cta h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(36px, 5vw, 60px); line-height: 1.05; letter-spacing: -0.02em; color: var(--eggplant-900); margin: 14px 0 18px; text-wrap: balance; }
.final-cta h2 em { font-style: italic; color: var(--brown-500); }
.final-cta p { font-family: var(--font-body); font-size: 18px; line-height: 1.65; color: var(--fg-muted); margin: 0 auto 36px; max-width: 560px; text-wrap: pretty; }

/* -------------------- footer -------------------- */
.footer { background: var(--eggplant-900); color: var(--cream-50); padding: 80px 0 36px; }
.footer__inner { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer__about .wordmark__name { color: var(--cream-50); }
.footer__about p { font-family: var(--font-body); font-size: 14px; line-height: 1.65; color: var(--lavender-300); margin: 18px 0 0; max-width: 320px; }
.footer__cta { margin-top: 22px; }
.footer__col-title { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lavender-300); margin: 0 0 18px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: var(--cream-50); text-decoration: none; font-size: 14px; }
.footer__col a:hover { color: var(--gold-300); }
.footer__bar { border: 0; border-top: 1px solid rgba(255,255,255,0.08); margin: 0 0 24px; }
.footer__meta { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--font-body); font-size: 12px; color: var(--lavender-300); }

/* -------------------- responsive -------------------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__portrait-wrap { justify-self: center; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about__photo { max-width: 420px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
}
@media (min-width: 861px) {
  .mobile-menu { display: none !important; }
}
@media (max-width: 720px) {
  .cards-3 { grid-template-columns: 1fr; }
  .prog-grid { grid-template-columns: 1fr; }
  .prog-card--featured { transform: none; }
  .prog-card--featured:hover { transform: translateY(-4px); }
  .tcards { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero { padding: 128px 0 72px; }
  .hero__portrait { width: 100%; max-width: 380px; height: auto; aspect-ratio: 44 / 54; }
  .testimonials { padding: 80px 0; }
  .final-cta { padding: 80px 0; }
  .footer { padding: 64px 0 32px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__meta { flex-direction: column; gap: 8px; }
}
@media (max-width: 420px) {
  .container, .hero__grid, .testimonials__inner, .footer__inner, .final-cta__inner, .nav { padding-left: 20px; padding-right: 20px; }
  .about__badge { right: 0; }
}

/* -------------------- footer legal links -------------------- */
.footer__legal a { color: var(--lavender-300); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(212,165,116,0.5); }
.footer__legal a:hover { color: var(--gold-300); }

/* -------------------- legal pages (privacy / terms) -------------------- */
.legal-header { border-bottom: 1px solid var(--border); }
.legal-header__inner { max-width: 820px; margin: 0 auto; padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.legal-header .wordmark__name { font-size: 17px; }
.legal-header a { text-decoration: none; }
.legal-back { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--fg-strong); }
.legal-back:hover { color: var(--brown-500); }
.legal { max-width: 760px; margin: 0 auto; padding: 56px 32px 72px; }
.legal h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(32px, 5vw, 48px); line-height: 1.1; letter-spacing: -0.02em; color: var(--fg-strong); }
.legal .updated { color: var(--fg-muted); font-size: 14px; margin: 10px 0 0; }
.legal h2 { font-family: var(--font-display); font-weight: 500; font-size: 23px; color: var(--fg-strong); letter-spacing: -0.015em; margin: 40px 0 12px; }
.legal p, .legal li { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--fg); margin: 0 0 14px; }
.legal ul { margin: 0 0 14px; padding-left: 22px; }
.legal li { margin: 0 0 8px; }
.legal__note { background: var(--bg-tint-gold); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px 18px; font-size: 14px; line-height: 1.6; color: var(--fg-muted); margin: 24px 0 8px; }
.legal-footer { border-top: 1px solid var(--border); }
.legal-footer__inner { max-width: 760px; margin: 0 auto; padding: 26px 32px; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; font-family: var(--font-body); font-size: 13px; color: var(--fg-muted); }
.legal-footer a { color: var(--fg-muted); text-decoration: none; }
.legal-footer a:hover { color: var(--brown-500); }

/* -------------------- cookie consent banner -------------------- */
.cookiebar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  max-width: 580px; margin: 0 auto;
  background: var(--eggplant-900); color: var(--cream-50);
  border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 16px 18px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 16px;
  transform: translateY(160%); transition: transform 320ms var(--ease-out-soft);
}
.cookiebar--in { transform: translateY(0); }
.cookiebar__text { margin: 0; flex: 1 1 260px; font-family: var(--font-body); font-size: 13px; line-height: 1.5; color: var(--cream-50); }
.cookiebar__text a { color: var(--gold-300); }
.cookiebar__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookiebar .btn--secondary { color: var(--cream-50); border-color: rgba(255,255,255,0.30); }
.cookiebar .btn--secondary:hover { background: rgba(255,255,255,0.08); border-color: var(--cream-50); color: var(--cream-50); }

/* -------------------- reduced motion -------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
