/* ============================================================
   Samuel Vigiano · layout da home (Bloco 2 · Rodada 2 · R32)
   Depende de tokens.css.
   Regra 0: todos os derivados vêm de var(--token) via color-mix.
             Nenhum hex órfão neste arquivo — auditoria por grep.
   Princípio novo (Rodada 2): a foto do hero é AMBIENTE, não objeto.
                              Zero molduras (placa/filete/border-radius).
   ============================================================ */

/* ---------- Tokens derivados (declarados · Regra 0) ---------- */
:root {
  /* Superfície escura do hero (nova base · dá role operativo ao Preto declarado) */
  --verde-hero:           color-mix(in oklab, var(--color-verde) 82%, var(--color-preto) 18%);
  --verde-hero-glow:      color-mix(in oklab, var(--verde-hero), white 6%);
  --verde-hero-deep:      color-mix(in oklab, var(--verde-hero), black 6%);

  /* Radial off-center do Manifesto (mantém o par --verde-glow/--verde-deep original) */
  --verde-glow:           color-mix(in oklab, var(--color-verde), white 6%);
  --verde-deep:           color-mix(in oklab, var(--color-verde), black 8%);
  --verde-lighter-6:      color-mix(in oklab, var(--color-verde), white 6%);

  /* Acentos alpha */
  --accent-alpha-40:      color-mix(in srgb, var(--accent) 40%, transparent);
  --accent-alpha-35:      color-mix(in srgb, var(--accent) 35%, transparent);
  --accent-alpha-32:      color-mix(in srgb, var(--accent) 32%, transparent);
  --accent-alpha-30:      color-mix(in srgb, var(--accent) 30%, transparent);
  --accent-alpha-20:      color-mix(in srgb, var(--accent) 20%, transparent);
  --accent-alpha-14:      color-mix(in srgb, var(--accent) 14%, transparent);
  --accent-alpha-08:      color-mix(in srgb, var(--accent) 8%,  transparent);

  /* Superfície e sombra de card premium */
  --card-surface:         color-mix(in srgb, var(--bg) 96%, var(--brand) 4%);
  --card-shadow-hover:    0 24px 40px -20px color-mix(in srgb, var(--color-verde) 32%, transparent);

  /* Ink alpha */
  --ink-on-dark-alpha-86: color-mix(in srgb, var(--ink-on-dark) 86%, transparent);
  --ink-alpha-70:         color-mix(in srgb, var(--ink) 70%, transparent);
  --brand-alpha-14:       color-mix(in srgb, var(--brand) 14%, transparent);
  --brand-alpha-24:       color-mix(in srgb, var(--brand) 24%, transparent);

  /* Sombras (CTA · fotos herdadas descontinuadas) */
  --shadow-btn:           0 8px 24px -10px color-mix(in srgb, var(--color-verde) 40%, transparent);
  --shadow-btn-hover:     0 14px 32px -12px color-mix(in srgb, var(--color-verde) 52%, transparent);
  --shadow-btn-invert:    0 10px 28px -12px color-mix(in srgb, var(--color-preto) 55%, transparent);
  --shadow-btn-invert-hv: 0 16px 36px -14px color-mix(in srgb, var(--color-preto) 70%, transparent);

  /* Textura noise (SVG inline) */
  --texture-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.98  0 0 0 0 0.89  0 0 0 0 0.7  0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Skip link ---------- */
.skip { position: absolute; left: -9999px; }
.skip:focus {
  position: fixed; left: 16px; top: 16px;
  background: var(--accent); color: var(--brand);
  padding: 8px 14px; z-index: 100; border-radius: 999px;
}

/* ---------- Reveal · IntersectionObserver ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Header · transparente sobre hero, solidifica ao rolar ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.28s ease, border-color 0.28s ease, backdrop-filter 0.28s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
}
.site-header .brand { display: flex; align-items: center; position: relative; }
.site-header .brand img { height: 30px; width: auto; display: block; }
.site-header .brand .logo-dark { display: block; }
.site-header .brand .logo-light { display: none; }

.site-header nav {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.site-header nav a {
  color: var(--ink-on-dark);
  text-decoration: none;
  opacity: 0.86;
  transition: opacity 0.22s ease, color 0.22s ease;
  position: relative;
}
.site-header nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.22s ease;
}
.site-header nav a:hover { opacity: 1; color: var(--accent); }
.site-header nav a:hover::after { transform: scaleX(1); }

/* CTA do header · estado transparente sobre hero */
.site-header .cta {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--accent-alpha-35);
  color: var(--ink-on-dark);
  background: transparent;
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease,
              color 0.22s ease, transform 0.22s ease;
}
.site-header .cta:hover {
  background: var(--bg);
  color: var(--brand);
  border-color: var(--bg);
  transform: translateY(-1px);
}

