/* PCM BG — global styles */

:root {
  --bg: #f6f9fa;
  --surface: #ffffff;
  --surface-2: #eef5f6;
  --ink: #005951;
  --ink-2: #14282b;
  --muted: #5a767a;
  --line: #d9e7ea;
  --line-2: #e8f0f2;
  --accent: #0d7d73;
  --accent-2: #7dd8be;
  --accent-deep: #004a47;

  --radius: 4px;
  --radius-lg: 10px;

  --container: 1280px;
  --section-y: 120px;
  --row-y: 28px;

  --f-display: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-text: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-label: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* The 120px section rhythm reads as a hole on a phone, where a section is one
   column tall — scale it down with the viewport. */
@media (max-width: 720px) {
  :root { --section-y: 64px; --row-y: 20px; }
}

[data-density="compact"] {
  --section-y: 84px;
  --row-y: 18px;
}
[data-density="comfy"] {
  --section-y: 160px;
  --row-y: 36px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--f-text);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }

/* Type scale */
/* Eyebrows removed site-wide per design preference. Kept the styling below so
   they can be reinstated by dropping this one rule. */
.eyebrow { display: none !important; }
.eyebrow {
  font-family: var(--f-label);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.eyebrow.on-dark { color: rgba(255, 255, 255, 0.85); }
.eyebrow.on-dark::before { background: var(--accent-2); }
.eyebrow.no-dot::before { display: none; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.h-display {
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.035em;
}
.h-section {
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.h-card {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 56ch;
  font-weight: 400;
}

.muted { color: var(--muted); }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

section { padding: var(--section-y) 0; }
section + section { padding-top: 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  /* Stacked, the title has to lead — the kicker column comes first in source
     only because it sits on the left of the two-column desktop layout. */
  .section-head > *:first-child { order: 2; }
  .section-head > *:last-child  { order: 1; }
}

.hairline { border-top: 1px solid var(--line); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-deep); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--ink); }
/* Sits over photography, so it can't rely on the backdrop being dark: a tinted
   scrim + blur guarantees contrast for the label whatever is behind it, and the
   border is opaque enough to read as an edge. Hover inverts to solid white. */
.btn-ghost.on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(4, 32, 34, 0.45);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
}
.btn-ghost.on-dark:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-accent {
  background: var(--accent-2);
  color: var(--ink);
}
.btn-accent:hover { background: #65c9ad; }
.btn-sm { padding: 9px 14px; font-size: 13px; }
.btn .arr { display: inline-block; transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* Header */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 248, 250, 0.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line-2);
}
/* --- WordPress admin bar fix (logged-in only) ---
   A plugin injects an identity `transform: matrix(1,0,0,1,0,0)` on <body>. Any
   transform makes the element the containing block for position:fixed children,
   so the fixed admin bar anchored to <body> (offset 32px by html margin) instead
   of the viewport — pushing it down onto the header. Cancelling the no-op
   transform restores correct fixed positioning. */
.admin-bar { transform: none !important; }

/* Offset the sticky header below the bar on scroll. Bar = 32px >=783px,
   46px <=782px, and becomes position:absolute (scrolls away) <=600px. */
.admin-bar .hdr { top: 32px !important; }
@media screen and (max-width: 782px) {
  .admin-bar .hdr { top: 46px !important; }
}
@media screen and (max-width: 600px) {
  /* Bar scrolls away here, so the header should pin to the very top. */
  .admin-bar .hdr { top: 0 !important; }
}
.hdr-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.hdr nav {
  display: flex; gap: 32px;
}
.hdr nav a {
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  position: relative;
}
.hdr nav a:hover { color: var(--accent); }
.hdr nav a.active,
.hdr nav .current-menu-item > a,
.hdr nav .current_page_item > a { color: var(--accent); }
.hdr-right { display: flex; align-items: center; gap: 16px; }
.hdr nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
}

/* Mobile nav toggle */
.hdr-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
}
.hdr-toggle:hover { border-color: var(--ink); }
.hdr-toggle__close { display: none; }
.hdr.open .hdr-toggle__open { display: none; }
.hdr.open .hdr-toggle__close { display: inline; }

