/* ============================================================
   Synadentix - enamel.css
   Theme: "Enamel & Mint" - deep teal + mint-aqua on pearl
   Organization: tokens -> base -> layout -> components ->
   sections -> utilities. Kebab class names, is-/has- states.
   ============================================================ */

/* --- design tokens --- */
:root {
  --teal-950: #04211f;
  --teal-900: #06302e;
  --teal-800: #0a443f;
  --teal-700: #0e605b;
  --teal-600: #14807a;
  --teal-500: #1aa19a;
  --mint-500: #29bdb1;
  --mint-400: #38d4c7;
  --mint-300: #79e3d8;
  --mint-200: #b6efe8;
  --mint-100: #ddf6f2;
  --mint-50:  #eefaf7;
  --pearl:    #f6fbfa;
  --white:    #ffffff;
  --ink:      #112321;
  --ink-soft: #2c3e3b;
  --muted:    #5d706d;
  --line:     #d6e8e4;
  --line-soft:#e7f1ef;
  --amber:    #f0a945;
  --amber-soft:#fbecd2;
  --leaf:     #4fae6a;
  --leaf-soft:#e5f4e9;
  --rose:     #e0584f;

  --font-head: "Red Hat Display", system-ui, sans-serif;
  --font-body: "Red Hat Text", system-ui, sans-serif;

  --radius-s: 8px;
  --radius:   16px;
  --radius-l: 26px;
  --shadow-s: 0 2px 10px rgba(6,48,46,.06);
  --shadow:   0 14px 36px rgba(6,48,46,.10);
  --shadow-l: 0 26px 60px rgba(6,48,46,.16);
  --maxw: 1140px;
  --gutter: clamp(18px, 4vw, 40px);
}

/* --- base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--pearl);
  font-size: 17px;
  line-height: 1.68;
  font-weight: 400;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--teal-900);
  line-height: 1.12;
  margin: 0 0 .5em;
  font-weight: 800;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.05rem, 5.2vw, 3.35rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: clamp(1.18rem, 2.2vw, 1.45rem); }
p { margin: 0 0 1.05em; }
a { color: var(--teal-700); text-decoration-color: var(--mint-300); text-underline-offset: 3px; }
a:hover { color: var(--teal-600); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .4em; }
strong { font-weight: 700; color: var(--ink); }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.4rem 0; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--teal-800); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* --- layout --- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 820px; }
.section { padding: clamp(48px, 7vw, 92px) 0; }
.section--tint { background: var(--mint-50); }
.section--deep { background: var(--teal-900); color: #dff3ef; }
.section--deep h2, .section--deep h3 { color: #fff; }
.section--pearl { background: var(--white); }
.lead-head { max-width: 740px; margin-bottom: 2.2rem; }
.lead-head .eyebrow { margin-bottom: .7rem; }

.grid { display: grid; gap: clamp(20px, 3vw, 34px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* --- ribbon --- */
.ribbon {
  background: var(--teal-950);
  color: #cfeee9;
  font-size: .82rem;
  letter-spacing: .015em;
}
.ribbon__row {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  align-items: center; justify-content: center;
  padding: 9px var(--gutter); text-align: center;
}
.ribbon__lead { color: #fff; font-weight: 600; }
.ribbon__badges { display: flex; flex-wrap: wrap; gap: 6px 16px; align-items: center; }
.badge-dot { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.badge-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--mint-400); }

/* --- header --- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 12px var(--gutter);
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand__mark { width: 38px; height: 38px; flex: 0 0 auto; }
.brand__name { font-family: var(--font-head); font-weight: 800; font-size: 1.32rem; letter-spacing: -.02em; color: var(--teal-900); line-height: 1; }
.brand__name b { color: var(--mint-500); font-weight: 800; }
.brand__sub { display: block; font-family: var(--font-body); font-weight: 500; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav__list { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; align-items: center; }
.nav__link {
  display: inline-block; padding: 9px 13px; border-radius: 9px;
  font-size: .95rem; font-weight: 600; color: var(--ink-soft); text-decoration: none;
}
.nav__link:hover { background: var(--mint-50); color: var(--teal-700); }
.nav__cta { margin-left: 6px; }

.nav-toggle {
  display: none; border: 1px solid var(--line); background: #fff; border-radius: 10px;
  width: 44px; height: 42px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 2px; background: var(--teal-800); position: relative; transition: .2s;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 10px var(--gutter) 20px; box-shadow: var(--shadow);
    display: none;
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { padding: 12px 10px; border-radius: 10px; }
  .nav__cta { margin: 8px 0 0; }
}

/* --- buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 13px 24px; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; line-height: 1; transition: transform .15s, box-shadow .15s, background .15s;
}
.btn--solid { background: var(--teal-700); color: #fff; box-shadow: 0 10px 22px rgba(14,96,91,.28); }
.btn--solid:hover { background: var(--teal-600); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px rgba(14,96,91,.34); }
.btn--mint { background: var(--mint-400); color: var(--teal-950); box-shadow: 0 10px 22px rgba(56,212,199,.32); }
.btn--mint:hover { background: var(--mint-300); color: var(--teal-950); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--teal-700); border-color: var(--mint-300); }
.btn--ghost:hover { background: var(--mint-50); color: var(--teal-700); }
.btn--block { width: 100%; }
.btn--lg { font-size: 1.08rem; padding: 16px 30px; }
.btn__sub { font-family: var(--font-body); font-weight: 500; font-size: .78rem; opacity: .85; }

/* --- breadcrumb --- */
.crumbs { background: var(--white); border-bottom: 1px solid var(--line-soft); }
.crumbs__list {
  display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0;
  padding: 11px var(--gutter); max-width: var(--maxw); margin-inline: auto;
  font-size: .85rem; color: var(--muted);
}
.crumbs__list a { color: var(--teal-700); text-decoration: none; }
.crumbs__list li + li::before { content: "›"; margin-right: 6px; color: var(--mint-400); }

