/* ==========================================================================
   Lusitânia Garden Hotel — styles.css
   Design DNA: "Evergreen" — sunlit greenhouse on linen paper.
   Cream linen canvas, bone cards, ink-black pill CTAs, sage-mint botanical wash.
   Playfair Display (serif headlines) + Rubik (body).
   ========================================================================== */

:root {
  /* Colors */
  --linen: #edede2;
  --bone: #fffff3;
  --white: #ffffff;
  --ink: #000000;
  --charcoal: #333333;
  --sage: #beedc0;
  --sage-deep: #2f5d3a;   /* darkened sage for accessible text/links on cream */
  --hairline: rgba(51, 51, 51, 0.16);

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Rubik', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Radii */
  --r-card: 10px;
  --r-input: 7px;
  --r-pill: 40.5px;
  --r-tag: 46px;

  /* Layout */
  --maxw: 1200px;
  --pad-inline: 24px;
  --section-gap: 112px;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.9;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--ink); margin: 0; line-height: 1.2; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}
.container--narrow { max-width: 760px; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--white);
  padding: 10px 18px; border-radius: 0 0 var(--r-input) 0;
  font-size: 15px; font-weight: 500;
}
.skip-link:focus { left: 0; }

/* ---------- Focus visibility ---------- */
:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 500; font-size: 17px;
  padding: 14px 28px; border-radius: var(--r-pill);
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
  line-height: 1.2;
}
.btn--primary { background: var(--ink); color: var(--white); }
.btn--primary:hover { transform: translateY(-2px); background: #171717; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--block { width: 100%; }

/* ---------- Tags / labels ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage-deep); margin: 0 0 18px;
}
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: var(--r-tag); padding: 8px 16px;
  background: var(--bone); border: 1px solid var(--hairline);
  font-size: 14px; font-weight: 500; color: var(--charcoal);
}
.tag__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--sage); border: 1px solid var(--sage-deep); }

/* Section heading block */
.section-head { max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head__title { font-size: clamp(34px, 5vw, 54px); line-height: 1.14; }
.section-head__lead { margin-top: 22px; color: var(--charcoal); font-size: 19px; line-height: 1.85; }
.accent { color: var(--sage-deep); font-style: italic; }

/* ---------- Section rhythm ---------- */
.section { padding-block: clamp(64px, 9vw, 112px); }
.section--tint { background: linear-gradient(180deg, var(--linen), #e7e8db); }

/* Leaf signature decoration */
.leaf {
  position: absolute; color: var(--sage); opacity: .8; pointer-events: none; z-index: 0;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(237, 237, 226, 0.86);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding-block: 16px;
}
.brand { display: inline-flex; align-items: baseline; gap: 12px; text-decoration: none; }
.brand__mark {
  font-family: var(--font-display); font-weight: 600; font-size: 24px;
  letter-spacing: .04em; color: var(--ink);
  border: 1.5px solid var(--ink); border-radius: 8px; padding: 2px 9px;
}
.brand__name {
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--charcoal);
}
.brand__name em { font-style: normal; color: var(--sage-deep); }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link {
  text-decoration: none; font-size: 16px; font-weight: 500; color: var(--charcoal);
  padding: 6px 2px; position: relative;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--sage-deep); transition: right .2s ease;
}
.nav__link:hover::after, .nav__link:focus-visible::after { right: 0; }
.nav__cta { margin-left: 6px; padding: 11px 22px; font-size: 15px; }

.nav__toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--ink);
  border-radius: 50%; background: transparent; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle svg { width: 22px; height: 22px; }
.nav__toggle-close { display: none; }
.nav__toggle[aria-expanded="true"] .nav__toggle-open { display: none; }
.nav__toggle[aria-expanded="true"] .nav__toggle-close { display: block; }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    flex-direction: column; align-items: flex-start; gap: 8px;
    background: var(--bone); border-left: 1px solid var(--hairline);
    padding: 96px 30px 40px; transform: translateX(100%);
    transition: transform .28s ease; z-index: 90;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__link { font-size: 20px; width: 100%; padding: 12px 0; border-bottom: 1px solid var(--hairline); }
  .nav__link::after { display: none; }
  .nav__cta { margin: 16px 0 0; width: 100%; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(20,20,15,.35);
    opacity: 0; visibility: hidden; transition: opacity .25s ease; z-index: 80;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { padding-top: clamp(48px, 7vw, 84px); padding-bottom: clamp(40px, 6vw, 72px); position: relative; }
.hero__inner { text-align: center; max-width: 900px; margin-inline: auto; position: relative; z-index: 1; }
.hero__badges { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 26px; flex-wrap: wrap; justify-content: center; }
.badge-age {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--sage); color: var(--sage-deep);
  font-weight: 700; font-size: 17px; border: 1.5px solid var(--sage-deep);
  flex: 0 0 auto;
}
.hero__title { font-size: clamp(42px, 7.4vw, 78px); line-height: 1.08; }
.hero__lead {
  margin: 26px auto 0; max-width: 620px; color: var(--charcoal);
  font-size: 20px; line-height: 1.8;
}
.hero__actions { margin-top: 34px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__note { margin-top: 16px; font-size: 14px; color: var(--charcoal); }

/* Sage typographic panel — stands in for the old hero photo */
.hero__panel {
  margin-top: clamp(40px, 6vw, 68px);
  background: linear-gradient(158deg, var(--sage) 0%, #d6f0d8 52%, var(--bone) 100%);
  border: 1px solid var(--sage-deep);
  border-radius: 20px;
  padding: clamp(34px, 5vw, 60px) clamp(22px, 4vw, 52px);
  text-align: center;
}
.hero__panel-eyebrow {
  display: inline-block; font-family: var(--font-body);
  font-size: 13px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage-deep);
}
.hero__panel-line {
  margin: 14px auto 0; max-width: 640px;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 4.6vw, 52px); line-height: 1.15; color: var(--sage-deep);
}
.hero__panel-line em { font-style: italic; }

.hero__stats {
  margin-top: clamp(28px, 4vw, 40px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 760px; margin-inline: auto;
}
.stat {
  background: var(--bone); border: 1px solid var(--hairline); border-radius: var(--r-card);
  padding: 22px 20px; text-align: center;
}
.stat__num { font-family: var(--font-display); font-size: clamp(28px, 4.4vw, 40px); font-weight: 600; }
.stat__num small { font-size: .5em; font-family: var(--font-body); font-weight: 600; color: var(--sage-deep); }
.stat__label { margin-top: 6px; font-size: 14px; color: var(--charcoal); letter-spacing: .02em; }
@media (max-width: 640px) {
  .hero__stats { grid-template-columns: 1fr; gap: 12px; }
}

/* ==========================================================================
   RESPONSIBLE PLAY / SUPPORT / AGE  (3-card care section)
   ========================================================================== */
.care { position: relative; }
.care__grid {
  margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.care-card {
  background: var(--bone); border: 1px solid var(--hairline); border-radius: var(--r-card);
  padding: 30px 26px; display: flex; flex-direction: column;
}
.care-card__icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--sage);
  display: inline-flex; align-items: center; justify-content: center; color: var(--sage-deep);
  margin-bottom: 20px;
}
.care-card__icon svg { width: 26px; height: 26px; }
.care-card__title { font-size: 25px; margin-bottom: 12px; }
.care-card__text { font-size: 16.5px; line-height: 1.72; color: var(--charcoal); }
.care-card__list { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.care-card__list li { position: relative; padding-left: 24px; font-size: 15.5px; color: var(--charcoal); line-height: 1.55; }
.care-card__list li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 10px;
  border-radius: 50%; background: var(--sage); border: 1px solid var(--sage-deep);
}
.care-card__foot { margin-top: auto; padding-top: 18px; font-size: 14px; color: var(--charcoal); }
@media (max-width: 880px) { .care__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   SPLIT (about garden) — text + typographic note card
   ========================================================================== */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: stretch; }
.split__body { align-self: center; }
.split__body p + p { margin-top: 20px; }
.split__body .section-head__title { margin-bottom: 24px; }
.split__meta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.split__sign {
  margin-top: 28px; font-family: var(--font-display); font-style: italic;
  font-size: 22px; color: var(--sage-deep);
}
.split__sign span { display: block; font-family: var(--font-body); font-style: normal; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--charcoal); margin-top: 4px; }