@media (max-width: 980px) {
  .hdr nav { display: none; }
  .hdr-toggle { display: inline-flex; }
  .hdr-cta { display: none; }

  .hdr.open nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 24px 32px 32px;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--line-2);
    box-shadow: 0 16px 32px -24px rgba(10, 37, 64, 0.25);
    max-height: calc(100vh - 93px);
    overflow-y: auto;
  }
  .hdr.open nav ul {
    flex-direction: column;
    gap: 16px;
  }
  .hdr.open nav a {
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 4px 0;
  }
}
@media (max-width: 720px) {
  .hdr nav ul { gap: 14px; }
  .hdr-right { gap: 10px; }
  /* The 65px mark makes the row wider than a phone viewport, which pushes the
     container padding off-screen and leaves logo and toggle flush to the edges.
     Shrink the mark and let the flex row breathe instead. */
  .hdr .wm-logo { height: 44px; }
  .hdr-inner { gap: 16px; padding: 10px 0; }
  .wm { flex: 0 1 auto; min-width: 0; }
  .wm-logo { max-width: 100%; }
}

/* Prevent body scroll when the mobile drawer is open */
body.is-nav-open { overflow: hidden; }

.lang-sw {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  font-family: var(--f-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
/* The items must be flex boxes, not inline ones: padding on an inline <a> does
   not grow its line box, so the active pill's fill spilled past the row instead
   of sitting inside the outer track. */
.lang-sw a, .lang-sw button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: 5px 10px;
  line-height: 1;
  border-radius: 999px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  text-transform: uppercase;
}
.lang-sw a.on, .lang-sw button.on,
.lang-sw .current-lang a {
  background: var(--ink);
  color: #fff;
}
.lang-sw ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
}
.lang-sw li { display: flex; }

/* Wordmark */
.wm {
  display: inline-flex;
  align-items: center;
}
.wm-logo {
  height: 40px;
  width: auto;
  display: block;
}
.hdr .wm-logo { height: 65px; }

/* Card */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -28px rgba(10, 37, 64, 0.4);
}

/* Pill / chip */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--f-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
}
.chip-num {
  font-family: var(--f-label);
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* Footer */
.ft {
  background: var(--ink);
  color: #d6dde6;
  padding: 80px 0 40px;
  margin-top: 120px;
}
.ft a { color: #d6dde6; }
.ft a:hover { color: var(--accent-2); }
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 900px) {
  .ft-grid { grid-template-columns: 1fr 1fr; }
}
.ft h5 {
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 16px;
  font-weight: 500;
}
.ft ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ft ul a { color: #d6dde6; font-size: 14px; }
.ft .wm-logo { filter: brightness(0) invert(1); }
.ft-tagline {
  margin-top: 16px;
  max-width: 360px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}
.ft-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.ft-socials a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-family: var(--f-label);
  color: #fff;
  letter-spacing: 0.04em;
}
.ft-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-family: var(--f-label);
  letter-spacing: 0.04em;
}
@media (max-width: 720px) {
  .ft-bot { flex-direction: column; gap: 12px; text-align: center; }
}

/* Page transitions */
.page { animation: fadein .35s ease both; }
@keyframes fadein {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Utility */
.row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) { .row-split { grid-template-columns: 1fr; } }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .grid-4 { grid-template-columns: 1fr; } }

.grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .grid-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid-6 { grid-template-columns: 1fr; } }

