/* Self-hosted, OFL-licensed fonts: no requests to third parties.
   League Spartan (display), Fraunces (VeriVita), Nunito (text). */
@font-face {
  font-family: "League Spartan";
  src: url("../assets/fonts/web/LeagueSpartan-wght.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/web/Fraunces-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("../assets/fonts/web/Nunito-wght.woff2") format("woff2");
  font-weight: 200 1000;
  font-display: swap;
}

:root {
  /* Bio Freezer Food (parent brand) — sampled from the real logo */
  --bff-green: #1DCE25;
  --bff-teal: #05819D;
  --bff-red: #EF3030;
  --bff-forest: #1E5B3B;
  --bff-mint: #B4F7AD;
  --bff-sky: #BDF3FF;
  --bff-salmon: #FFA9A9;
  --cream: #FFFFFF;
  --cream-deep: #F4F4F1;

  /* VeriVita (consumer sub-brand) — official brand guidelines 2026 */
  --veri-dark: #15694D;
  --veri-light: #5BB56D;
  --veri-stem: #DBDD45;
  --veri-orange: #F39200;
  --pantone-7738: #48A23F; /* Pantone 7738 C */
  --veri-cream: #F6F2EE; /* matches the animated logo background */

  --ink: #20261F;
  --white: #FFFFFF;
  --radius: 20px;
  --shadow: 0 12px 32px rgba(30, 91, 59, 0.10);
  --max-width: 1200px;
  --header-h: 64px;

  /* One type scale for every "sheet" so all pages read the same */
  --h2-size: clamp(1.55rem, 2.4vw, 2.1rem);
  --h3-size: 1.15rem;
  --body-size: 1.05rem;
  --small-size: 0.92rem;

  --font-display: "League Spartan", "Nunito", system-ui, sans-serif;
  --font-veri: "Fraunces", Georgia, serif;
  --font-text: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;

  font-size: 16px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  font-family: var(--font-text);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: var(--body-size);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display); text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bff-forest);
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }

p { margin: 0 0 1em; }
strong { font-weight: 800; color: var(--bff-forest); }
img, video { max-width: 100%; display: block; }
a { color: inherit; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; width: 100%; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display); text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--bff-teal);
  margin-bottom: 12px;
}
.lead-strong { font-weight: 800; color: var(--bff-forest); }

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-display); text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--bff-forest); color: var(--white); box-shadow: 0 8px 20px rgba(30,91,59,0.28); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(30,91,59,0.08);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo-mark img { height: 36px; width: auto; }

nav.main-nav { display: flex; align-items: center; gap: 22px; }
nav.main-nav a { text-decoration: none; font-weight: 700; color: var(--ink); font-size: 0.9rem; }
nav.main-nav a:hover { color: var(--bff-teal); }

.lang-switch { display: flex; border: 2px solid var(--bff-forest); border-radius: 999px; overflow: hidden; font-weight: 800; font-size: 0.78rem; }
.lang-switch button { border: none; background: transparent; padding: 5px 12px; cursor: pointer; font-weight: 800; color: var(--bff-forest); }
.lang-switch button.active { background: var(--bff-forest); color: var(--white); }

.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--bff-forest); }

/* ---------- Sheets: every section fills exactly one screen ---------- */
.sheet {
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0;
  scroll-snap-align: start;
}
.alt { background: var(--cream-deep); }

.section-head { max-width: 720px; margin: 0 0 36px; }
.section-head.center { margin: 0 auto 36px; text-align: center; }

/* Hero */
.hero { padding: 0; }
.hero-main { flex: 1; display: flex; align-items: center; padding: 24px 0 16px; }
.hero-main .container { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); }
.hero .lead { font-size: 1.2rem; max-width: 46ch; margin: 0; }
.hero-map { width: 100%; max-width: 620px; max-height: calc(100svh - var(--header-h) - 190px); object-fit: contain; margin-left: auto; }