/* Garden note — pull quote + hairline fact list, replaces the old photos */
.garden-note {
  background: var(--bone); border: 1px solid var(--hairline); border-radius: 16px;
  padding: clamp(28px, 3.6vw, 44px); display: flex; flex-direction: column;
}
.garden-note__eyebrow {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--sage-deep);
}
.garden-note__quote {
  margin: 16px 0 0; padding-left: 20px; border-left: 3px solid var(--sage);
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(23px, 2.8vw, 31px); line-height: 1.32; color: var(--ink);
}
.garden-note__list { margin-top: auto; padding-top: 30px; display: flex; flex-direction: column; }
.garden-note__list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
  padding: 15px 0; border-top: 1px solid var(--hairline);
}
.garden-note__list b { font-family: var(--font-display); font-weight: 600; font-size: 23px; color: var(--sage-deep); white-space: nowrap; }
.garden-note__list span { font-size: 14.5px; color: var(--charcoal); line-height: 1.45; text-align: right; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CASINO
   ========================================================================== */
.casino__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.casino__plaque {
  border-radius: 16px; border: 1px solid var(--sage-deep);
  background: linear-gradient(165deg, var(--sage-deep) 0%, #244a2d 100%);
  color: var(--bone); padding: clamp(30px, 4vw, 50px);
  display: flex; flex-direction: column; justify-content: center; gap: 18px; min-height: 320px;
}
.casino__plaque-eyebrow {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--sage);
}
.casino__plaque-name { font-family: var(--font-display); font-weight: 600; font-size: clamp(38px, 5.2vw, 62px); line-height: 1.04; color: var(--bone); }
.casino__plaque-name em { font-style: italic; color: var(--sage); }
.casino__plaque-note { font-size: 15.5px; line-height: 1.6; color: rgba(255, 255, 243, .82); max-width: 34ch; }
.casino__plaque-age { align-self: flex-start; margin-top: 4px; background: transparent; color: var(--sage); border-color: var(--sage); }
.casino__panel { display: flex; flex-direction: column; }
.casino__lead { margin-top: 22px; color: var(--charcoal); font-size: 18px; line-height: 1.8; }
.casino__stats {
  margin-top: 30px; display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--hairline); border-left: 1px solid var(--hairline);
}
.casino__stat { border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); padding: 20px 8px 20px 20px; }
.casino__stat b { font-family: var(--font-display); font-size: 30px; font-weight: 600; display: block; }
.casino__stat span { font-size: 14px; color: var(--charcoal); }
.casino__rooms { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 860px) { .casino__wrap { grid-template-columns: 1fr; } .casino__plaque { min-height: 240px; } }
@media (max-width: 420px) { .casino__stats { grid-template-columns: 1fr; } }