/* Image */
.img-wrap {
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
}
.img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* Form */
.fld {
  display: flex; flex-direction: column; gap: 6px;
}
.fld label {
  font-family: var(--f-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.fld input, .fld textarea, .fld select {
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink-2);
  transition: border-color .15s ease, background .15s ease;
  outline: none;
}
.fld input:focus, .fld textarea:focus, .fld select:focus {
  border-color: var(--ink);
  background: #fff;
}
.fld textarea { resize: vertical; min-height: 120px; }

/* Misc */
.divider-num {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.divider-num::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}

/* ─── Hero variants ──────────────────────────────────────────────────── */

.hero-fullbleed {
  padding: 0 !important;
}
.hero-fullbleed__inner {
  position: relative;
  height: min(82vh, 760px);
  min-height: 600px;
  overflow: hidden;
  background: var(--ink);
}
.hero-fullbleed__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.hero-fullbleed__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,0.45) 0%, rgba(10,37,64,0.15) 30%, rgba(10,37,64,0.85) 100%);
}
.hero-fullbleed__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 80px;
  padding-bottom: 64px;
  color: #fff;
}
.hero-fullbleed__title {
  color: #fff;
  max-width: 15ch;
  margin-top: 24px;
}
.hero-fullbleed__lede {
  color: rgba(255,255,255,0.78);
  margin-top: 24px;
  max-width: 52ch;
}
.hero-fullbleed__ctas {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-split {
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero-split__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 560px;
}
@media (max-width: 900px) {
  .hero-split__grid { grid-template-columns: 1fr; gap: 40px; min-height: 0; }
}
.hero-split__title {
  margin-top: 20px;
  max-width: 14ch;
}
.hero-split__lede { margin-top: 24px; }
.hero-split__ctas {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-split__stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-split__media {
  position: relative;
}
.hero-split__img {
  height: 560px;
  border-radius: 12px;
  position: relative;
}
@media (max-width: 900px) {
  .hero-split__img { height: 380px; }
}
.hero-split__chip {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-split__spec {
  position: absolute;
  bottom: -32px;
  left: -32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  width: 240px;
  box-shadow: 0 18px 40px -16px rgba(10,37,64,0.18);
}
@media (max-width: 900px) {
  .hero-split__spec { left: 16px; bottom: -16px; }
}
.hero-split__spec-row {
  font-family: var(--f-label);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-split__spec-row + .hero-split__spec-row { margin-top: 4px; }
.hero-split__spec-result {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}

.stat__n {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat__l {
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.hero-type {
  padding-top: 80px;
  padding-bottom: 40px;
}
.hero-type__title {
  font-family: var(--f-display);
  font-size: clamp(56px, 10vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-weight: 600;
  color: var(--ink);
  margin-top: 28px;
  margin-bottom: 0;
}
/* Headings are one green site-wide: highlight spans inherit the heading ink
   rather than switching to --accent. Change these two rules together to
   reinstate a two-tone heading. */
.hero-type__accent { color: inherit; }
.hero-type__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .hero-type__grid { grid-template-columns: 1fr; }
}
.hero-type__img {
  height: 280px;
  border-radius: 8px;
}
.hero-type__lede { font-size: 20px; }
.hero-type__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

/* ─── Section cards ──────────────────────────────────────────────────── */

.aud-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
}
.aud-card__title { margin-top: 4px; }
.aud-card__desc {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}
.aud-card__cta {
  margin-top: auto;
  padding-top: 12px;
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.offer-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 260px;
  text-decoration: none;
}
.offer-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.offer-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--surface-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.offer-card__desc {
  color: var(--muted);
  font-size: 14.5px;
  margin-top: 8px;
  line-height: 1.55;
}
.offer-card__cta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.how-steps {
  position: relative;
}
.how-steps__line {
  position: absolute;
  top: 28px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--line);
}
.how-step { background: var(--bg); padding-top: 0; }
.how-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.how-step.is-first .how-step__num {
  background: var(--ink);
  border-color: transparent;
  color: #fff;
}
.how-step__title { font-size: 20px; }
.how-step__desc {
  color: var(--muted);
  font-size: 14.5px;
  margin-top: 10px;
  line-height: 1.55;
}

.net-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
  position: relative;
}
.net-card__tag {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: #0f2f34;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.net-card.is-current .net-card__tag { background: var(--ink); }
.net-card__tag--logo {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  overflow: visible;
}
.net-card__tag--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.net-card.is-current .net-card__tag--logo { background: transparent; }
.net-card__desc {
  color: var(--muted);
  font-size: 14.5px;
  margin-top: 8px;
  line-height: 1.55;
}
.net-card__foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.net-card__foot a { color: var(--ink); }
.net-card__foot .is-here { color: var(--accent); }

/* ─── Contact CTA strip ──────────────────────────────────────────────── */

.cta-strip {
  padding-bottom: 0;
}
.cta-strip__box {
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  padding: 80px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.cta-strip.is-compact .cta-strip__box { padding: 48px 40px; }
@media (max-width: 900px) {
  .cta-strip__box { grid-template-columns: 1fr; padding: 48px 32px; }
}
.cta-strip__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(125,216,190,0.18), transparent 50%),
    linear-gradient(100deg, rgba(0,89,81,0.88) 0%, rgba(0,89,81,0.62) 32%, rgba(0,89,81,0.2) 60%, rgba(0,89,81,0) 85%),
    url('https://images.unsplash.com/photo-1731336479432-3eb5fdb3ab1c?w=2000&q=80&auto=format&fit=crop') center/cover no-repeat;
}
@media (max-width: 900px) {
  .cta-strip__bg {
    background:
      radial-gradient(circle at 90% 10%, rgba(125,216,190,0.18), transparent 50%),
      linear-gradient(180deg, rgba(0,89,81,0.9) 0%, rgba(0,89,81,0.55) 45%, rgba(0,89,81,0.25) 100%),
      url('https://images.unsplash.com/photo-1731336479432-3eb5fdb3ab1c?w=2000&q=80&auto=format&fit=crop') center/cover no-repeat;
  }
}
.cta-strip__body { position: relative; }
.cta-strip__title {
  color: #fff;
  margin-top: 16px;
  max-width: 18ch;
}
.cta-strip__lede {
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  max-width: 50ch;
}
.cta-strip__actions {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Audience section top spacing per Mario's request */
.section-audience {
  padding-top: calc(var(--section-y) + 40px);
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
}

/* ─── About / Nosotros page ────────────────────────────────────── */
.about-intro {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: end;
  margin-top: 24px;
}
.about-intro__title { max-width: 14ch; margin: 0; }

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-pillars__media {
  height: 480px;
  border-radius: 12px;
}
.about-pillars__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-pillar {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.about-pillar:last-child { border-bottom: 0; padding-bottom: 0; }
.about-pillar__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.about-pillar__title { font-size: 20px; margin: 0; }
.about-pillar__desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 860px) {
  .about-intro { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .about-pillars { grid-template-columns: 1fr; gap: 32px; }
  .about-pillars__media { height: 320px; }
}

/* Network block merged into the About page */
/* Title left, copy right, both starting from the same top edge — the default
   `.section-head` (narrow column first, bottom-aligned) strands the title when
   the copy column runs two paragraphs long. */
.about-network__head {
  grid-template-columns: 1.15fr 1fr;
  align-items: start;
  margin-bottom: 48px;
}
/* Both paragraphs read as one voice — the muted body setting. The lede keeps
   its own field/class only so the copy stays editable in two chunks. */
.about-network__lede,
.about-network__body {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 46ch;
  font-weight: 400;
  letter-spacing: 0;
}
.about-network__lede { margin-top: 0; }
.about-network__body { margin-top: 20px; }
@media (max-width: 900px) {
  .about-network__head { grid-template-columns: 1fr; gap: 24px; }
  /* Already title-first in source — opt out of the generic stacking flip. */
  .about-network__head > *:first-child { order: 1; }
  .about-network__head > *:last-child  { order: 2; }
}

/* ─── Catalog page ────────────────────────────────────────────────── */
.catalog-hero { padding-top: 80px; padding-bottom: 56px; }
.catalog-hero__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: end;
  margin-top: 24px;
}
.catalog-hero__head .eyebrow { margin-bottom: 16px; }
.catalog-hero__title { max-width: 14ch; margin: 0; }
/* The accent tail keeps its own element (editors can still split the title)
   but reads in the same green as the rest of the heading — see the note on
   .hero-type__accent. */
.catalog-hero__accent { color: inherit; }
@media (max-width: 860px) {
  .catalog-hero__grid { grid-template-columns: 1fr; gap: 24px; align-items: start; }
}

/* ─── Catalog · product family index ──────────────────────────────── */
.catalog-index { padding-top: 0; }

.fam-group + .fam-group { margin-top: 56px; }

.fam-group__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}
.fam-group__n {
  font-family: var(--f-label);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--accent);
  flex: none;
}
.fam-group__title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  flex: none;
}
/* Dotted leader — a nod to the printed catalogue's table of contents. */
.fam-group__rule {
  flex: 1;
  min-width: 24px;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-3px);
}
.fam-group__note {
  font-family: var(--f-label);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex: none;
}
@media (max-width: 700px) {
  .fam-group__note { display: none; }
}