/* Estado scrolled · fundo creme, logo padrão, CTA verde sólido */
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--brand-alpha-14);
}
.site-header.is-scrolled .brand .logo-dark { display: none; }
.site-header.is-scrolled .brand .logo-light { display: block; }
.site-header.is-scrolled nav a { color: var(--ink); }
.site-header.is-scrolled nav a:hover { color: var(--brand); }
.site-header.is-scrolled .cta {
  background: var(--brand);
  color: var(--ink-on-dark);
  border-color: var(--brand);
  box-shadow: var(--shadow-btn);
}
.site-header.is-scrolled .cta:hover {
  background: var(--verde-lighter-6);
  border-color: var(--verde-lighter-6);
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn-hover);
}
@media (max-width: 720px) { .site-header nav { display: none; } }

/* ---------- Botões pílula (default = fundo claro) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease,
              border-color 0.22s ease, box-shadow 0.22s ease;
}
.btn-primary {
  background: var(--brand); color: var(--ink-on-dark);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--verde-lighter-6);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
}
.btn-ghost {
  border-color: var(--brand-alpha-24);
  color: var(--brand);
}
.btn-ghost:hover {
  border-color: var(--accent-alpha-32);
  color: var(--brand);
  transform: translateY(-2px);
}
.btn-wa .wa-glyph { width: 18px; height: 18px; display: block; flex: none; }

/* Botões INVERTIDOS · usados sobre superfícies escuras (hero) */
.hero .btn-primary {
  background: var(--bg);      /* Creme */
  color: var(--brand);        /* Verde profundo */
  box-shadow: var(--shadow-btn-invert);
}
.hero .btn-primary:hover {
  background: color-mix(in oklab, var(--bg), white 6%);
  box-shadow: var(--shadow-btn-invert-hv);
  transform: translateY(-2px);
}
.hero .btn-ghost {
  border-color: var(--accent-alpha-35);
  color: var(--ink-on-dark);
}
.hero .btn-ghost:hover {
  border-color: var(--accent);
  color: var(--ink-on-dark);
  transform: translateY(-2px);
}

/* ---------- Hero escuro full-bleed · background definido junto da fusão (linha 309) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--ink-on-dark);
  min-height: clamp(560px, 92vh, 820px);
  padding-block: clamp(112px, 12vw, 152px) clamp(56px, 8vw, 96px);
  display: flex;
  align-items: center;
}
/* Camada de textura noise · Regra 4 */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--texture-noise);
  mix-blend-mode: overlay;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