/* ==========================================================================
   SPA — feature cards (no photos)
   ========================================================================== */
.spa__cards { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.spa-card {
  background: var(--bone); border: 1px solid var(--hairline); border-radius: var(--r-card);
  padding: 30px 26px; display: flex; flex-direction: column;
}
.spa-card__ic {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px; background: var(--sage);
  color: var(--sage-deep); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.spa-card__ic svg { width: 26px; height: 26px; }
.spa-card h3 { font-size: 22px; margin-bottom: 10px; }
.spa-card p { font-size: 16px; color: var(--charcoal); line-height: 1.65; }
@media (max-width: 880px) { .spa__cards { grid-template-columns: 1fr; } }

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews__grid { margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--bone); border: 1px solid var(--hairline); border-radius: var(--r-card);
  padding: 28px 26px; display: flex; flex-direction: column;
}
.review__stars { display: inline-flex; gap: 3px; color: var(--sage-deep); margin-bottom: 16px; }
.review__stars svg { width: 18px; height: 18px; }
.review__quote { font-size: 17px; line-height: 1.7; color: var(--ink); }
.review__foot { margin-top: 22px; display: flex; align-items: center; gap: 14px; }
.review__avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--sage);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 16px; color: var(--sage-deep); border: 1.5px solid var(--sage-deep);
  flex: 0 0 auto;
}
.review__who b { display: block; font-size: 16px; font-weight: 600; }
.review__who span { font-size: 13.5px; color: var(--charcoal); }
@media (max-width: 900px) { .reviews__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   FORM — Clube VIP
   ========================================================================== */
.club { position: relative; }
.club__card {
  background: var(--bone); border: 1px solid var(--hairline); border-radius: 18px;
  padding: clamp(30px, 5vw, 56px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 56px); align-items: start;
}
.club__intro .section-head__title { font-size: clamp(30px, 4vw, 46px); }
.club__perks { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.club__perks li { position: relative; padding-left: 30px; font-size: 16px; color: var(--charcoal); line-height: 1.5; }
.club__perks li svg { position: absolute; left: 0; top: 4px; width: 20px; height: 20px; color: var(--sage-deep); }

.form__row { margin-bottom: 18px; }
.form__label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 7px; color: var(--charcoal); }
.form__label .req { color: var(--sage-deep); }
.form__input {
  width: 100%; padding: 13px 15px; border: 1px solid var(--hairline);
  border-radius: var(--r-input); background: var(--white); color: var(--ink);
  font-family: var(--font-body); font-size: 16px;
}
.form__input:focus-visible { outline: 2px solid var(--sage-deep); outline-offset: 1px; border-color: var(--sage-deep); }
.form__consent { display: flex; gap: 12px; align-items: flex-start; margin: 6px 0 20px; }
.form__consent input { margin-top: 6px; width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--sage-deep); }
.form__consent label { font-size: 14px; color: var(--charcoal); line-height: 1.55; }
.form__consent a { color: var(--sage-deep); }
.form__hint { margin-top: 14px; font-size: 13px; color: var(--charcoal); }
.form__success {
  display: none; margin-top: 20px; padding: 18px 20px; border-radius: var(--r-card);
  background: var(--sage); color: var(--sage-deep); border: 1px solid var(--sage-deep);
  font-size: 16px; font-weight: 500;
}
.form__success.is-visible { display: block; }
@media (max-width: 820px) { .club__card { grid-template-columns: 1fr; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: #e6e7da; border-top: 1px solid var(--hairline); padding-block: 68px 30px; margin-top: var(--section-gap); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer__brand .brand { margin-bottom: 18px; }
.footer__about { font-size: 15.5px; color: var(--charcoal); line-height: 1.7; max-width: 340px; }
.footer__col h3 { font-family: var(--font-body); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { text-decoration: none; font-size: 15.5px; color: var(--charcoal); }
.footer__col a:hover { color: var(--ink); }
.footer__contact { display: block; }
.footer__resp {
  margin-top: 40px; padding: 20px 24px; background: var(--bone); border: 1px solid var(--hairline);
  border-radius: var(--r-card); display: flex; gap: 16px; align-items: center; font-size: 14.5px; color: var(--charcoal);
}
.footer__resp .badge-age { width: 44px; height: 44px; font-size: 14px; }
.footer__bottom {
  margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--charcoal);
}
.footer__bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__bottom a { text-decoration: none; color: var(--charcoal); }
.footer__bottom a:hover { color: var(--ink); }
@media (max-width: 820px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }

/* ==========================================================================
   COOKIE BANNER + BACK TO TOP
   ========================================================================== */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 120;
  background: var(--ink); color: var(--white); border-radius: 14px;
  padding: 20px 22px; display: none; gap: 18px; align-items: center; flex-wrap: wrap;
  max-width: 720px; margin-inline: auto;
}
.cookie.is-visible { display: flex; }
.cookie__text { font-size: 14.5px; line-height: 1.55; flex: 1 1 300px; }
.cookie__text a { color: var(--sage); }
.cookie__actions { display: flex; gap: 10px; }
.cookie__btn { border-radius: var(--r-pill); padding: 10px 20px; font-size: 14px; font-weight: 500; cursor: pointer; border: 1px solid var(--white); font-family: var(--font-body); }
.cookie__btn--accept { background: var(--sage); color: var(--sage-deep); border-color: var(--sage); }
.cookie__btn--decline { background: transparent; color: var(--white); }

.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: var(--white);
  border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .25s ease, transform .25s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 22px; height: 22px; }

