/* ==========================================================================
   Nospario Digital — stylesheet
   Design tokens + components. Default palette: Blush.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------- */
:root {
  /* Palette (Blush — default). Swap by setting these on :root / [data-palette]. */
  --acc:        #D8607C;
  --acc-d:      #BC4D69;
  --page-bg:    #FCFBFA;
  --section-bg: #F8EFF0;
  --hero-a:     #FBE2E8;
  --hero-b:     #FCEBDC;

  /* Base neutrals (shared across palettes) */
  --ink:        #1B1C20;
  --body:       #5A5C63;
  --border:     #ECEAE7;
  --footer-bg:  #16171B;

  /* Radii */
  --r-card: 16px;
  --r-btn:  11px;
  --r-pill: 999px;

  --maxw: 1140px;
}

/* Alternate palettes — swappable via a data-palette attribute on <html>. */
[data-palette="Peach"]      { --acc:#D9774F; --acc-d:#C05F39; --page-bg:#FCFAF7; --section-bg:#F8EFE7; --hero-a:#FCE6D6; --hero-b:#FBEFE2; }
[data-palette="Rose Grey"]  { --acc:#C2566F; --acc-d:#A8455B; --page-bg:#FBFBFC; --section-bg:#EEEEF2; --hero-a:#F3E6EA; --hero-b:#ECECF1; }
[data-palette="Mauve"]      { --acc:#9B6090; --acc-d:#834E7A; --page-bg:#FCFAFC; --section-bg:#F2ECF1; --hero-a:#EFE1EC; --hero-b:#F7E7EC; }
[data-palette="Slate Blue"] { --acc:#4E6FB5; --acc-d:#3D5A99; --page-bg:#FAFBFC; --section-bg:#ECEEF2; --hero-a:#E2E8F4; --hero-b:#EEEDE9; }

/* ---- Reset / base -------------------------------------------------------- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Hanken Grotesk', -apple-system, system-ui, sans-serif;
  background: var(--page-bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
img { max-width: 100%; }

:focus-visible { outline: 2px solid var(--acc); outline-offset: 2px; border-radius: 3px; }

/* ---- Layout helpers ------------------------------------------------------ */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
.container--narrow  { max-width: 820px; }
.container--support { max-width: 860px; }

.section { padding: clamp(60px, 9vw, 116px) 0; }
.section--services { border-top: 1px solid #F0EEEB; }
.section--alt { background: var(--section-bg); border-top: 1px solid #EEEBE7; }

.section__title {
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 700;
  margin: 0;
  max-width: 22ch;
}
.section__title--mb { margin-bottom: 36px; }
.section__lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--body);
  line-height: 1.6;
  margin: 16px 0 0;
  max-width: 56ch;
}
.muted { color: var(--body); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--acc);
  margin: 0 0 14px;
}
.eyebrow--accent { display: inline-flex; align-items: center; gap: 8px; }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  cursor: pointer;
  padding: 11px 20px;
  white-space: nowrap;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.btn--lg { font-size: 16px; padding: 15px 28px; }
.btn--primary { background: var(--acc); color: #fff; }
.btn--primary:hover { background: var(--acc-d); }
.btn--ghost { background: transparent; color: var(--ink); border-color: #DCD8D4; }
.btn--ghost:hover { background: rgba(0,0,0,.04); }
.btn--ghost-sm {
  background: transparent; color: var(--acc); border: 1px solid #D8D4CF;
  padding: 11px 22px; border-radius: 10px; font-weight: 600; font-size: 15px;
}
.btn--ghost-sm:hover { background: rgba(0,0,0,.03); }
.btn--ghost-sm-green { color: #1F7A53; border-color: #9BD4B6; }
.btn--ghost-sm-green:hover { background: #DCF0E6; }

/* ==========================================================================
   Header + navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--page-bg) 82%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px clamp(20px, 5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header__logo { display: flex; align-items: center; }
.site-header__logo img { height: 64px; width: auto; display: block; }

.nav--desktop { display: flex; align-items: center; gap: 30px; }
.nav__link { font-size: 15px; font-weight: 500; color: #4A4C53; transition: color .15s ease; }
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--ink); }
.nav__cta { color: #fff; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  color: var(--ink); padding: 0;
}

/* Mobile slide-out */
.menu-overlay {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(20,21,25,.42);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none;
  transition: opacity .26s ease;
}
.menu-overlay.is-open { opacity: 1; pointer-events: auto; }

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 61;
  width: min(82vw, 340px);
  background: var(--page-bg);
  box-shadow: -12px 0 40px rgba(20,21,25,.16);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px clamp(20px, 5vw, 28px); border-bottom: 1px solid var(--border);
}
.mobile-menu__head img { height: 48px; width: auto; display: block; }
.mobile-menu__nav {
  flex: 1; display: flex; flex-direction: column; gap: 2px;
  padding: 18px clamp(20px, 5vw, 28px); overflow-y: auto;
}
.mobile-menu__link {
  font-size: 18px; font-weight: 600; color: #2C2E34;
  padding: 14px 4px; border-bottom: 1px solid #F0EEEB;
  transition: color .15s ease;
}
.mobile-menu__link:hover { color: var(--acc); }
.mobile-menu__cta { margin-top: 22px; padding: 14px 20px; font-size: 16px; }

/* Header responsive switch (< 880px → mobile nav) */
@media (max-width: 879px) {
  .nav--desktop { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; padding: clamp(64px,10vw,120px) 0 clamp(56px,8vw,96px); }
.hero__inner {
  position: relative; z-index: 1;
  display: grid; gap: clamp(40px, 5vw, 72px);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}
.hero__title {
  font-size: clamp(36px, 6.4vw, 62px);
  line-height: 1.04; letter-spacing: -.025em; font-weight: 700;
  margin: 0; max-width: 17ch;
}
.hero__lead {
  font-size: clamp(17px, 1.8vw, 20px); color: var(--body);
  line-height: 1.6; margin: 24px 0 0; max-width: 52ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.status-chip {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 30px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 8px 15px 8px 12px; font-size: 14px; font-weight: 500; color: #3C3E44;
  transition: border-color .15s ease;
}
.status-chip:hover { border-color: #D8D4CF; }

/* ---- Orbital graphic ---- */
.hero__graphic-wrap { position: relative; }
.nsp-graphic { position: relative; width: 100%; max-width: 460px; margin: 0 auto; aspect-ratio: 1; }

.orbit-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  border-radius: 50%;
}
.orbit-ring--outer { width: 92%; height: 92%; border: 1px solid color-mix(in srgb, var(--acc) 16%, transparent); }
.orbit-ring--mid   { width: 63%; height: 63%; border: 1px dashed color-mix(in srgb, var(--acc) 26%, transparent); }
.orbit-ring--inner { width: 35%; height: 35%; border: 1px solid color-mix(in srgb, var(--acc) 30%, transparent); }

.orbit-core {
  position: absolute; top: 50%; left: 50%; width: 20%; height: 20%;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: var(--acc);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 44px color-mix(in srgb, var(--acc) 40%, transparent);
}

@keyframes nsp-pulse { 0%{box-shadow:0 0 0 0 rgba(46,158,107,.45)} 70%{box-shadow:0 0 0 8px rgba(46,158,107,0)} 100%{box-shadow:0 0 0 0 rgba(46,158,107,0)} }
@keyframes nsp-orbit { to { transform: rotate(360deg); } }
@keyframes nsp-orbit-rev { to { transform: rotate(-360deg); } }

.nsp-orbit {
  position: absolute; inset: 0; pointer-events: none;
  animation-name: nsp-orbit; animation-timing-function: linear;
  animation-iteration-count: infinite; will-change: transform;
}
.nsp-spin {
  position: relative; display: block; width: 100%; height: 100%;
  animation-name: nsp-orbit-rev; animation-timing-function: linear;
  animation-iteration-count: infinite; will-change: transform;
}
.nsp-graphic:hover .nsp-orbit,
.nsp-graphic:hover .nsp-spin { animation-play-state: paused; }

.nsp-node {
  position: absolute; left: 50%; transform: translate(-50%, -50%);
  width: 38px; height: 38px; display: block;
  pointer-events: auto; cursor: pointer;
}
.orbit-dot {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; border-radius: 50%;
  transition: transform .18s ease, box-shadow .18s ease;
}
.orbit-dot--solid   { background: var(--acc); box-shadow: 0 5px 14px color-mix(in srgb, var(--acc) 32%, transparent); }
.orbit-dot--outline { background: #fff; border: 2px solid var(--acc); box-shadow: 0 4px 12px rgba(20,21,25,.08); }
.nsp-node:hover .orbit-dot { transform: scale(1.14); box-shadow: 0 8px 20px color-mix(in srgb, var(--acc) 34%, transparent); }

.orbit-label {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: #16171B; color: #fff; font-size: 11px; font-weight: 600;
  padding: 4px 9px; border-radius: 7px; white-space: nowrap;
  opacity: 0; transition: opacity .18s ease;
}
.nsp-node:hover .orbit-label { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .nsp-orbit, .nsp-spin { animation: none; }
}

/* ==========================================================================
   Cards / grids
   ========================================================================== */
.card { border: 1px solid var(--border); border-radius: var(--r-card); background: #fff; }
.card-grid { display: grid; gap: 18px; margin-top: 46px; }
.card-grid--services      { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card-grid--steps         { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card-grid--testimonials  { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* Service cards */
.service-card { position: relative; padding: 26px 24px; overflow: hidden; }
.service-card--featured { background: #FCF2EB; }
.service-card--featured::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: #E9A07C;
}
.service-card__badge {
  position: absolute; top: 18px; right: 18px;
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: #C06A45; background: #FBE6D8; padding: 4px 9px; border-radius: var(--r-pill);
}
.service-card__icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: #F4F2EF; border: 1px solid #EAE7E3;
  display: flex; align-items: center; justify-content: center;
  color: var(--acc); margin-bottom: 18px;
}
.service-card--featured .service-card__icon { background: #fff; border-color: #EAE7E3; }
.service-card__title {
  font-size: 19px; font-weight: 700; letter-spacing: -.01em;
  margin: 0 0 9px; max-width: 15ch; scroll-margin-top: 104px;
}
.service-card__desc { font-size: 15px; color: var(--body); line-height: 1.55; margin: 0; }

/* Step cards */
.step-card { padding: 30px 26px; }
.step-card__num {
  width: 44px; height: 44px; border-radius: 50%; background: #F4F2EF;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--acc); margin-bottom: 16px;
}
.step-card__title { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.step-card__desc { font-size: 15px; color: var(--body); line-height: 1.55; margin: 0; }
.pricing__cta { margin-top: 32px; }

/* ==========================================================================
   About
   ========================================================================== */
.about__intro {
  display: grid; gap: clamp(20px, 4vw, 48px);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: clamp(22px, 3vw, 34px);
}
.about__intro p { font-size: clamp(16px, 1.6vw, 19px); color: #46484E; line-height: 1.65; margin: 0; }
.about__intro p.muted { color: var(--body); }
.about__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(24px, 3vw, 32px); }
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 500; color: #3C3E44;
  background: #fff; border: 1px solid #E7E3DE; border-radius: var(--r-pill); padding: 8px 15px;
}

.founder {
  margin-top: clamp(28px, 4vw, 52px);
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: clamp(24px, 3vw, 38px);
  display: grid; gap: clamp(24px, 4vw, 48px);
  grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
  align-items: start;
}
.founder__aside { display: flex; flex-direction: column; gap: 14px; }
.founder__photo {
  width: 100%; aspect-ratio: 4/5; display: block; object-fit: cover;
  border: 1px solid var(--border); border-radius: 16px;
}
.founder__photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: var(--section-bg); color: var(--acc); font-weight: 700; font-size: 18px;
}
.founder__name { font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.founder__role { font-size: 14px; font-weight: 600; color: var(--acc); margin-top: 2px; }
.founder__body p { font-size: clamp(16px, 1.6vw, 19px); color: #46484E; line-height: 1.65; margin: 0 0 16px; }
.founder__body p.muted { color: var(--body); margin-bottom: 22px; }
.founder__stack-label {
  font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: #74767C; margin-bottom: 11px;
}
.founder__stack { display: flex; flex-wrap: wrap; gap: 8px; }
.badge-mono {
  font-size: 13px; font-weight: 600; color: #3C3E44;
  background: #F6F4F1; border: 1px solid #EAE7E3; border-radius: 8px; padding: 6px 12px;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
}
@media (max-width: 620px) {
  .founder { grid-template-columns: 1fr; }
  .founder__aside { max-width: 240px; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial { padding: 28px 26px; margin: 0; display: flex; flex-direction: column; }
.testimonial__quote { color: var(--acc); opacity: .18; margin-bottom: 14px; }
.testimonial__quote-text { font-size: 17px; line-height: 1.55; color: #2C2E34; margin: 0 0 20px; font-weight: 500; }
.testimonial__cite { margin-top: auto; font-size: 14px; color: #6A6C73; }
.testimonial__cite strong { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   Accordion (FAQ + support FAQ) — native <details>
   ========================================================================== */
.accordion { border-top: 1px solid #E9E6E2; }
.accordion__item { border-bottom: 1px solid #E9E6E2; }
.accordion__summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  width: 100%; text-align: left; cursor: pointer; list-style: none;
  padding: 22px 2px; font-size: clamp(16px, 1.8vw, 18px); font-weight: 600; color: var(--ink);
}
.accordion__item--sm .accordion__summary { padding: 20px 2px; font-size: clamp(15px, 1.7vw, 17px); }
.accordion__summary::-webkit-details-marker { display: none; }
.accordion__chevron { flex: none; display: inline-flex; color: #9A9CA1; transition: transform .2s ease; }
.accordion__item[open] .accordion__chevron { transform: rotate(180deg); }
.accordion__panel {
  font-size: 16px; color: var(--body); line-height: 1.65;
  margin: 0; padding: 0 2px 24px; max-width: 62ch;
}
.accordion__item--sm .accordion__panel { padding-bottom: 22px; }

/* ==========================================================================
   Contact + forms
   ========================================================================== */
.contact__inner, .legal-body { }
.contact__inner {
  display: grid; gap: clamp(32px, 4vw, 56px);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
}
.contact__intro .section__title { max-width: 14ch; }
.contact__intro .section__lead { margin: 18px 0 30px; max-width: 46ch; }
.contact__details { display: flex; flex-direction: column; gap: 18px; }
.contact__detail { display: flex; align-items: center; gap: 13px; color: var(--ink); transition: color .15s ease; }
.contact__detail:hover { color: var(--acc); }
.contact__detail-icon {
  flex: none; width: 42px; height: 42px; border-radius: 11px;
  background: #fff; border: 1px solid #E7E3DE;
  display: inline-flex; align-items: center; justify-content: center; color: var(--acc);
}
.contact__detail-text { font-size: 16px; font-weight: 600; }

.form {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: clamp(22px, 3vw, 32px);
  display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 600; color: #3C3E44; }
.form input, .form select, .form textarea {
  width: 100%; padding: 13px 15px; border: 1px solid #DDD9D5; border-radius: 10px;
  font-size: 16px; background: #fff; color: var(--ink);
}
.form textarea { resize: vertical; line-height: 1.5; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--acc); outline: none; }
.form__error {
  grid-column: 1 / -1; margin: 0;
  background: #FBECEB; border: 1px solid #F2CFCD; color: #A03A37;
  padding: 12px 15px; border-radius: 10px; font-size: 14px; font-weight: 500;
}

/* Honeypot — visually hidden but present for bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Success panels */
.form-success {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: clamp(26px, 4vw, 40px); text-align: center;
}
.form-success--green { background: #EAF6F0; border-color: #CBEBDB; }
.form-success__icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--acc);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.form-success__icon--green { background: #2E9E6B; }
.form-success__title { font-size: 22px; font-weight: 700; margin: 0 0 8px; }
.form-success__title--green { color: #1F7A53; }
.form-success__text { font-size: 16px; color: var(--body); line-height: 1.6; margin: 0 auto 22px; max-width: 42ch; }
.form-success--green .form-success__text { color: #3C3E44; }

.is-hidden { display: none !important; }

/* ==========================================================================
   Support — status
   ========================================================================== */
.container--support .section__title { max-width: none; }
.support__h3 { display: flex; align-items: center; gap: 9px; font-size: 20px; font-weight: 700; margin: 0 0 16px; }
.status-block { margin-top: 44px; scroll-margin-top: 104px; }
.support__block { margin-top: 48px; }

.status-dot { flex: none; width: 9px; height: 9px; border-radius: 50%; background: #9A9CA1; }
.status-dot--lg { width: 12px; height: 12px; }
.status-dot--ok { background: #2E9E6B; }
.status-dot--pulse { animation: nsp-pulse 2.4s infinite; }

.status-banner {
  display: flex; align-items: center; gap: 14px;
  background: #EAF6F0; border: 1px solid #CBEBDB; border-radius: 14px;
  padding: 18px 22px; margin-bottom: 14px;
}
.status-banner__title { font-size: 17px; font-weight: 700; color: #1F7A53; }
.status-banner__sub { font-size: 14px; color: #6A6C73; margin-top: 2px; }

.status-list { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.status-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 17px 22px; border-bottom: 1px solid #F1EEEB;
}
.status-row:last-child { border-bottom: none; }
.status-row__main { display: flex; align-items: center; gap: 12px; min-width: 0; }
.status-row__name { font-size: 15px; font-weight: 600; color: var(--ink); }
.status-row__meta { font-size: 13px; color: #9A9CA1; }
.status-row__label { flex: none; font-size: 14px; font-weight: 600; color: #9A9CA1; }
.status-row__label--ok { color: #2E9E6B; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--footer-bg); color: #C9CACE; padding: clamp(48px,7vw,80px) 0 36px; }
.site-footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }
.site-footer__top {
  display: grid; gap: clamp(28px, 4vw, 56px);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding-bottom: 40px; border-bottom: 1px solid #2A2C31;
}
.site-footer__brand { max-width: 30ch; }
.site-footer__brand img { height: 68px; width: auto; display: block; }
.site-footer__tagline { font-size: 15px; color: #9A9CA1; line-height: 1.6; margin: 14px 0 0; }
.site-footer__heading {
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: #74767C; margin-bottom: 16px;
}
.site-footer__links { display: flex; flex-direction: column; gap: 11px; }
.site-footer__links a { font-size: 15px; color: #C9CACE; transition: color .15s ease; }
.site-footer__links a:hover { color: #fff; }
.site-footer__status { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: #9A9CA1; margin-top: 4px; }
.site-footer__status .status-dot { width: 8px; height: 8px; }
.site-footer__bottom {
  display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 13px; color: #74767C;
}
.site-footer__legal { display: inline-flex; gap: 18px; align-items: center; }
.site-footer__legal a { color: #74767C; transition: color .15s ease; }
.site-footer__legal a:hover { color: #fff; }

/* ==========================================================================
   Legal / privacy page
   ========================================================================== */
.legal-hero {
  position: relative; overflow: hidden;
  padding: clamp(52px,8vw,88px) 0 clamp(36px,5vw,52px);
  border-bottom: 1px solid #F0EEEB;
}
.legal-hero__title {
  font-size: clamp(32px, 5.4vw, 52px); line-height: 1.05; letter-spacing: -.025em;
  font-weight: 700; margin: 0;
}
.legal-hero .section__lead { margin-top: 20px; }
.legal-hero__updated { font-size: 14px; color: #9A9CA1; margin: 22px 0 0; }

.legal-body { display: grid; gap: clamp(36px, 5vw, 56px); grid-template-columns: 1fr; }
.legal-intro { font-size: 17px; color: #46484E; line-height: 1.7; margin: 0 0 16px; }
.legal-intro:last-child { margin-bottom: 0; }
.legal-section { scroll-margin-top: 104px; }
.legal-section__heading {
  font-size: clamp(22px, 2.8vw, 28px); line-height: 1.2; letter-spacing: -.015em;
  font-weight: 700; margin: 0 0 14px;
}
.legal-section__para { font-size: 16px; color: var(--body); line-height: 1.7; margin: 0 0 14px; }
.legal-list { margin: 6px 0 14px; padding: 0 0 0 4px; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.legal-list__item { display: flex; align-items: flex-start; gap: 11px; font-size: 16px; color: var(--body); line-height: 1.6; }
.legal-list__item strong { color: #2C2E34; font-weight: 600; }
.legal-list__dot { flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--acc); margin-top: 9px; }

.cookie-table { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.cookie-row { display: flex; gap: 16px; padding: 18px 22px; border-bottom: 1px solid #F1EEEB; flex-wrap: wrap; }
.cookie-row:last-child { border-bottom: none; }
.cookie-row__name { flex: 1 1 180px; min-width: 0; }
.cookie-row__title { font-size: 15px; font-weight: 700; color: var(--ink); }
.cookie-row__desc { flex: 2 1 320px; min-width: 0; font-size: 15px; color: var(--body); line-height: 1.6; }
.pill {
  display: inline-block; margin-top: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--r-pill);
}
.pill--on  { color: #1F7A53; background: #EAF6F0; }
.pill--opt { color: #8A5E12; background: #FBF3E1; }
.legal-note { font-size: 15px; color: #9A9CA1; line-height: 1.6; margin: 16px 0 0; }
.legal-note--contact { color: #8A7378; margin-top: 22px; }

.legal-contact {
  scroll-margin-top: 104px;
  background: var(--section-bg); border: 1px solid #F0E0E3; border-radius: 18px;
  padding: clamp(26px, 4vw, 36px);
}
.legal-contact__heading { font-size: clamp(20px, 2.6vw, 26px); line-height: 1.2; letter-spacing: -.015em; font-weight: 700; margin: 0 0 12px; }
.legal-contact .contact__detail-icon { border-color: #EDD9DD; }

/* Privacy page header back-link helper (single CTA, no full nav) */