/* --- shared bits --- */
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal-500);
}
.pill {
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 13px;
  background: var(--mint-100); color: var(--teal-800); border-radius: 999px;
  font-size: .82rem; font-weight: 600;
}
.pill--leaf { background: var(--leaf-soft); color: #2f7d49; }
.pill--amber { background: var(--amber-soft); color: #9a6512; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow-s);
}
.card--flat { box-shadow: none; }

/* --- hero --- */
.hero { background: linear-gradient(180deg, var(--mint-50), var(--white)); overflow: hidden; }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px);
  align-items: center; padding: clamp(40px, 6vw, 80px) 0;
}
.hero__copy { max-width: 600px; }
.hero h1 { margin-top: .55rem; }
.hero .lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 540px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 14px; margin: 1.6rem 0 1.4rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero__media { position: relative; display: flex; justify-content: center; }
.hero__media::after {
  content: ""; position: absolute; inset: 14% 16% 12%; z-index: 0;
  background: radial-gradient(circle at 50% 50%, var(--mint-100), transparent 70%);
  border-radius: 50%; opacity: .75;
}
.hero__bottle { position: relative; z-index: 1; max-width: 480px; width: 100%; filter: drop-shadow(0 22px 34px rgba(6,48,46,.20)); }
.hero__seal {
  position: absolute; z-index: 2; top: 14px; left: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 15px; font-size: .8rem; font-weight: 700; color: var(--teal-700);
  box-shadow: var(--shadow-s); display: inline-flex; align-items: center; gap: 7px;
}
.hero__seal::before { content: "✦"; color: var(--mint-500); }

.portal-note {
  background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--mint-400);
  border-radius: var(--radius); padding: 18px 22px; margin: 0 0 0; box-shadow: var(--shadow-s);
  font-size: 1.02rem; color: var(--ink-soft);
}
.portal-note strong { color: var(--teal-800); }