/* Glow radial dourado sutil atrás do busto (opcional Regra 1) */
.hero::after {
  content: '';
  position: absolute;
  top: 12%;
  right: 6%;
  width: 42%;
  height: 76%;
  background: radial-gradient(closest-side, var(--accent-alpha-08), transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.hero .container {
  position: relative; z-index: 2;
  max-width: 1240px;
  display: grid;
  /* Coluna da foto reduzida para ~48vw (Samuel · 2026-07-12) · servir nativo sem upscale */
  grid-template-columns: minmax(0, 1fr) minmax(0, 48vw);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.hero .text { position: relative; z-index: 2; }
.hero .eyebrow {
  color: var(--accent);
  letter-spacing: 0.2em;
  display: inline-block;
  margin-bottom: var(--stack-m);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(42px, 6.4vw, 78px);
  line-height: 1.02;
  color: var(--ink-on-dark);
  max-width: 15ch;
  margin-bottom: var(--stack-m);
}
.hero h1 em { font-style: italic; font-weight: 600; color: var(--accent); }
.hero .lead {
  font-family: var(--font-body);
  color: var(--ink-on-dark-alpha-86);
  font-size: clamp(17px, 1.8vw, 20px);
  max-width: 46ch;
  margin-bottom: var(--stack-l);
}
.hero .actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Foto AMBIENTE · a foto é dissolvida no fundo por MÁSCARA, não por overlay.
   Zero tinta sobre a foto — não existe aresta porque não existe borda. */
.hero .figure {
  position: relative;
  align-self: stretch;
  min-height: clamp(400px, 60vh, 620px);
  margin-block: calc(-1 * clamp(56px, 8vw, 96px));   /* estende até bordas do hero */
  margin-right: calc(-1 * var(--gutter));             /* estende até borda direita */
  margin-left: -2px;                                  /* mantido · sobrepõe 2px sob a coluna de texto */
}
.hero .figure picture,
.hero .figure img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 12%;                       /* retrato 2:3 · rosto no terço superior · E-BIS 2026-07-12 */
  display: block;
  transform: none;                                    /* sem transform/scale ampliando · nitidez preservada */
}
/* Máscara horizontal · borda esquerda desaparece progressivamente no fundo verde.
   Cross-browser: -webkit-mask-image (Safari) + mask-image (Chrome/Firefox).
   Base fica opaca (não usa mask-composite — evita bug cross-browser). */
.hero .figure img {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%, black 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 18%, black 100%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
/* Fusão INFERIOR · via BACKGROUND da seção (atrás da foto, não sobre) ·
   linear-gradient sobre o radial-gradient existente do .hero */
.hero {
  background:
    linear-gradient(180deg, transparent 82%, color-mix(in srgb, var(--verde-hero-deep) 60%, transparent) 100%),
    radial-gradient(120% 100% at 20% 30%, var(--verde-hero-glow), var(--verde-hero-deep) 78%);
}

/* ---------- Mobile · foto vira fundo do hero com scrim ---------- */
@media (max-width: 900px) {
  .hero {
    padding-block: clamp(120px, 24vw, 168px) clamp(48px, 10vw, 80px);
    min-height: 80vh;
  }
  .hero .container {
    grid-template-columns: 1fr;
    position: relative;
  }
  .hero .figure {
    position: absolute;
    inset: 0;
    margin: 0;
    min-height: unset;
    z-index: 0;
  }
  .hero .figure picture, .hero .figure img { object-position: center 15%; }
  /* Scrim mobile · 72% do --verde-hero atrás do texto */
  .hero .figure::before {
    background: linear-gradient(180deg,
                  color-mix(in srgb, var(--verde-hero) 62%, transparent) 0%,
                  color-mix(in srgb, var(--verde-hero) 72%, transparent) 55%,
                  var(--verde-hero) 100%);
  }
  .hero .figure::after { display: none; }
  .hero .text {
    grid-column: 1;
    position: relative; z-index: 2;
    padding-block-start: 0;
  }
}

/* ---------- Sobre ---------- */
.sobre { padding-top: clamp(64px, 9vw, 112px); }
.sobre .container { max-width: 900px; }
.sobre .eyebrow { display: block; margin-bottom: var(--stack-s); }
.sobre h2 { max-width: 22ch; margin-bottom: var(--stack-l); }
.sobre p {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.7;
  max-width: 62ch;
  color: var(--ink);
}
.sobre p + p { margin-top: var(--stack-m); }
.sobre .creds {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--stack-l);
  padding-top: var(--stack-m);
  border-top: 1px solid var(--accent-alpha-14);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-alpha-70);
}
.sobre .creds span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--accent-alpha-14);
  border-radius: 999px;
  transition: border-color 0.22s ease, transform 0.22s ease, color 0.22s ease;
}
.sobre .creds span::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 999px;
  display: inline-block;
}
.sobre .creds span:hover {
  border-color: var(--accent-alpha-32);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ---------- Manifesto (dark · gradiente radial + noise) ---------- */
.manifesto {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 25% 30%, var(--verde-glow), var(--verde-deep) 78%);
  color: var(--ink-on-dark);
}
.manifesto::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--texture-noise);
  mix-blend-mode: overlay;
  opacity: 0.55;
  pointer-events: none;
}
.manifesto .container { position: relative; z-index: 1; max-width: 880px; }
.manifesto .eyebrow { color: var(--accent-hover); display: block; margin-bottom: var(--stack-s); }
.manifesto h2 {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.08;
  margin-bottom: var(--stack-l);
  max-width: 22ch;
}
.manifesto p {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.7;
  color: var(--ink-on-dark);
  max-width: 60ch;
}
.manifesto p + p { margin-top: var(--stack-m); }
.manifesto .signature {
  margin-top: var(--stack-l);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-size: 20px;
}
/* Pull-quote do Manifesto (aspa central em Cormorant) */
.manifesto-quote {
  position: relative;
  margin: var(--stack-l) 0;
  padding: 24px 32px 24px 44px;
  border-left: 3px solid var(--accent);
  max-width: 60ch;
}
.manifesto-quote::before {
  content: "“";
  position: absolute;
  left: 6px;
  top: -14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 96px;
  line-height: 1;
  color: var(--accent-alpha-30);
  pointer-events: none;
  user-select: none;
}
.manifesto-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.35;
  color: var(--accent);
  margin: 0;
}
.manifesto-quote p em { font-style: italic; }