/* ==========================================================================
   LEGAL / TEXT PAGES
   ========================================================================== */
.legal { padding-block: clamp(40px, 6vw, 72px) var(--section-gap); }
.legal__head { max-width: 760px; }
.legal__updated { margin-top: 14px; font-size: 14px; color: var(--charcoal); }
.legal__back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px; text-decoration: none; font-size: 15px; font-weight: 500; color: var(--sage-deep); }
.legal__back svg { width: 18px; height: 18px; }
.legal__body { max-width: 760px; margin-top: 34px; }
.legal__body h2 { font-size: 27px; margin: 40px 0 14px; }
.legal__body h3 { font-family: var(--font-body); font-size: 18px; font-weight: 600; margin: 24px 0 8px; }
.legal__body p { font-size: 17px; line-height: 1.8; color: var(--charcoal); margin-bottom: 14px; }
.legal__body ul { margin: 8px 0 18px; display: flex; flex-direction: column; gap: 9px; }
.legal__body li { position: relative; padding-left: 24px; font-size: 16.5px; color: var(--charcoal); line-height: 1.6; }
.legal__body li::before { content: ""; position: absolute; left: 0; top: 10px; width: 9px; height: 9px; border-radius: 50%; background: var(--sage); border: 1px solid var(--sage-deep); }
.legal__body a { color: var(--sage-deep); }

/* 404 */
.notfound { min-height: 62vh; display: flex; align-items: center; text-align: center; }
.notfound__num { font-family: var(--font-display); font-size: clamp(80px, 18vw, 160px); font-weight: 600; line-height: 1; color: var(--sage-deep); }
.notfound__title { font-size: clamp(30px, 5vw, 48px); margin: 12px 0 18px; }
.notfound__text { max-width: 460px; margin: 0 auto 30px; color: var(--charcoal); }

/* utility */
.center { text-align: center; }
.mt-lg { margin-top: 48px; }