.fam-list {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.fam-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-areas:
    "icon body"
    ".    meta";
  /* Body row absorbs the slack so the CTA pins to the bottom of the cell —
     keeps CTAs aligned across a 2-up row of uneven descriptions. */
  grid-template-rows: 1fr auto;
  column-gap: 20px;
  row-gap: 14px;
  align-items: start;
  padding: 24px 26px;
  text-decoration: none;
  border-top: 1px solid var(--line-2);
  transition: background .2s ease;
}
.fam-row:first-child { border-top: 0; }
a.fam-row:hover { background: var(--bg); }

/*
 * Two-up above 1040px: cells stay ~470px+, which is enough for the icon, the
 * family name and a 3–4 line description without the text turning into a
 * column. The nth-child rules draw the lattice — top borders from the second
 * grid row on, and a vertical rule between columns — including a trailing odd
 * item, so a left-column cell always closes off against the empty right slot.
 */
@media (min-width: 1040px) {
  .fam-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fam-row:nth-child(2) { border-top: 0; }
  .fam-row:nth-child(odd) { border-right: 1px solid var(--line-2); }
}
a.fam-row:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.fam-row__icon {
  grid-area: icon;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--surface-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background .2s ease, color .2s ease;
}
.fam-row__icon svg { width: 22px; height: 22px; }
a.fam-row:hover .fam-row__icon { background: var(--accent); color: #fff; }

.fam-row__body { grid-area: body; }
.fam-row__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin: 0;
}
.fam-row__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 5px 0 0;
  max-width: 68ch;
}