/* --- proof strip --- */
.proof-strip { background: var(--teal-900); color: #d6f1ec; }
.proof-strip__row { display: flex; flex-wrap: wrap; gap: 18px 40px; justify-content: space-between; padding: 26px var(--gutter); align-items: center; }
.proof-item { display: flex; align-items: center; gap: 12px; font-weight: 600; color: #eafaf7; }
.proof-item .check { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--mint-400); display: inline-flex; align-items: center; justify-content: center; color: var(--mint-300); flex: 0 0 auto; }

/* --- pillars / formula --- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.6vw, 28px); }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }
.pillar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: relative; }
.pillar__icon { width: 50px; height: 50px; border-radius: 14px; background: var(--mint-100); display: inline-flex; align-items: center; justify-content: center; color: var(--teal-600); margin-bottom: 14px; }
.pillar h3 { color: var(--teal-800); }
.dose-list { list-style: none; padding: 0; margin: 16px 0 0; }
.dose { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-top: 1px dashed var(--line); }
.dose:first-child { border-top: 0; }
.dose__name { font-weight: 600; color: var(--ink); }
.dose__amt { font-family: var(--font-head); font-weight: 700; color: var(--teal-600); white-space: nowrap; }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }

/* --- verify table --- */
.verify-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow); }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin: 6px 0 0; }
@media (max-width: 720px) { .spec-grid { grid-template-columns: 1fr; } }
.spec { padding: 15px 4px; border-bottom: 1px solid var(--line-soft); }
.spec dt { font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 3px; }
.spec dd { margin: 0; font-family: var(--font-head); font-weight: 700; color: var(--teal-800); font-size: 1.05rem; }
.spec dd small { font-family: var(--font-body); font-weight: 500; color: var(--muted); font-size: .8rem; }
.verify-status { display: inline-flex; align-items: center; gap: 8px; background: var(--leaf-soft); color: #2f7d49; padding: 7px 14px; border-radius: 999px; font-weight: 700; font-size: .9rem; }
.verify-status::before { content: "✓"; }

/* --- pricing --- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden; display: flex; flex-direction: column; position: relative; }
.plan--feature { border: 2px solid var(--mint-400); box-shadow: var(--shadow-l); }
@media (min-width: 901px) { .plan--feature { transform: translateY(-14px); } }
.plan__tag { text-align: center; font-family: var(--font-head); font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; padding: 9px; background: var(--teal-600); color: #fff; }
.plan--feature .plan__tag { background: var(--teal-900); }
.plan--basic .plan__tag { background: var(--mint-500); }
.plan__body { padding: 24px 22px 26px; display: flex; flex-direction: column; flex: 1; text-align: center; }
.plan__qty { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--teal-800); }
.plan__supply { color: var(--muted); font-size: .9rem; font-weight: 600; letter-spacing: .02em; }
.plan__img { margin: 14px auto 10px; height: 168px; display: flex; align-items: flex-end; justify-content: center; }
.plan__img img { max-height: 162px; max-width: 100%; width: auto; filter: drop-shadow(0 12px 18px rgba(6,48,46,.18)); }
.plan__img--wide img { max-height: 150px; }
.plan__price { font-family: var(--font-head); font-weight: 800; font-size: 3rem; color: var(--teal-700); line-height: 1; margin-top: 6px; }
.plan__price sup { font-size: 1.3rem; top: -1.1rem; }
.plan__price span { font-size: .9rem; font-weight: 600; color: var(--muted); }
.plan__was { color: var(--muted); font-size: .92rem; }
.plan__was s { color: var(--rose); }
.plan__perks { list-style: none; padding: 0; margin: 14px 0 18px; display: grid; gap: 8px; }
.plan__perks li { display: flex; align-items: center; gap: 9px; justify-content: center; font-size: .92rem; font-weight: 600; padding: 8px 10px; border-radius: 999px; background: var(--mint-50); color: var(--teal-800); margin: 0; }
.plan__perks li.is-save { background: var(--leaf-soft); color: #2f7d49; }
.plan__perks li.is-bonus { background: var(--amber-soft); color: #9a6512; }
.plan__perks li::before { content: "✓"; font-weight: 800; }
.plan__cta { margin-top: auto; }
.flag-badge { position: absolute; top: 92px; right: 14px; z-index: 3; background: var(--amber); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: .72rem; letter-spacing: .04em; text-align: center; width: 62px; height: 62px; border-radius: 50%; display: flex; align-items: center; justify-content: center; line-height: 1.05; box-shadow: var(--shadow); transform: rotate(8deg); }

.plan-foot { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 26px; }
.save-headline { text-align: center; }

/* --- reviews --- */
.rating-big { display: flex; flex-wrap: wrap; gap: 26px 40px; align-items: center; justify-content: center; text-align: center; }
.rating-big__score { font-family: var(--font-head); font-weight: 800; font-size: 4rem; color: var(--teal-700); line-height: 1; }
.stars { color: var(--amber); letter-spacing: 2px; font-size: 1.2rem; }
.crit-bars { display: grid; gap: 14px; }
.crit { display: grid; grid-template-columns: 150px 1fr 44px; gap: 12px; align-items: center; }
@media (max-width: 620px){ .crit { grid-template-columns: 120px 1fr 40px; } }
.crit__label { font-weight: 600; font-size: .92rem; }
.bar { background: var(--mint-100); border-radius: 999px; height: 10px; overflow: hidden; }
.bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--teal-500), var(--mint-400)); border-radius: 999px; }
.crit__num { font-weight: 700; color: var(--teal-700); text-align: right; }

.dist { display: grid; gap: 9px; }
.dist__row { display: grid; grid-template-columns: 60px 1fr 52px; gap: 12px; align-items: center; font-size: .9rem; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px){ .review-grid { grid-template-columns: 1fr; } }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-s); }
.review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--teal-700); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; flex: 0 0 auto; }
.review__name { font-weight: 700; color: var(--ink); line-height: 1.2; }
.review__meta { font-size: .8rem; color: var(--muted); }
.verified { display: inline-flex; align-items: center; gap: 5px; font-size: .76rem; font-weight: 700; color: #2f7d49; }
.verified::before { content: "✓"; }
.review .stars { font-size: 1rem; }

/* --- commitments --- */
.commit { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.commit__num { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--mint-400); line-height: 1; display: block; margin-bottom: 8px; }

/* --- advisors --- */
.person { text-align: center; }
.person .avatar { width: 72px; height: 72px; margin: 0 auto 12px; font-size: 1.4rem; background: linear-gradient(160deg, var(--teal-600), var(--teal-800)); }
.person__role { color: var(--teal-600); font-weight: 700; font-size: .9rem; }

/* --- featured in --- */
.logos { display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: center; align-items: center; }
.logo-text { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--muted); letter-spacing: .01em; opacity: .8; }