/* ---------- Método ---------- */
.metodo .container { max-width: 1120px; }
.metodo .eyebrow { display: block; margin-bottom: var(--stack-s); }
.metodo h2 { max-width: 22ch; margin-bottom: var(--stack-m); }
.metodo .lead-text {
  max-width: 62ch;
  color: var(--ink);
  font-size: clamp(17px, 1.7vw, 19px);
  line-height: 1.65;
  margin-bottom: var(--stack-l);
}
.metodo .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 40px);
  margin-bottom: var(--stack-l);
}
@media (max-width: 720px) { .metodo .steps { grid-template-columns: 1fr; } }
.step { padding-top: var(--stack-s); border-top: 2px solid var(--accent); }
.step .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brand);
  font-size: 26px;
  margin-bottom: var(--stack-s);
}
.step p { font-size: 15.5px; line-height: 1.6; color: var(--ink); }

/* Aspa tipográfica ornamental (discricionário R1 aprovado) */
.metodo .integrativa {
  position: relative;
  padding: 28px 32px;
  background: var(--bg-section);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  max-width: 68ch;
  overflow: hidden;
}
.metodo .integrativa::before {
  content: "“";
  position: absolute;
  top: -30px;
  left: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 160px;
  line-height: 1;
  color: var(--accent-alpha-20);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
/* Aspa de fecho (par visual da abertura) — resolve nota do revisor */
.metodo .integrativa::after {
  content: "”";
  position: absolute;
  right: 24px;
  bottom: -70px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 160px;
  line-height: 1;
  color: var(--accent-alpha-20);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.metodo .integrativa p {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
  color: var(--brand);
}

/* ---------- Contato ---------- */
.contato .container { max-width: 900px; }
.contato .eyebrow { display: block; margin-bottom: var(--stack-s); }
.contato h2 { max-width: 22ch; margin-bottom: var(--stack-m); }
.contato p { color: var(--ink); max-width: 56ch; margin-bottom: var(--stack-m); }
/* Pull-quote do Contato (chamada estratégica de fecho) */
.contato-pull {
  max-width: 62ch !important;
  margin-block: var(--stack-m) var(--stack-l) !important;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  background: var(--bg-section);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.contato-pull strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.4;
  color: var(--brand);
}
.contato .channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
/* Cards-ação premium (3 cards clicáveis · WhatsApp primário) */
.channel {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto;
  padding: 26px 28px 24px;
  min-height: 156px;
  background: var(--card-surface);
  border: 1px solid var(--accent-alpha-14);
  border-radius: 16px;
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease,
              background 0.22s ease, box-shadow 0.22s ease;
}
.channel .icon {
  color: var(--accent);
  opacity: 0.55;
  margin-bottom: 14px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.channel .icon svg { display: block; }
.channel .label {
  font-family: var(--font-body);
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.channel .value {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--brand);
  line-height: 1.35;
}
.channel .arrow {
  position: absolute;
  right: 22px; bottom: 22px;
  color: var(--accent);
  opacity: 0.55;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.channel:hover {
  transform: translateY(-3px);
  border-color: var(--accent-alpha-40);
  background: var(--bg);
  box-shadow: var(--card-shadow-hover);
}
.channel:hover .icon { opacity: 1; }
.channel:hover .arrow { opacity: 1; transform: translate(4px, 0); }
.channel:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
/* Primário (WhatsApp · o canal que converte) — borda mais forte + ícone pleno em repouso */
.channel.channel-primary { border-color: var(--accent-alpha-30); }
.channel.channel-primary .icon { opacity: 1; }
.channel.channel-primary:hover { border-color: var(--accent-alpha-40); }
/* Mobile · empilhados full-width · alvo de toque ≥ 48px */
@media (max-width: 600px) {
  .contato .channels { grid-template-columns: 1fr; }
  .channel { min-height: 108px; padding: 22px 24px 20px; }
  .channel .arrow { bottom: 20px; right: 20px; }
}

/* ---------- Políticas (privacidade / cookies / termos) ---------- */
.policy { padding-block: clamp(112px, 13vw, 152px) clamp(64px, 8vw, 96px); background: var(--bg); }
.policy .container { max-width: 720px; }
.policy .eyebrow { display: block; margin-bottom: var(--stack-s); }
.policy h1 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brand);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  max-width: 26ch;
  margin: 0 0 var(--stack-m) 0;
}
.policy .policy-lead {
  max-width: 70ch;
  font-family: var(--font-body);
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 var(--stack-l) 0;
}
.policy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brand);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  max-width: 70ch;
  margin: 2.75rem 0 var(--stack-s) 0;
}
.policy h2:first-of-type { margin-top: 0; }
.policy p,
.policy ul,
.policy ol {
  max-width: 70ch;
  font-family: var(--font-body);
  font-size: clamp(15.5px, 1.4vw, 16.5px);
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
}
.policy p + p,
.policy p + ul,
.policy ul + p,
.policy p + ol,
.policy ol + p {
  margin-top: var(--stack-s);
}
.policy ul,
.policy ol {
  padding-left: 1.4rem;
  margin-top: var(--stack-s);
}
.policy ul li,
.policy ol li {
  margin-top: 8px;
}
.policy ul li::marker,
.policy ol li::marker {
  color: var(--accent);
}
.policy strong { color: var(--ink-strong); font-weight: 600; }
.policy em { color: var(--ink); font-style: italic; }
.policy a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.policy a:hover { color: var(--accent); }
.policy .policy-nav {
  margin-top: var(--stack-xl);
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

/* ---------- Footer ---------- */
.site-footer {
  padding-block: clamp(40px, 6vw, 72px);
  border-top: 1px solid var(--brand-alpha-14);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-alpha-70);
}
.site-footer .container {
  display: flex; flex-wrap: wrap;
  gap: 24px; align-items: center; justify-content: space-between;
}
.site-footer .brand img { height: 26px; width: auto; }
.site-footer .meta { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.site-footer a {
  color: inherit; text-decoration: none;
  opacity: 0.86;
  position: relative;
  transition: color 0.22s ease, opacity 0.22s ease;
}
.site-footer a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.22s ease;
}
.site-footer a:hover { opacity: 1; color: var(--brand); }
.site-footer a:hover::after { transform: scaleX(1); }
.site-footer .footer-oab {
  flex-basis: 100%;
  font-size: 12.5px;
  color: var(--ink-alpha-70);
  letter-spacing: 0.01em;
  margin-bottom: 2px;
}