/* CTA sits under the body, matching .offer-card__cta — and unlike a hover-only
   affordance it is visible on touch, where there is no hover state. */
.fam-row__meta { grid-area: meta; }
.fam-row__go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-label);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.fam-row__arr { transition: transform .2s ease; }
a.fam-row:hover .fam-row__arr { transform: translateX(3px); }

@media (max-width: 560px) {
  .fam-row {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 20px;
  }
  .fam-row__icon { width: 40px; height: 40px; }
}

.fam-foot {
  margin: 44px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--muted);
  max-width: 70ch;
}

@media (prefers-reduced-motion: reduce) {
  .fam-row, .fam-row__icon, .fam-row__arr { transition: none; }
}

.catalog-pdf { padding-top: 0; }
.catalog-pdf__box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-items: stretch;
}
@media (max-width: 900px) {
  .catalog-pdf__box { grid-template-columns: 1fr; }
}
.catalog-pdf__col {
  padding: 48px;
  border-right: 1px solid var(--line);
}
@media (max-width: 900px) {
  .catalog-pdf__col { border-right: 0; border-bottom: 1px solid var(--line); padding: 32px; }
}
.catalog-pdf__title { margin-top: 20px; }
.catalog-pdf__lede  { margin-top: 16px; }
.catalog-pdf__actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
/* "Interested in the catalogue in <other language>?" — deliberately quiet:
   it sits under the CTAs and must not compete with them. */
.catalog-pdf__altlang {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--muted);
}
.catalog-pdf__altlang a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--line);
  transition: text-decoration-color .2s ease;
}
.catalog-pdf__altlang a:hover { text-decoration-color: var(--accent); }

.catalog-pdf__preview {
  background: var(--surface-2);
  padding: 48px;
  position: relative;
  min-height: 520px;
}
@media (max-width: 900px) { .catalog-pdf__preview { padding: 32px; min-height: 0; } }
.catalog-pdf__preview-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--f-label);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* The cover doubles as the "open the PDF" control. */
.catalog-pdf__cover-link {
  display: block;
  border-radius: 4px;
}
.catalog-pdf__cover-link .catalog-pdf__cover {
  transition: transform .25s ease, box-shadow .25s ease;
}
.catalog-pdf__cover-link:hover .catalog-pdf__cover,
.catalog-pdf__cover-link:focus-visible .catalog-pdf__cover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px -20px rgba(10, 37, 64, 0.32);
}
.catalog-pdf__cover-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
@media (prefers-reduced-motion: reduce) {
  .catalog-pdf__cover-link .catalog-pdf__cover { transition: none; }
  .catalog-pdf__cover-link:hover .catalog-pdf__cover { transform: none; }
}