/* --- steps --- */
.steps { display: grid; gap: 16px; counter-reset: step; }
.step { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.step__n { counter-increment: step; width: 46px; height: 46px; border-radius: 12px; background: var(--teal-700); color: #fff; font-family: var(--font-head); font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.step__n::before { content: counter(step); }
.step h3 { margin-bottom: .3em; }

/* --- prose (long form) --- */
.prose { max-width: 800px; }
.prose h2 { margin-top: 1.9em; }
.prose h3 { margin-top: 1.5em; color: var(--teal-700); }
.prose ul { padding-left: 1.2em; }
.prose blockquote { margin: 1.6em 0; padding: 4px 0 4px 22px; border-left: 4px solid var(--mint-400); color: var(--ink-soft); font-style: italic; }

/* --- faq --- */
.faq { display: grid; gap: 12px; max-width: 840px; }
.qa { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 22px; box-shadow: var(--shadow-s); }
.qa summary { cursor: pointer; list-style: none; padding: 16px 0; font-family: var(--font-head); font-weight: 700; color: var(--teal-800); display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; font-size: 1.5rem; color: var(--mint-500); transition: transform .2s; line-height: 1; }
.qa[open] summary::after { transform: rotate(45deg); }
.qa__body { padding: 0 0 18px; color: var(--ink-soft); }
.qa__body > :last-child { margin-bottom: 0; }

/* --- contact form --- */
.form-grid { display: grid; gap: 14px; max-width: 620px; }
.form-row { display: grid; gap: 6px; }
.form-row label { font-weight: 600; font-size: .9rem; color: var(--ink-soft); }
.form-row input, .form-row select, .form-row textarea {
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; font: inherit; background: #fff; color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--mint-400); outline: none; }
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 800px){ .contact-cards { grid-template-columns: 1fr; } }

/* --- cta band --- */
.cta-band { background: linear-gradient(135deg, var(--teal-800), var(--teal-600)); color: #eafaf7; border-radius: var(--radius-l); padding: clamp(30px, 5vw, 56px); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d4f1ec; max-width: 620px; margin-inline: auto; }
.cta-band .btn--solid { background: #fff; color: var(--teal-800); }
.cta-band .btn--solid:hover { background: var(--mint-100); color: var(--teal-900); }
.cta-band__cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 1.4rem; }
.trust-line { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; margin-top: 1.4rem; font-size: .86rem; color: #cdede8; }
.trust-line span { display: inline-flex; align-items: center; gap: 6px; }
.trust-line span::before { content: "✓"; color: var(--mint-300); }

/* --- footer --- */
.site-footer { background: var(--teal-950); color: #a9cfc9; font-size: .92rem; }
.foot-top { padding: clamp(44px, 6vw, 72px) 0 36px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 900px){ .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .foot-grid { grid-template-columns: 1fr; } }
.foot-brand .brand__name { color: #fff; }
.foot-brand .brand__name b { color: var(--mint-400); }
.foot-brand p { margin-top: 14px; max-width: 320px; }
.foot-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 9px; }
.foot-col a { color: #a9cfc9; text-decoration: none; }
.foot-col a:hover { color: var(--mint-300); }
.foot-contact { margin-top: 8px; line-height: 1.7; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0 40px; }
.disclaimer { font-size: .82rem; color: #7fa8a2; max-width: 980px; }
.disclaimer + .disclaimer { margin-top: 10px; }
.portal-line { color: var(--mint-300); font-weight: 600; margin-top: 14px; }
.legal-links { display: flex; flex-wrap: wrap; gap: 6px 18px; margin: 16px 0 8px; }
.legal-links a { color: #cfe9e4; text-decoration: none; font-size: .85rem; }
.copyright { color: #7fa8a2; font-size: .82rem; }

/* --- utilities --- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-l { margin-top: 2.4rem; }
.muted { color: var(--muted); }
.nowrap { white-space: nowrap; }
.flow > * + * { margin-top: 1.1rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; }
.note-box { background: var(--amber-soft); border: 1px solid #f0d9af; border-radius: var(--radius); padding: 18px 22px; color: #7a5410; }
.note-box strong { color: #5f4209; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px,4vw,48px); align-items: center; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; } }