/* Four pillars band — the cut between the hero and the next sheet */
.pillars {
  background: var(--bff-forest);
  color: var(--white);
  clip-path: polygon(0 34px, 100% 0, 100% 100%, 0 100%);
  padding: 50px 0 26px;
}
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pillar { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.pillar svg { width: 46px; height: 46px; stroke: var(--white); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.pillar span { font-family: var(--font-display); text-transform: uppercase; font-weight: 500; letter-spacing: 0.06em; font-size: 0.95rem; }

/* Who we are */
.about-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: center; }
.about-copy { max-width: 62ch; }

.capacity-box {
  justify-self: center;
  width: fit-content;
  background: var(--white);
  border: 2px solid var(--bff-forest);
  border-radius: var(--radius);
  padding: 40px;
}
.capacity-box h3 { margin-bottom: 28px; }
.stat-block-big { display: flex; flex-direction: column; gap: 28px; }
.stat-block-big .num { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.6rem, 4.4vw, 3.4rem); color: var(--pantone-7738); display: block; line-height: 1; margin-bottom: 6px; }
.stat-block-big .label { font-size: var(--small-size); opacity: 0.75; font-weight: 700; }

/* What sets us apart — photo + bullet points inside one rounded card */
.apart-card {
  background: var(--cream-deep);
  border-radius: 40px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.apart-card img {
  width: 100%;
  height: min(58vh, 520px);
  object-fit: cover;
  border-radius: 32px;
}
.apart-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.apart-list li { display: flex; gap: 14px; align-items: flex-start; }
.apart-list .check {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--bff-forest); display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.apart-list .check svg { width: 14px; height: 14px; stroke: var(--white); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* Technology */
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.tech-grid { grid-template-columns: 0.9fr 1.1fr; }
.tech-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Why freeze-drying */
.benefit-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.benefit-card {
  background: var(--white); border-radius: var(--radius); padding: 24px 20px;
  box-shadow: var(--shadow); border-top: 5px solid var(--pantone-7738);
}
.benefit-card h4 { font-size: 1rem; margin: 0 0 8px; color: var(--bff-forest); font-family: var(--font-text); font-weight: 800; }
.benefit-card p { font-size: var(--small-size); margin: 0; opacity: 0.85; }
.why-photo {
  margin-top: 28px;
  width: 100%;
  height: min(30vh, 280px);
  object-fit: cover;
  object-position: center 72%;
  border-radius: var(--radius);
}

/* Uses & places — icon groups with a vertical label bar */
.uses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.uses-group { --group: var(--bff-forest); display: flex; gap: 28px; align-items: stretch; }
.uses-where { --group: var(--bff-teal); }
.uses-bar {
  flex-shrink: 0; width: 64px; border-radius: 999px; background: var(--group);
  display: flex; align-items: center; justify-content: center;
}
.uses-bar span {
  writing-mode: vertical-rl; transform: rotate(180deg); white-space: nowrap;
  font-family: var(--font-display); text-transform: uppercase; font-weight: 700; letter-spacing: 0.06em;
  color: var(--white); font-size: 1rem; text-transform: uppercase;
}
.uses-icons { list-style: none; margin: 0; padding: 0; flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 12px; }
.uses-icons li { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.uses-icons i {
  display: block; width: min(13vh, 108px); aspect-ratio: 1; background: var(--group);
  -webkit-mask: var(--icon) center / contain no-repeat; mask: var(--icon) center / contain no-repeat;
}
.ic-snack { --icon: url("../assets/usos/snack.png"); }
.ic-nutrition { --icon: url("../assets/usos/nutrition.png"); }
.ic-smoothie { --icon: url("../assets/usos/smoothie.png"); }
.ic-kids { --icon: url("../assets/usos/kids.png"); }
.ic-yogurt { --icon: url("../assets/usos/yogurt.png"); }
.ic-toppings { --icon: url("../assets/usos/toppings.png"); }
.ic-school { --icon: url("../assets/usos/school.png"); }
.ic-work { --icon: url("../assets/usos/work.png"); }
.ic-park { --icon: url("../assets/usos/park.png"); }
.ic-travel { --icon: url("../assets/usos/travel.png"); }
.ic-outdoor { --icon: url("../assets/usos/outdoor.png"); }
.ic-sports { --icon: url("../assets/usos/sports.png"); }
.uses-icons span {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 400;
  letter-spacing: 0.03em; color: var(--group); font-size: 0.95rem; line-height: 1.2;
}

/* VeriVita — its own type system: Fraunces for display, Helvetica Neue for text */
.verivita-section {
  background: var(--veri-cream);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.verivita-section .eyebrow { font-family: var(--font-veri); font-variation-settings: "SOFT" 100, "WONK" 0; font-weight: 700; color: var(--veri-dark); letter-spacing: 0.04em; }
.verivita-section strong { color: var(--veri-dark); }
.verivita-logo {
  width: 100%; height: auto;
  /* soft edges so the video background melts into the section */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent), linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent), linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
  mask-composite: intersect;
}

/* Sheet 1: animated logo + range still life + slogan */
.vv-hero { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: 32px; align-items: center; }
.vv-hero .verivita-logo { max-width: 360px; justify-self: center; }
.vv-bodegon img { width: 100%; max-height: min(48vh, 500px); object-fit: contain; }
.verivita-slogan {
  font-family: var(--font-veri); font-variation-settings: "SOFT" 100, "WONK" 0; font-weight: 700; text-align: center;
  color: var(--veri-orange); font-size: clamp(2rem, 4.4vw, 3.6rem); line-height: 1.1; margin: 24px 0 0;
}

/* Sheet 2: copy + certifications + big 3 g sachet */
.vv-detail { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.vv-title { font-family: var(--font-veri); font-variation-settings: "SOFT" 100, "WONK" 0; color: var(--veri-dark); letter-spacing: 0; }
.verivita-copy p { line-height: 1.7; }
.cert-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 8px 0 8px; }
.cert-badge { display: flex; align-items: center; gap: 6px; background: var(--white); border: 2px solid var(--veri-light); border-radius: 999px; padding: 6px 16px; font-weight: 700; font-size: 0.9rem; color: var(--veri-dark); }
.cert-fine { font-size: 0.8rem; opacity: 0.65; font-style: italic; margin: 0; }
.vv-sachet { margin: 0; text-align: center; }
.vv-sachet img { width: 100%; max-height: min(56vh, 520px); object-fit: contain; margin: 0 auto; filter: drop-shadow(0 20px 26px rgba(21,105,77,0.14)); }
.vv-sachet figcaption { margin-top: 14px; }
.vv-sachet b { display: block; font-family: var(--font-veri); font-variation-settings: "SOFT" 100, "WONK" 0; color: var(--veri-dark); font-size: 1.5rem; }
.vv-sachet span { font-size: var(--body-size); opacity: 0.8; }

/* B2B — trusted partner */
.b2b-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.b2b-visual {
  position: relative; background: var(--cream-deep); border-radius: 32px;
  height: min(66vh, 600px); display: flex; align-items: flex-end; justify-content: center;
  padding: 64px 18px 28px;
}
.b2b-visual picture { display: flex; align-items: flex-end; }
.b2b-visual img { width: auto; object-fit: contain; filter: drop-shadow(0 18px 22px rgba(0,0,0,0.14)); }
.b2b-bags img { width: 100%; height: auto; max-height: min(54vh, 500px); }
.b2b-tag {
  position: absolute; top: 24px; left: 24px; background: var(--bff-forest); color: var(--white);
  font-family: var(--font-display); text-transform: uppercase; font-weight: 500; font-size: 0.78rem; letter-spacing: 0.06em;
  padding: 7px 14px; border-radius: 999px; text-transform: uppercase;
}
.trust-grid { list-style: none; margin: 8px 0 28px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; }
.trust-grid li { display: flex; gap: 14px; align-items: flex-start; }
.trust-grid svg {
  flex-shrink: 0; width: 44px; height: 44px; padding: 9px; border-radius: 12px; background: var(--bff-mint);
  stroke: var(--bff-forest); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.trust-grid b { display: block; color: var(--bff-forest); font-weight: 800; line-height: 1.3; }
.trust-grid span { display: block; font-size: var(--small-size); opacity: 0.8; line-height: 1.45; }

/* Science */
.science-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.science-grid h4 { font-family: var(--font-text); font-weight: 800; color: var(--bff-forest); font-size: 1rem; margin: 0 0 16px; }

.uni-badge {
  display: flex; align-items: center; gap: 16px; margin-top: 24px;
  background: var(--white); border-radius: 16px; padding: 16px 20px;
  box-shadow: var(--shadow); border-left: 4px solid var(--bff-teal);
}
.uni-badge .uni-logo { height: 44px; width: auto; flex-shrink: 0; }
.uni-badge strong { display: block; color: var(--bff-forest); font-size: 0.95rem; }
.uni-badge span { display: block; font-size: 0.85rem; opacity: 0.7; }

.research-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.research-chip {
  display: flex; align-items: center; gap: 12px; background: var(--white);
  border-radius: 14px; padding: 16px; box-shadow: var(--shadow);
  font-weight: 700; font-size: var(--small-size); color: var(--bff-forest);
}
.research-chip .icon {
  font-size: 1.2rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; background: var(--bff-mint);
}

/* FAQ */
.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; align-items: start; width: 100%; }
.faq-item { border: 1px solid rgba(30,91,59,0.14); border-radius: 14px; overflow: hidden; background: var(--cream); }
.faq-question {
  width: 100%; display: flex; align-items: center; gap: 16px; text-align: left;
  background: none; border: none; cursor: pointer; padding: 14px 20px;
  font-family: var(--font-text);
  font-size: 1rem; font-weight: 700; color: var(--ink);
}
.faq-icon {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px;
  background: var(--bff-sky); display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.faq-item:nth-child(even) .faq-icon { background: var(--bff-mint); }
.faq-question span:nth-child(2) { flex: 1; }
.faq-chevron { flex-shrink: 0; color: var(--bff-teal); transition: transform 0.2s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.open .faq-answer { max-height: 260px; }
.faq-answer p { padding: 0 20px 16px 70px; margin: 0; font-size: var(--small-size); opacity: 0.85; }

/* Contact */
.contact-section { background: var(--bff-forest); color: var(--white); }
.contact-section h2 { color: var(--white); }
.contact-section .eyebrow { color: var(--bff-mint); }
.contact-section strong { color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-card { background: rgba(255,255,255,0.08); border-radius: var(--radius); padding: 32px; }
.contact-card a.email { color: var(--bff-mint); font-weight: 800; font-size: 1.15rem; text-decoration: none; }
form.contact-form { display: grid; gap: 14px; }
form.contact-form input, form.contact-form textarea {
  font-family: inherit; font-size: 1rem; padding: 12px 14px; border-radius: 12px;
  border: none; background: rgba(255,255,255,0.12); color: var(--white);
}
form.contact-form input::placeholder, form.contact-form textarea::placeholder { color: rgba(255,255,255,0.6); }
form.contact-form textarea { min-height: 120px; resize: vertical; }
form.contact-form button { justify-self: start; }
.contact-section .btn-primary { background: var(--bff-green); color: var(--bff-forest); }

/* Footer */
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: var(--small-size); cursor: pointer; }
.consent input { margin-top: 5px; accent-color: var(--bff-green); width: 16px; height: 16px; flex-shrink: 0; }
.contact-section a:not(.email):not(.btn) { color: var(--bff-mint); }
.privacy-basic { font-size: 0.75rem; line-height: 1.5; opacity: 0.7; margin: 0; }
.privacy-basic b { font-weight: 700; }

/* Footer, integrated at the bottom of the contact sheet */
.contact-foot {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px 28px;
}
.foot-logo { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
.legal-links a { color: var(--white) !important; opacity: 0.8; text-decoration: none; font-size: 0.85rem; font-weight: 700; }
.legal-links a:hover { opacity: 1; text-decoration: underline; }
.contact-foot .fine-print { margin: 0; opacity: 0.55; font-size: 0.8rem; }

/* Responsive */
@media (max-width: 1100px) {
  nav.main-nav { gap: 16px; }
  nav.main-nav a { font-size: 0.85rem; }
}

@media (max-width: 980px) {
  html { scroll-snap-type: none; }
  .sheet { min-height: 0; padding: 64px 0; }
  .hero-main .container,
  .about-grid, .apart-card, .tech-grid, .vv-hero, .vv-detail, .uses-grid, .b2b-grid, .science-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-map { max-height: none; margin: 0 auto; }
  .stat-block-big { flex-direction: row; flex-wrap: wrap; gap: 32px; }
  .apart-card { padding: 24px; border-radius: 28px; }
  .apart-card img { height: auto; aspect-ratio: 16/10; }
  .benefit-grid { gap: 12px; }
  .b2b-visual { height: auto; }
  .vv-hero .verivita-logo { max-width: 260px; }
  .verivita-copy { text-align: center; }
  .cert-row { justify-content: center; }
}

@media (max-width: 760px) {
  nav.main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--cream);
    flex-direction: column; padding: 24px; gap: 18px; box-shadow: var(--shadow);
    transform: translateY(-150%); transition: transform 0.2s ease;
  }
  nav.main-nav.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .container { padding: 0 20px; }
  .pillars { clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%); padding: 36px 0 20px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
  .pillar svg { width: 38px; height: 38px; }
  .pillar span { font-size: 0.8rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .uses-group { gap: 16px; }
  .uses-bar { width: 48px; }
  .uses-icons i { width: 72px; }
  .uses-icons span { font-size: 0.8rem; }
  .research-grid { grid-template-columns: 1fr; }
  .faq-list { grid-template-columns: 1fr; }
  .stat-block-big { flex-direction: column; gap: 20px; }
  .capacity-box { padding: 28px; }
  .faq-answer p { padding-left: 20px; }

  /* Rows of 5 become a horizontal swipe row instead of wrapping */
  .benefit-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(170px, 1fr);
    overflow-x: auto;
    padding: 4px 20px 14px;
    scroll-snap-type: x mandatory;
    margin: 0 -20px;
  }
  .benefit-grid > * { scroll-snap-align: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- Legal pages (privacidad.html, aviso-legal.html) ---------- */
.legal-page { background: var(--cream-deep); }
.legal-header .container { justify-content: space-between; }
.legal-main { padding: 56px 0 72px; }
.legal-doc {
  max-width: 860px; margin: 0 auto; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 56px 64px;
}
.legal-doc h1 { font-size: var(--h2-size); margin-bottom: 6px; }
.legal-doc .updated { font-size: var(--small-size); opacity: 0.65; margin-bottom: 32px; }
.legal-doc h2 { font-size: var(--h3-size); margin: 36px 0 12px; }
.legal-doc h3 { font-family: var(--font-text); font-weight: 800; font-size: 1rem; color: var(--bff-forest); margin: 20px 0 8px; }
.legal-doc p, .legal-doc li { font-size: 1rem; line-height: 1.7; }
.legal-doc ul { padding-left: 20px; margin: 0 0 1em; }
.legal-doc a { color: var(--bff-teal); }
.legal-doc table { width: 100%; border-collapse: collapse; margin: 8px 0 20px; font-size: 0.95rem; }
.legal-doc th, .legal-doc td { text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid rgba(30,91,59,0.14); }
.legal-doc th { width: 34%; color: var(--bff-forest); font-weight: 800; background: var(--cream-deep); }
.legal-doc mark.todo { background: #FFF2B3; color: var(--ink); padding: 0 4px; border-radius: 4px; }
.legal-foot { background: var(--bff-forest); color: var(--white); padding: 28px 0; }
.legal-foot .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.legal-foot .fine-print { margin: 0; opacity: 0.55; font-size: 0.8rem; }
@media (max-width: 760px) {
  .legal-doc { padding: 32px 22px; border-radius: 14px; }
  .legal-doc th, .legal-doc td { display: block; width: 100%; }
}

/* Contact sheet carries the footer: keep it within one screen */
.contact-section.sheet { padding: 40px 0 28px; }
.contact-section .section-head { margin-bottom: 24px; }
.contact-section form.contact-form textarea { min-height: 96px; }
.contact-section form.contact-form { gap: 12px; }

/* League Spartan is narrower and lighter than the previous display font: compensate */
h1, h2, h3 { letter-spacing: 0.02em; line-height: 1.1; }
.eyebrow, .btn, .pillar span, .b2b-tag { font-weight: 600; }
.uses-icons span { font-weight: 500; }
.stat-block-big .num { font-weight: 700; }
.vv-title, .verivita-slogan, .vv-sachet b, .verivita-section .eyebrow { text-transform: none; }