.catalog-pdf__cover {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  aspect-ratio: 210 / 297;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 48px 44px;
  box-shadow: 0 24px 60px -20px rgba(10, 37, 64, 0.25);
  position: relative;
  overflow: hidden;
}
.catalog-pdf__cover--image { padding: 0; }
.catalog-pdf__cover--image img {
  width: 100%; height: 100%; object-fit: cover;
}
.catalog-pdf__cover-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 24px;
}
.catalog-pdf__cover-brand {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: -0.01em;
}
.catalog-pdf__cover-edition {
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.catalog-pdf__cover-title {
  font-family: var(--f-display);
  font-size: 38px;
  line-height: 1.05;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.025em;
}
.catalog-pdf__cover-accent { color: inherit; }
.catalog-pdf__cover-sub {
  margin-top: 26px;
  font-family: var(--f-label);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.catalog-pdf__cover-art {
  margin-top: 32px;
  height: 180px;
  background: linear-gradient(135deg, var(--ink), var(--accent) 60%, var(--accent-2));
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.catalog-pdf__cover-art span {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.15), transparent 50%);
  display: block;
}
.catalog-pdf__cover-index {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-family: var(--f-label);
  font-size: 9.5px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.catalog-pdf__cover-index > div {
  border-bottom: 1px dotted var(--line);
  padding-bottom: 4px;
}

/* ─── Contact form ───────────────────────────────────────────────────── */

/* Used when the section directly follows a page intro, which already ends
   with its own bottom padding. */
.contact-form.is-tight-top { padding-top: 0; }

.contact-form__box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 56px;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 720px) { .contact-form__box { padding: 28px 20px; } }

.contact-form__intro { margin-bottom: 32px; }
.contact-form__title { margin-top: 16px; }
.contact-form__lede {
  margin-top: 16px;
  color: var(--muted);
  max-width: 56ch;
}

.contact-form__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) {
  .contact-form__form { grid-template-columns: 1fr; }
  /* Inline `grid-column: span 2` on full-width fields would overflow here. */
  .contact-form__form > .fld { grid-column: span 1 !important; }
}

.fld__opt {
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.65;
  margin-left: 4px;
}

/* Honeypot — visually and semantically gone, but still fillable by bots. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__foot {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.contact-form__note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.contact-form__form button.btn {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-notice {
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: 15px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--ink-2);
}
.form-notice.is-ok {
  border-color: var(--accent-2);
  background: rgba(125, 216, 190, 0.18);
  color: var(--accent-deep);
}
.form-notice.is-err {
  border-color: #e6b8b0;
  background: #fdf1ef;
  color: #8a3a2c;
}

/* ── Legal pages ───────────────────────────────────────────────────────────
   Privacy policy, aviso legal, cookies. A single reading column: these are
   documents, not landing pages. The measure is deliberately short (68ch) —
   legal text is dense and long lines make it unreadable. */

.legal {
  padding: calc(var(--section-y) * 0.7) 0 var(--section-y);
}

.legal__head {
  max-width: 68ch;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.legal__title {
  margin: 16px 0 0;
}
.legal__updated {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.legal__body {
  max-width: 68ch;
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
}

.legal__body h2 {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 52px 0 14px;
}
.legal__body h2:first-child { margin-top: 0; }

.legal__body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-2);
  margin: 32px 0 10px;
}
.legal__body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 26px 0 8px;
}

.legal__body p { margin: 0 0 18px; }
.legal__body strong { font-weight: 600; color: var(--ink-2); }

.legal__body ul,
.legal__body ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal__body li { margin-bottom: 8px; }
.legal__body li::marker { color: var(--accent); }

.legal__body a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--line);
  overflow-wrap: anywhere;
}
.legal__body a:hover { text-decoration-color: var(--ink); }

.legal__body hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

@media (max-width: 720px) {
  .legal__body h2 { font-size: 20px; margin-top: 40px; }
}

/* Consent row under the contact form — sits above the submit button and
   spans both grid columns. */
.fld--consent {
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
/* .fld's input rule sizes text boxes — undo it for the tickbox. */
.fld--consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  padding: 0;
  margin: 3px 0 0;
  border-radius: 3px;
  accent-color: var(--ink);
}
/* .fld label is an 11px uppercase field label; this one is a sentence. */
.fld--consent label {
  font-family: var(--f-text);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  margin: 0;
}
.fld--consent a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
