/* ==========================================================================
   Subhchintak Global Services — design system
   1. Tokens          6. Header / nav
   2. Base            7. Heroes
   3. Layout          8. Components
   4. Typography      9. Forms
   5. Buttons        10. Footer / admin / responsive
   ========================================================================== */

/* 1. Tokens ============================================================== */

:root {
  /* Brand */
  --navy-900: #062043;
  --navy-800: #0a2a50;
  --navy-700: #0e3563;
  --navy-600: #164a86;
  --navy-500: #2464ad;

  --gold-400: #ffd45e;
  --gold-500: #ffc629;
  --gold-600: #eaa900;

  --teal-500: #14958f;
  --teal-600: #0f7a75;
  --teal-050: #e6f4f3;

  --green-500: #25d366; /* WhatsApp */

  /* Neutrals */
  --ink-900: #0b1f38;
  --ink-700: #33475f;
  --ink-500: #5b6b80;
  --ink-400: #7b8a9d;
  --ink-300: #a8b4c2;

  --line: #e4e9f0;
  --line-soft: #eef2f7;
  --bg: #f4f7fa;
  --bg-alt: #e9edf2;
  --surface: #ffffff;

  /* Type */
  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Space */
  --container: 1200px;
  --gutter: 24px;
  --section-y: 96px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-full: 999px;

  /* Elevation */
  --sh-xs: 0 1px 2px rgba(6, 32, 67, .06);
  --sh-sm: 0 2px 8px rgba(6, 32, 67, .06);
  --sh-md: 0 8px 24px rgba(6, 32, 67, .08);
  --sh-lg: 0 18px 48px rgba(6, 32, 67, .12);
  --sh-xl: 0 30px 70px rgba(6, 32, 67, .16);

  --ease: cubic-bezier(.4, 0, .2, 1);
  --header-h: 88px;
}

/* 2. Base =============================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  /* Also on the root, not just body: the off-canvas mobile nav is a fixed box
     parked past the right edge, and body alone does not reliably clip it on
     iOS Safari — which shows up as a phantom horizontal scroll.

     `clip`, NOT `hidden`. `overflow-x: hidden` makes the element a scroll
     container, and a sticky child positions against that container instead of
     the viewport — which silently broke the sticky header. `clip` suppresses
     the same overflow without creating a scroll container, so the header
     sticks. Safari < 16 lacks `clip` and falls back below. */
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

/* Safari < 16 has no `overflow: clip`. There, keep the old `hidden` clipping —
   a phantom sideways scroll is worse than a header that scrolls away — and
   pin the header with `fixed` instead, since `sticky` cannot work inside a
   scroll container. `--header-h` of top padding replaces the space it vacates. */
@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
  .header { position: fixed; left: 0; right: 0; }
  body { padding-top: var(--header-h); }
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--navy-500); }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-head); color: var(--navy-900); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 650; color: var(--ink-900); }

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

::selection { background: var(--gold-500); color: var(--navy-900); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--navy-800); color: #fff; padding: 12px 20px;
  border-radius: var(--r-sm); font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* 3. Layout ============================================================= */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 880px; }
.container--wide { max-width: 1320px; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: 64px; }
.section--bg { background: var(--bg); }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy-800); color: rgba(255, 255, 255, .78); }
.section--navy h2, .section--navy h3 { color: #fff; }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.stack > * + * { margin-top: var(--stack-gap, 16px); }

/* 4. Typography ========================================================= */

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 14px;
}
.eyebrow--gold { color: var(--gold-500); }
.eyebrow--light { color: rgba(255, 255, 255, .7); }

.section-head { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: 56px; }
.section-head--left { margin-inline: 0; text-align: left; }

.section-title { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.section-title--lg { font-size: clamp(32px, 4vw, 48px); }

.section-sub { font-size: 16px; color: var(--ink-500); margin: 0; }
.section--navy .section-sub { color: rgba(255, 255, 255, .72); }

.lead { font-size: 18px; line-height: 1.7; color: var(--ink-500); }

.accent { color: var(--teal-500); }
.text-gold { color: var(--gold-500); }

.rule-gold {
  width: 64px; height: 4px; border-radius: 2px;
  background: var(--gold-500); margin: 20px 0;
}

/* Small caps country code next to a destination name */
.code {
  font-size: .58em;
  font-weight: 700;
  letter-spacing: .08em;
  opacity: .55;
  margin-left: .45em;
  text-transform: uppercase;
  vertical-align: .12em;
}

/* 5. Buttons ============================================================ */

.btn {
  --btn-bg: var(--navy-800);
  --btn-fg: #fff;
  --btn-bd: var(--navy-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--r-sm);
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 17px; height: 17px; flex: none; }

.btn--gold { --btn-bg: var(--gold-500); --btn-fg: var(--navy-900); --btn-bd: var(--gold-500); }
.btn--gold:hover { --btn-bg: var(--gold-400); --btn-bd: var(--gold-400); }

.btn--navy:hover { --btn-bg: var(--navy-700); --btn-bd: var(--navy-700); }

.btn--teal { --btn-bg: var(--teal-500); --btn-fg: #fff; --btn-bd: var(--teal-500); }
.btn--teal:hover { --btn-bg: var(--teal-600); --btn-bd: var(--teal-600); }

.btn--white { --btn-bg: #fff; --btn-fg: var(--navy-800); --btn-bd: #fff; }
.btn--white:hover { --btn-bg: var(--bg); --btn-bd: var(--bg); }

.btn--whatsapp { --btn-bg: var(--green-500); --btn-fg: #fff; --btn-bd: var(--green-500); }
.btn--whatsapp:hover { --btn-bg: #1eb959; --btn-bd: #1eb959; }

.btn--outline { --btn-bg: transparent; --btn-fg: var(--navy-800); --btn-bd: var(--line); }
.btn--outline:hover { --btn-bg: var(--navy-800); --btn-fg: #fff; --btn-bd: var(--navy-800); }

.btn--ghost-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, .5); }
.btn--ghost-light:hover { --btn-bg: #fff; --btn-fg: var(--navy-800); --btn-bd: #fff; }

.btn--sm { padding: 10px 18px; font-size: 13.5px; }
.btn--lg { padding: 17px 36px; font-size: 16px; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* Text link with a sliding arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--teal-500);
  white-space: nowrap;
}
.link-arrow .icon { width: 16px; height: 16px; flex: none; transition: transform .2s var(--ease); }
.link-arrow:hover { color: var(--teal-600); }
.link-arrow:hover .icon { transform: translateX(4px); }

/* 6. Header / nav ======================================================= */

.header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.header.is-stuck { box-shadow: var(--sh-sm); background: rgba(255, 255, 255, .98); }

/* Scroll lock while the off-canvas nav is open. This must sit on <html>:
   <html> is the scrolling element, so the `body { overflow: hidden }` this
   replaces locked nothing — the page scrolled away behind the open menu — and
   it also made <body> a scroll container, which dragged the sticky header off
   screen with it. Locking <html> freezes the page and keeps the header pinned,
   so the burger stays reachable to close the menu again. */
html.is-nav-open { overflow: hidden; }

.header__inner {
  display: flex; align-items: center; gap: 20px;
  min-height: var(--header-h);
}

.logo { display: flex; align-items: center; flex: none; }
.logo img, .logo svg { height: 52px; width: auto; }

.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }

.nav__item { position: relative; }

.nav__link {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 11px;
  font-family: var(--font-head);
  font-size: 14.5px; font-weight: 500;
  color: var(--ink-700);
  border-radius: var(--r-sm);
  background: none; border: 0;
  /* The nav must stay on one line — "Healthcare Program" wraps otherwise */
  white-space: nowrap;
  transition: color .18s var(--ease);
}
.nav__link .icon { width: 15px; height: 15px; opacity: .6; transition: transform .2s var(--ease); }
.nav__link:hover { color: var(--teal-500); }
.nav__item:hover > .nav__link .icon,
.nav__item.is-open > .nav__link .icon { transform: rotate(180deg); }

/* Active page — teal text with a matching underline */
.nav__link.is-active { color: var(--teal-500); font-weight: 600; }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 11px; right: 11px; bottom: 2px;
  height: 2px; border-radius: 2px; background: var(--teal-500);
}

.nav__cta { margin-left: 10px; flex: none; }

/* Between 960px and ~1180px the full nav no longer fits at its natural size.
   Tighten before falling back to the burger. */
@media (min-width: 961px) and (max-width: 1180px) {
  :root { --gutter: 16px; }
  .header__inner { gap: 12px; }
  .logo img, .logo svg { height: 44px; }
  .nav__link { padding: 10px 8px; font-size: 13.5px; }
  .nav__cta .btn { padding: 10px 14px; font-size: 13px; }
}

/* -- Dropdown ---------------------------------------------------------- */

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  /* max-content so the panel grows to fit its widest row — that's the footer's
     "Not sure where to start? / View all" line, which must not wrap. Sizing by
     content instead of a fixed px keeps it correct at any font or copy length. */
  width: max-content; max-width: min(92vw, 460px);
  min-width: 268px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav__item:hover > .dropdown,
.nav__item.is-open > .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Bridges the gap so the menu survives the pointer crossing it */
.dropdown::before {
  content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}

.dropdown__link {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px;
  font-size: 14.5px; font-weight: 500;
  color: var(--ink-700);
  border-radius: var(--r-sm);
  transition: background .16s var(--ease), color .16s var(--ease);
}
.dropdown__link:hover, .dropdown__link.is-active {
  background: var(--teal-050); color: var(--teal-600);
}
.dropdown__link .icon { width: 18px; height: 18px; color: var(--teal-500); flex: none; }

/* Mega menu — destinations in two columns */
.dropdown--mega { width: auto; min-width: 440px; max-width: 92vw; }
.dropdown--mega .dropdown__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

/* Dropdown footer. The 12px side padding matches .dropdown__link, so the hint
   and "View all" line up with the link labels above. Both halves stay on one
   line — the panel's min-width is sized to fit them. */
.dropdown__foot {
  margin-top: 8px; padding: 12px;
  border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.dropdown__foot > span { white-space: nowrap; }

/* -- Mobile ------------------------------------------------------------ */

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line); border-radius: var(--r-sm);
  color: var(--navy-800);
}
.nav-toggle .icon { width: 22px; height: 22px; }
.nav-toggle .icon--close { display: none; }
.nav-toggle[aria-expanded="true"] .icon--open { display: none; }
.nav-toggle[aria-expanded="true"] .icon--close { display: block; }

.nav-backdrop {
  position: fixed; inset: 0; z-index: 890;
  background: rgba(6, 32, 67, .45);
  opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s;
}
.nav-backdrop.is-visible { opacity: 1; visibility: visible; }

/* 7. Heroes ============================================================= */

/* -- Home carousel ----------------------------------------------------- */

.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 700px);
  display: grid;
  overflow: hidden;
  background: var(--navy-800);
}

.hero__slide {
  grid-area: 1 / 1;
  position: relative;
  display: flex; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .8s var(--ease), visibility .8s;
}
.hero__slide.is-active { opacity: 1; visibility: visible; }

.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6, 32, 67, .92) 0%, rgba(6, 32, 67, .72) 45%, rgba(6, 32, 67, .35) 100%);
}
/* Slow drift keeps the still images from feeling dead */
.hero__slide.is-active .hero__bg img { animation: kenburns 16s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1); } }

.hero__inner { position: relative; z-index: 2; padding-block: 80px; }
.hero__content { max-width: 620px; }

.hero__badge {
  display: inline-block;
  padding: 7px 16px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-family: var(--font-head);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  border-radius: var(--r-sm);
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(36px, 5.4vw, 62px);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
}

.hero__text {
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 32px;
  max-width: 540px;
}

/* Entrance stagger */
.hero__slide.is-active .hero__badge { animation: rise .6s var(--ease) both .1s; }
.hero__slide.is-active .hero__title { animation: rise .6s var(--ease) both .2s; }
.hero__slide.is-active .hero__text  { animation: rise .6s var(--ease) both .3s; }
.hero__slide.is-active .hero__cta   { animation: rise .6s var(--ease) both .4s; }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.hero__dots {
  position: absolute; z-index: 3;
  left: 50%; bottom: 28px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 9px;
}
.hero__dot {
  /* Positioned so the progress fill (::before, below) anchors to the dot.
     Without this the fill sizes itself to .hero__dots instead and sweeps
     across the whole strip. */
  position: relative;
  width: 9px; height: 9px; padding: 0;
  border: 0; border-radius: var(--r-full);
  background: rgba(255, 255, 255, .45);
  /* Hero photos vary, so a soft shadow keeps the dots readable on a light one. */
  box-shadow: 0 1px 3px rgba(11, 31, 59, .35);
  /* Named rather than `all`: `all` would also transition the fill's transform
     and fight the progress animation. */
  transition: width .3s var(--ease), background-color .3s var(--ease);
}
/* Active dot is the progress TRACK, so it stays translucent — the solid white
   fill sliding across it is what shows time remaining. A solid white pill
   would hide the fill completely. */
.hero__dot.is-active { width: 30px; background: rgba(255, 255, 255, .4); }
.hero__dot:not(.is-active):hover { background: rgba(255, 255, 255, .75); }

/* -- Page hero (image background) -------------------------------------- */

.page-hero {
  position: relative;
  display: flex; align-items: center;
  min-height: 380px;
  background: var(--navy-800);
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(6, 32, 67, .9) 0%, rgba(6, 32, 67, .7) 50%, rgba(6, 32, 67, .42) 100%);
}
.page-hero__inner { position: relative; z-index: 2; padding-block: 76px; }
.page-hero__content { max-width: 640px; }
.page-hero__title { font-size: clamp(32px, 4.6vw, 52px); color: #fff; margin-bottom: 16px; }
.page-hero__text { font-size: 16.5px; line-height: 1.7; color: rgba(255, 255, 255, .8); max-width: 560px; margin: 0; }

/* Hero action row. align-items:stretch so the stat chip matches the button
   height exactly — the two read as one unit, which is the whole point. */
.page-hero__cta { margin-top: 30px; align-items: stretch; }

.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0 20px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--r-sm);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-stat__value {
  font-family: var(--font-head);
  font-size: 27px; font-weight: 700; line-height: 1;
  color: var(--gold-500);
}
.hero-stat__label {
  font-family: var(--font-head);
  font-size: 12.5px; font-weight: 600; line-height: 1.25;
  color: #fff;
}

/* On the light hero the chip sits on a pale background, so the translucent
   white treatment would vanish — invert it to navy-on-tint. */
.page-hero--light .hero-stat {
  background: rgba(11, 31, 59, .05);
  border-color: rgba(11, 31, 59, .12);
}
.page-hero--light .hero-stat__label { color: var(--navy-900); }

/* Below 460px .btn-row .btn goes full-width, so the chip follows suit —
   otherwise it leaves a ragged half-width edge under the button. */
@media (max-width: 460px) {
  .page-hero__cta { margin-top: 24px; }
  .hero-stat { width: 100%; justify-content: center; padding: 13px 20px; }
}

/* -- Page hero (flat navy + watermark) --------------------------------- */

.page-hero--solid { background: var(--navy-800); min-height: 340px; }
.page-hero--solid .page-hero__bg { display: none; }

.page-hero__mark {
  position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%);
  width: 340px; height: 340px;
  color: rgba(255, 255, 255, .045);
  z-index: 1;
}
.page-hero__mark .icon { width: 100%; height: 100%; stroke-width: .5; }

/* Light hero — used on About */
.page-hero--light { background: var(--bg); min-height: 420px; }
.page-hero--light .page-hero__bg { display: none; }
.page-hero--light .page-hero__title { color: var(--navy-900); }
.page-hero--light .page-hero__text { color: var(--ink-500); }
.page-hero--light .page-hero__mark { color: rgba(20, 149, 143, .07); }

.hero-quote {
  border-left: 4px solid var(--gold-500);
  padding: 6px 0 6px 22px;
  margin-top: 30px;
  font-size: 17px; font-style: italic; line-height: 1.65;
  color: var(--ink-700);
  max-width: 580px;
}

/* 8. Components ========================================================= */

/* -- Card base --------------------------------------------------------- */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: transparent; }

/* -- Service card (home grid) ------------------------------------------ */

.svc-card { padding: 30px 28px; height: 100%; }
.svc-card__icon {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: #eef3f9;
  color: var(--navy-700);
  margin-bottom: 20px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.svc-card__icon .icon { width: 22px; height: 22px; }
.svc-card:hover .svc-card__icon { background: var(--navy-800); color: var(--gold-500); }
.svc-card__title { font-size: 19px; margin-bottom: 10px; }
.svc-card__text { font-size: 14.5px; line-height: 1.7; color: var(--ink-500); margin: 0; }

/* -- Service lifecycle card (services page) ---------------------------- */

.lifecycle { display: grid; gap: 22px; }

.lc {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.lc:hover { box-shadow: var(--sh-md); border-color: transparent; }

.lc__head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 8px; }
.lc__icon {
  display: grid; place-items: center; flex: none;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: #eef3f9; color: var(--navy-700);
}
.lc__icon .icon { width: 21px; height: 21px; }
.lc__title { font-size: 21px; margin-bottom: 8px; }
.lc__text { font-size: 14.5px; line-height: 1.7; color: var(--ink-500); margin: 0; }
.lc__action { flex: none; align-self: flex-start; }

/* The numbered 4-step rail */
.lc__rail { margin-top: 26px; padding-top: 4px; }

.rail { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
/* Connector line sits behind the nodes, inset by half a column each side */
.rail::before {
  content: "";
  position: absolute; top: 14px;
  left: calc(12.5% + 14px); right: calc(12.5% + 14px);
  height: 2px; background: var(--line);
  z-index: 0;
}
.rail__step { position: relative; z-index: 1; text-align: center; padding-inline: 4px; }
.rail__n {
  display: grid; place-items: center;
  width: 28px; height: 28px; margin: 0 auto 12px;
  border-radius: var(--r-full);
  background: var(--teal-500); color: #fff;
  font-family: var(--font-head); font-size: 12.5px; font-weight: 700;
  box-shadow: 0 0 0 4px var(--surface);
}
/* Final step lands on gold — visual "you have arrived" */
.rail__step:last-child .rail__n { background: var(--gold-500); color: var(--navy-900); }
.rail__title { font-family: var(--font-head); font-size: 13.5px; font-weight: 600; color: var(--navy-900); margin-bottom: 4px; }
.rail__text { font-size: 12px; line-height: 1.5; color: var(--ink-400); margin: 0; }

/* -- Destination card -------------------------------------------------- */

.dest-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.dest-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }

.dest-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.dest-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dest-card:hover .dest-card__media img { transform: scale(1.07); }
.dest-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6, 32, 67, .88) 0%, rgba(6, 32, 67, .25) 45%, transparent 75%);
}

.dest-card__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 5px 11px;
  background: var(--gold-500); color: var(--navy-900);
  font-family: var(--font-head); font-size: 9.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 5px;
}
.dest-card__name {
  position: absolute; left: 18px; bottom: 14px; z-index: 2;
  font-size: 22px; color: #fff;
}

.dest-card__body { padding: 20px 18px; display: flex; flex-direction: column; flex: 1; }
.dest-card__tagline { font-size: 14px; line-height: 1.65; color: var(--ink-500); margin-bottom: 18px; }

/* 2-col stat grid inside the card */
.dest-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  margin-bottom: 18px;
}
.dest-stat__label {
  display: flex; align-items: center; gap: 5px;
  font-size: 9.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 3px;
}
.dest-stat__label .icon { width: 12px; height: 12px; }
.dest-stat__value { font-size: 12.5px; font-weight: 600; color: var(--navy-900); line-height: 1.4; }

.dest-card__foot { margin-top: auto; }

/* -- Featured destination tile (home) ---------------------------------- */

.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
/* Trailing two tiles centre themselves under the row of four */
.feat-grid > :nth-child(5) { grid-column: 2 / 3; }
.feat-grid > :nth-child(6) { grid-column: 3 / 4; }

.feat {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  aspect-ratio: 3 / 4;
  padding: 18px;
  border-radius: var(--r-md);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.feat img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.feat::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(6, 32, 67, .94) 8%, rgba(6, 32, 67, .5) 45%, rgba(6, 32, 67, .08) 100%);
  transition: opacity .3s var(--ease);
}
.feat:hover img { transform: scale(1.08); }
.feat:hover { color: #fff; }

.feat__badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 9px;
  background: var(--gold-500); color: var(--navy-900);
  font-family: var(--font-head); font-size: 8.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 4px;
}
.feat__name { font-size: 19px; color: #fff; margin-bottom: 3px; }
.feat__note { font-size: 11.5px; color: rgba(255, 255, 255, .72); line-height: 1.45; margin-bottom: 14px; }
.feat__btn {
  display: block; padding: 8px; text-align: center;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 6px;
  font-family: var(--font-head); font-size: 12.5px; font-weight: 600; color: #fff;
  backdrop-filter: blur(6px);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.feat:hover .feat__btn { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); }

/* -- Program card (healthcare) -------------------------------------- */

.prog {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.prog:hover { box-shadow: var(--sh-md); border-color: transparent; }

.prog__main { padding: 28px; }
.prog__badge {
  display: inline-block; margin-bottom: 16px;
  padding: 5px 11px;
  background: var(--gold-500); color: var(--navy-900);
  font-family: var(--font-head); font-size: 9.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 5px;
}
.prog__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.prog__icon {
  display: grid; place-items: center; flex: none;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: #eef3f9; color: var(--navy-700);
}
.prog__icon .icon { width: 21px; height: 21px; }
.prog__title { font-size: 20px; }
.prog__text { font-size: 14px; line-height: 1.7; color: var(--ink-500); margin-bottom: 22px; }

.prog__side { padding: 28px; background: var(--bg); }
.prog__side-label {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-500); margin-bottom: 16px;
}

.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
.check {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12.5px; line-height: 1.5; color: var(--ink-700);
}
.check .icon { width: 15px; height: 15px; flex: none; color: var(--teal-500); margin-top: 1px; }

.check-list { display: grid; gap: 14px; }
.check-list .check { font-size: 14.5px; }
.check-list .check .icon { width: 19px; height: 19px; }

/* -- Contact info card ------------------------------------------------- */

.info-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.info-card:hover { transform: translateX(4px); box-shadow: var(--sh-sm); border-color: var(--line-soft); }
.info-card__icon {
  display: grid; place-items: center; flex: none;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: #eef3f9; color: var(--navy-700);
}
.info-card__icon .icon { width: 20px; height: 20px; }
.info-card__icon--wa { background: rgba(37, 211, 102, .1); color: var(--green-500); }
.info-card__label { font-family: var(--font-head); font-size: 14.5px; font-weight: 600; color: var(--navy-900); margin-bottom: 2px; }
.info-card__value { font-size: 14px; color: var(--ink-500); }
a.info-card { color: inherit; }
a.info-card:hover .info-card__value { color: var(--teal-500); }

/* -- Stats ------------------------------------------------------------- */

.stat-bar { background: var(--navy-800); padding-block: 64px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: left; }
.stat__value {
  font-family: var(--font-head); font-size: clamp(30px, 3.6vw, 42px); font-weight: 700;
  color: var(--gold-500); line-height: 1; margin-bottom: 8px;
}
.stat__label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
}
.stat-grid--center .stat { text-align: center; }

/* Compact 2x2 stat pairs used beside the decade block */
.stat-pairs { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; margin-top: 32px; }
.stat-pairs .stat__value { font-size: 32px; margin-bottom: 4px; }
.stat-pairs .stat__label { font-size: 9.5px; }

/* -- Testimonials ------------------------------------------------------ */

.rating-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; margin-bottom: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  box-shadow: var(--sh-xs);
}
.rating-pill__stars { display: flex; gap: 2px; color: var(--gold-500); }
.rating-pill__stars .icon { width: 14px; height: 14px; }
.rating-pill__score { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--navy-900); }
.rating-pill__count { font-size: 12.5px; color: var(--ink-400); }

.quote-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  height: 100%;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.quote-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
/* The featured one gets a gold top edge */
.quote-card--featured { border-top: 3px solid var(--gold-500); }

.quote-card__mark {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  color: var(--line);
  pointer-events: none;
}
.quote-card__mark .icon { width: 100%; height: 100%; }

.quote-card__stars { display: flex; gap: 2px; color: var(--gold-500); margin-bottom: 16px; }
.quote-card__stars .icon { width: 15px; height: 15px; }

.quote-card__text {
  font-size: 14.5px; line-height: 1.75; color: var(--ink-700);
  margin-bottom: 22px; flex: 1;
}

.quote-card__foot {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.avatar {
  display: grid; place-items: center; flex: none;
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: var(--navy-800); color: #fff;
  font-family: var(--font-head); font-size: 12.5px; font-weight: 700;
  letter-spacing: .02em;
}
.avatar--teal { background: var(--teal-500); }
.avatar--gold { background: var(--gold-600); color: var(--navy-900); }
.quote-card__name { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--navy-900); line-height: 1.3; }
.quote-card__meta { font-size: 11.5px; color: var(--teal-500); font-weight: 500; }

/* -- Founder ----------------------------------------------------------- */

.founder-layout { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: start; }
.founder-aside { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 20px; }

.founder-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.founder-card__photo { aspect-ratio: 1 / 1; background: var(--bg-alt); }
.founder-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-card__body { padding: 18px; }
.founder-card__name { font-size: 20px; line-height: 1.25; margin-bottom: 6px; }
.founder-card__role {
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-500);
}

.commit-card { padding: 22px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); }
.commit-card__title { font-size: 17px; margin-bottom: 16px; }
.commit { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.6; color: var(--ink-500); }
.commit + .commit { margin-top: 14px; }
.commit .icon { width: 17px; height: 17px; flex: none; color: var(--teal-500); margin-top: 2px; }

.letter__title { font-size: 27px; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.letter p { font-size: 14.5px; line-height: 1.85; color: var(--ink-500); margin-bottom: 20px; }
.letter p.is-lead { color: var(--navy-800); font-weight: 500; }

.letter__pull {
  position: relative;
  padding: 22px 26px;
  margin: 30px 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.letter__pull p { font-style: italic; color: var(--ink-700); margin: 0; font-size: 14.5px; }
.letter__pull .quote-card__mark { color: var(--line); width: 36px; height: 36px; top: 12px; right: 14px; }

.letter__sign { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.letter__sign-name { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--navy-900); margin-top: 6px; }
.letter__sign-role { font-size: 11.5px; color: var(--teal-500); font-weight: 600; }

/* -- CTA blocks -------------------------------------------------------- */

.cta-band {
  position: relative;
  background: var(--navy-800);
  padding-block: 80px;
  overflow: hidden;
}
.cta-band__mark {
  position: absolute; right: -60px; bottom: -60px;
  width: 320px; height: 320px;
  color: rgba(255, 255, 255, .04);
}
.cta-band__mark .icon { width: 100%; height: 100%; stroke-width: .5; }
.cta-band__inner { position: relative; z-index: 1; max-width: 620px; }
.cta-band__title { font-size: clamp(26px, 3.2vw, 36px); color: #fff; margin-bottom: 14px; }
.cta-band__text { font-size: 15.5px; line-height: 1.75; color: rgba(255, 255, 255, .76); margin-bottom: 30px; }

/* Rounded navy panel (healthcare + services) */
.cta-panel {
  background: var(--navy-800);
  border-radius: var(--r-xl);
  padding: 56px 40px;
  text-align: center;
}
.cta-panel__title { font-size: clamp(24px, 3vw, 32px); color: #fff; margin-bottom: 12px; }
.cta-panel__text { font-size: 15px; color: rgba(255, 255, 255, .76); margin-bottom: 28px; max-width: 560px; margin-inline: auto; }

/* Light rounded panel */
.cta-soft {
  background: var(--bg-alt);
  border-radius: var(--r-xl);
  padding: 56px 40px;
  text-align: center;
}
.cta-soft__title { font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.cta-soft__text { font-size: 15px; color: var(--ink-500); margin-bottom: 28px; }

/* -- Split feature (image + copy) -------------------------------------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split__media { order: 2; }

.split__media { position: relative; }
.split__media img { border-radius: var(--r-md); box-shadow: var(--sh-lg); width: 100%; }

.float-badge {
  position: absolute; right: -12px; bottom: -18px;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  background: var(--surface);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
}
.float-badge__dots { display: flex; }
.float-badge__dots span {
  width: 26px; height: 26px; border-radius: var(--r-full);
  border: 2px solid var(--surface);
  background: var(--navy-500);
}
.float-badge__dots span + span { margin-left: -10px; }
.float-badge__dots span:nth-child(2) { background: var(--navy-600); }
.float-badge__dots span:nth-child(3) { background: var(--ink-300); }
.float-badge__title { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--navy-900); line-height: 1.2; }
.float-badge__sub { font-size: 9.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); }

/* -- Prose (legal pages) ----------------------------------------------- */

.prose h2 { font-size: 24px; margin: 40px 0 14px; }
.prose h3 { font-size: 18px; margin: 28px 0 10px; }
.prose p, .prose li { font-size: 15px; line-height: 1.8; color: var(--ink-500); }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 20px; }
.prose li { margin-bottom: 8px; }
.prose > :first-child { margin-top: 0; }

/* -- Accordion (FAQ) --------------------------------------------------- */

.faq { border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: var(--surface); }
.faq__item + .faq__item { border-top: 1px solid var(--line); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 20px 22px;
  background: none; border: 0; text-align: left;
  font-family: var(--font-head); font-size: 15.5px; font-weight: 600; color: var(--navy-900);
  transition: background .2s var(--ease);
}
.faq__q:hover { background: var(--bg); }
.faq__q .icon { width: 18px; height: 18px; flex: none; color: var(--teal-500); transition: transform .25s var(--ease); }
.faq__item.is-open .faq__q .icon { transform: rotate(180deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a p { padding: 0 22px 22px; font-size: 14.5px; line-height: 1.75; color: var(--ink-500); margin: 0; }

/* -- Breadcrumb -------------------------------------------------------- */

.crumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 12.5px; margin-bottom: 18px; }
.crumbs a { color: rgba(255, 255, 255, .68); }
.crumbs a:hover { color: #fff; }
.crumbs__sep { color: rgba(255, 255, 255, .35); }
.crumbs__current { color: var(--gold-500); font-weight: 600; }
.crumbs--dark a { color: var(--ink-400); }
.crumbs--dark a:hover { color: var(--teal-500); }
.crumbs--dark .crumbs__sep { color: var(--ink-300); }
.crumbs--dark .crumbs__current { color: var(--navy-900); }

/* -- Alerts ------------------------------------------------------------ */

.alert {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px; margin-bottom: 24px;
  border-radius: var(--r-sm);
  font-size: 14.5px; line-height: 1.6;
  border: 1px solid transparent;
}
.alert .icon { width: 19px; height: 19px; flex: none; margin-top: 2px; }
.alert--success { background: #e8f7f0; border-color: #b8e6d0; color: #1a6b47; }
.alert--error { background: #fdeded; border-color: #f5c6c6; color: #a32a2a; }
.alert--info { background: var(--teal-050); border-color: #b8dfdc; color: var(--teal-600); }
.alert--warn { background: #fff8e6; border-color: #f5e0a3; color: #8a6116; }

/* 9. Forms ============================================================== */

.form-panel {
  padding: 34px 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.form-panel__title { font-size: 24px; margin-bottom: 8px; }
.form-panel__sub { font-size: 14.5px; color: var(--ink-500); margin-bottom: 26px; }

.field { margin-bottom: 18px; }
.field__label {
  display: block; margin-bottom: 7px;
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  color: var(--navy-900);
}
.field__req { color: #d14343; margin-left: 2px; }

.input, .textarea, .select {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--font-body); font-size: 14.5px; color: var(--ink-900);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
  appearance: none;
}
.input::placeholder, .textarea::placeholder { color: var(--ink-300); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(20, 149, 143, .12);
}
.textarea { min-height: 140px; resize: vertical; line-height: 1.6; }

.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237b8a9d' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
  cursor: pointer;
}

.field--error .input, .field--error .textarea, .field--error .select { border-color: #d14343; }
.field__error { display: block; margin-top: 6px; font-size: 12.5px; color: #d14343; font-weight: 500; }
.field__hint { display: block; margin-top: 6px; font-size: 12px; color: var(--ink-400); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* Honeypot — hidden from humans, visible to naive bots */
.hp { position: absolute !important; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-consent {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 20px;
  font-size: 12.5px; line-height: 1.6; color: var(--ink-400);
}
.form-consent input { margin-top: 3px; accent-color: var(--teal-500); flex: none; }

/* 10. Footer ============================================================ */

.footer { background: var(--navy-900); color: rgba(255, 255, 255, .62); padding-top: 72px; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
}

.footer__logo {
  display: inline-block;
  padding: 10px 14px; margin-bottom: 20px;
  background: #fff;
  border-radius: var(--r-sm);
}
.footer__logo img, .footer__logo svg { height: 46px; width: auto; }

.footer__about { font-size: 13.5px; line-height: 1.8; color: rgba(160, 190, 230, .75); margin-bottom: 24px; max-width: 300px; }

.footer__title {
  font-family: var(--font-head); font-size: 15px; font-weight: 600; color: #fff;
  margin-bottom: 20px;
}

.footer__links { display: grid; gap: 12px; }
.footer__links a { font-size: 13.5px; color: rgba(160, 190, 230, .8); }
.footer__links a:hover { color: var(--gold-500); }

.footer__contact { display: grid; gap: 14px; }
.footer__contact-item {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 13.5px; color: rgba(160, 190, 230, .8);
}
.footer__contact-item .icon { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--gold-500); }
a.footer__contact-item:hover { color: var(--gold-500); }
.footer__contact-item--wa .icon { color: var(--green-500); }

.socials { display: flex; gap: 10px; }
.social {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-sm);
  color: rgba(255, 255, 255, .8);
  transition: all .2s var(--ease);
}
.social .icon { width: 17px; height: 17px; }
.social:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); transform: translateY(-3px); }

.footer__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 12.5px;
  color: rgba(160, 190, 230, .55);
}
.footer__legal { display: flex; align-items: center; gap: 10px; }
.footer__legal a { color: rgba(160, 190, 230, .55); }
.footer__legal a:hover { color: var(--gold-500); }
.footer__legal span { opacity: .4; }

/* -- Floating WhatsApp ------------------------------------------------- */

.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 800;
  display: grid; place-items: center;
  width: 54px; height: 54px;
  background: var(--green-500); color: #fff;
  border-radius: var(--r-full);
  box-shadow: 0 8px 26px rgba(37, 211, 102, .42);
  transition: transform .25s var(--ease);
}
.wa-float .icon { width: 27px; height: 27px; }
.wa-float:hover { transform: scale(1.09); color: #fff; }
/* Attention pulse, once settled */
.wa-float::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; border: 2px solid var(--green-500);
  animation: ping 2.4s var(--ease) infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }

/* 11. Scroll reveal ===================================================== */

/* Scoped to .js so the content is never hidden when JavaScript is off or
   fails — without this, a broken script blanks every section on the page.
   The .js class is set by an inline script in <head>. */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* 12. Admin ============================================================= */

.admin-body { background: var(--bg); min-height: 100vh; }

.admin-top {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 0 28px; height: 64px;
  background: var(--navy-900);
  color: #fff;
}
.admin-top__brand { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: #fff; }
.admin-top__brand span { color: var(--gold-500); }
.admin-nav { display: flex; gap: 4px; margin-left: 20px; }
.admin-nav a {
  padding: 8px 14px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, .7);
}
.admin-nav a:hover { background: rgba(255, 255, 255, .08); color: #fff; }
.admin-nav a.is-active { background: rgba(255, 255, 255, .12); color: #fff; }
.admin-top__right { margin-left: auto; display: flex; align-items: center; gap: 16px; font-size: 13.5px; }

.admin-main { padding: 32px 28px 64px; }
.admin-title { font-size: 26px; margin-bottom: 24px; }

.kpi-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 32px; }
.kpi { padding: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); }
.kpi__value { font-family: var(--font-head); font-size: 30px; font-weight: 700; color: var(--navy-900); line-height: 1; }
.kpi__label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); margin-top: 8px; }
.kpi--accent { background: var(--navy-800); border-color: var(--navy-800); }
.kpi--accent .kpi__value { color: var(--gold-500); }
.kpi--accent .kpi__label { color: rgba(255, 255, 255, .6); }

.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.panel__head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; border-bottom: 1px solid var(--line);
}
.panel__title { font-size: 17px; }
.panel__body { padding: 22px; }

.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
  padding: 12px 16px; text-align: left;
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-400);
  background: var(--bg); border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.table td { padding: 14px 16px; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.table tr:last-child td { border-bottom: 0; }
.table tbody tr:hover { background: #fafcfe; }
.table__name { font-weight: 600; color: var(--navy-900); }
.table__muted { color: var(--ink-400); font-size: 13px; }

.tag {
  display: inline-block; padding: 3px 9px;
  border-radius: var(--r-full);
  font-size: 10.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.tag--new { background: #e0f0ff; color: #1160a8; }
.tag--contacted { background: #fff4d9; color: #8a6116; }
.tag--converted { background: #e2f7ec; color: #1a6b47; }
.tag--closed { background: #eef1f5; color: var(--ink-400); }
.tag--type { background: var(--teal-050); color: var(--teal-600); }

.filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.filters .input, .filters .select { width: auto; min-width: 150px; padding: 9px 13px; font-size: 13.5px; }
.filters .select { padding-right: 36px; }

.pager { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 22px; border-top: 1px solid var(--line); }
.pager__links { display: flex; gap: 6px; }
.pager__link {
  display: grid; place-items: center;
  min-width: 34px; height: 34px; padding: 0 10px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  font-size: 13.5px; font-weight: 600; color: var(--ink-700);
  background: var(--surface);
}
.pager__link:hover { border-color: var(--navy-800); color: var(--navy-800); }
.pager__link.is-active { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

.auth-shell { display: grid; place-items: center; min-height: 100vh; padding: 24px; background: var(--navy-900); }
.auth-card { width: 100%; max-width: 400px; padding: 36px; background: var(--surface); border-radius: var(--r-lg); box-shadow: var(--sh-xl); }
.auth-card__title { font-size: 23px; margin-bottom: 6px; text-align: center; }
.auth-card__sub { font-size: 14px; color: var(--ink-400); text-align: center; margin-bottom: 26px; }

.empty { padding: 56px 24px; text-align: center; color: var(--ink-400); }
.empty__icon { width: 44px; height: 44px; margin: 0 auto 14px; color: var(--ink-300); }
.empty__title { font-family: var(--font-head); font-size: 17px; font-weight: 600; color: var(--navy-900); margin-bottom: 6px; }
.empty p { font-size: 14px; margin: 0; }

.def-list { display: grid; gap: 0; }
.def-list__row { display: grid; grid-template-columns: 160px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.def-list__row:last-child { border-bottom: 0; }
.def-list__k { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-400); }
.def-list__v { font-size: 14.5px; color: var(--ink-900); word-break: break-word; }

/* 13. Error pages ======================================================= */

.error-page { display: grid; place-items: center; text-align: center; padding: 120px 24px; min-height: 60vh; }
.error-page__code { font-family: var(--font-head); font-size: clamp(72px, 14vw, 140px); font-weight: 700; line-height: 1; color: var(--navy-800); opacity: .1; }
.error-page__title { font-size: clamp(26px, 4vw, 38px); margin: -20px 0 14px; }
.error-page__text { font-size: 16px; color: var(--ink-500); max-width: 460px; margin: 0 auto 30px; }

/* 14. Responsive ======================================================== */

@media (max-width: 1080px) {
  :root { --section-y: 72px; }

  .founder-layout { grid-template-columns: 260px 1fr; gap: 32px; }
  .feat-grid { grid-template-columns: repeat(3, 1fr); }
  .feat-grid > :nth-child(5), .feat-grid > :nth-child(6) { grid-column: auto; }
  .kpi-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  /* -- Mobile nav ------------------------------------------------------ */
  /* Must out-stack the open panel (z-index 895). The button is an earlier
     sibling of `.nav` and unpositioned, so without this the panel paints over
     it: the burger swaps to its X icon on open but is not clickable, leaving
     the backdrop as the only way out of the menu. */
  .nav-toggle { display: flex; position: relative; z-index: 896; }

  .nav {
    position: fixed; top: 0; right: 0; z-index: 895;
    flex-direction: column; align-items: stretch;
    gap: 2px;
    width: min(360px, 88vw); height: 100dvh;
    margin: 0; padding: 88px 20px 32px;
    background: var(--surface);
    box-shadow: var(--sh-xl);
    overflow-y: auto;
    /* Reaching the end of a long menu must not hand the scroll to the page. */
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform .3s var(--ease);
  }
  .nav.is-open { transform: none; }

  .nav__link { padding: 13px 14px; font-size: 15.5px; justify-content: space-between; }
  .nav__link.is-active::after { display: none; }
  .nav__link.is-active { background: var(--teal-050); }

  /* Dropdowns become inline accordions */
  .dropdown {
    position: static;
    min-width: 0; width: auto;
    padding: 4px 0 8px 14px;
    border: 0; border-left: 2px solid var(--line); border-radius: 0;
    box-shadow: none;
    opacity: 1; visibility: visible; pointer-events: auto;
    display: none;
    margin: 2px 0 6px 14px;
  }
  /* These must out-specify the desktop `.nav__item.is-open > .dropdown` rule,
     or its translateX(-50%) centring drags the open panel off to the left. */
  .dropdown,
  .nav__item:hover > .dropdown,
  .nav__item.is-open > .dropdown { transform: none; }

  .nav__item.is-open > .dropdown { display: block; }
  .nav__item:hover > .dropdown { display: none; }
  .nav__item.is-open:hover > .dropdown { display: block; }
  .dropdown--mega { min-width: 0; }
  .dropdown--mega .dropdown__grid { grid-template-columns: 1fr; }
  .dropdown__foot { display: none; }

  .nav__cta { margin: 16px 0 0; }
  .nav__cta .btn { width: 100%; }

  /* -- Layout ---------------------------------------------------------- */
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }

  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split__media { order: 0; }

  .founder-layout { grid-template-columns: 1fr; }
  .founder-aside { position: static; grid-template-columns: 1fr 1fr; }

  .lc { grid-template-columns: 1fr; gap: 20px; }
  .lc__action { align-self: stretch; }
  .lc__action .btn { width: 100%; }

  .prog { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  :root { --section-y: 60px; --gutter: 20px; --header-h: 72px; }

  .logo img, .logo svg { height: 42px; }

  .hero { min-height: 540px; }
  .hero__inner { padding-block: 60px; }
  .hero__text { font-size: 15px; }
  .hero__cta .btn { flex: 1 1 auto; }

  .page-hero { min-height: 300px; }
  .page-hero__inner { padding-block: 56px; }
  .page-hero__mark { width: 200px; height: 200px; right: -50px; }

  .section-head { margin-bottom: 40px; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }

  /* Stack the step rail vertically and re-hang the connector on the left */
  .rail { grid-template-columns: 1fr; gap: 18px; }
  .rail::before { top: 14px; bottom: 14px; left: 13px; right: auto; width: 2px; height: auto; }
  .rail__step { display: grid; grid-template-columns: 28px 1fr; gap: 14px; text-align: left; padding: 0; }
  .rail__n { margin: 0; }

  .check-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }

  .form-panel { padding: 26px 20px; }
  .cta-panel, .cta-soft { padding: 40px 24px; }

  .founder-aside { grid-template-columns: 1fr; }
  .founder-card__photo { aspect-ratio: 4 / 3; }

  .stat-grid { gap: 28px 20px; }
  .stat, .stat-pairs .stat { text-align: left; }

  .footer { padding-top: 56px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__about { max-width: none; }
  .footer__bar { flex-direction: column; text-align: center; gap: 14px; }

  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-main { padding: 24px 16px 48px; }
  .admin-top { padding: 0 16px; gap: 12px; }
  .admin-nav { display: none; }

  .float-badge { position: static; margin-top: -30px; margin-inline: 20px; }

  /* Tables scroll rather than squash */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .table { min-width: 720px; }

  .def-list__row { grid-template-columns: 1fr; gap: 4px; }

  .wa-float { width: 48px; height: 48px; right: 16px; bottom: 16px; }
  .wa-float .icon { width: 24px; height: 24px; }
}

@media (max-width: 460px) {
  .feat-grid { grid-template-columns: 1fr; }
  .dest-stats { grid-template-columns: 1fr; }
  .btn-row .btn { width: 100%; }
  .hero__title { font-size: 32px; }
}

/* 15. Motion / print ==================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .hero__slide.is-active .hero__bg img { animation: none; }
}

@media print {
  .header, .footer, .wa-float, .hero__dots, .nav-toggle, .btn { display: none !important; }
  body { color: #000; background: #fff; }
  .section { padding-block: 20px; }
}

/* 16. Mobile polish & touch UX ========================================== */
/* Everything below refines the small-screen experience: bigger tap targets,
   no iOS focus-zoom, tactile feedback, and tighter typography on phones.
   The layout is already overflow-free at 320px+; this is about feel. */

/* -- iOS: stop the zoom-in when a form field is focused ----------------- */
/* Safari zooms whenever an input's font-size is below 16px. Bumping the
   controls to 16px on touch widths removes that jarring jump. */
@media (max-width: 720px) {
  .input, .textarea, .select { font-size: 16px; }
  /* Keep the select chevron clear of the larger text */
  .select { padding-right: 44px; }
}

/* -- Touch devices: feedback + comfortable hit areas ------------------- */
@media (hover: none) and (pointer: coarse) {
  /* A soft branded tap flash instead of the default grey box */
  a, button, .btn, .card, .nav__link, label { -webkit-tap-highlight-color: rgba(20, 149, 143, .12); }

  /* Press feedback — the whole UI feels "alive" under a thumb */
  .btn:active,
  .svc-card:active, .dest-card:active, .feat:active, .info-card:active,
  .quote-card:active, .card--hover:active, .prog:active, .lc:active { transform: scale(.985); }

  /* Momentum scrolling for the few things that scroll sideways */
  .table-wrap, .nav { -webkit-overflow-scrolling: touch; }

  /* Hover-only lifts are pointless on touch and can stick; neutralise them */
  .dest-card:hover, .feat:hover, .svc-card:hover, .quote-card:hover,
  .info-card:hover, .card--hover:hover { transform: none; box-shadow: var(--sh-sm); }
}

/* -- Bigger tap targets on phones -------------------------------------- */
@media (max-width: 720px) {
  /* Hero dots stay visually small but get a 44px invisible hit area */
  .hero__dots { gap: 6px; bottom: 22px; }
  /* Invisible padding so a 9px dot is still an easy tap target. */
  .hero__dot::after {
    content: ""; position: absolute; inset: -16px;
  }

  /* Footer links: roomy rows so they're easy to hit accurately */
  .footer__links { gap: 4px; }
  .footer__links a { display: inline-block; padding: 8px 0; }
  .footer__contact { gap: 6px; }
  .footer__contact-item { padding: 6px 0; }
  .footer__legal { flex-wrap: wrap; justify-content: center; gap: 6px 12px; }
  .footer__legal a { padding: 6px 2px; }
  .social { width: 44px; height: 44px; }

  /* The link-with-arrow (e.g. "View all destinations") deserves a bigger hit */
  .link-arrow { padding: 6px 0; }
}

/* -- Small phones: tame oversized headings & tighten spacing ----------- */
@media (max-width: 420px) {
  :root { --gutter: 18px; }

  .section-title      { font-size: 25px; line-height: 1.22; }
  .section-title--lg  { font-size: 28px; }
  .hero__title        { font-size: 30px; line-height: 1.12; }
  .page-hero__title   { font-size: 26px; }
  .cta-band__title,
  .cta-panel__title,
  .cta-soft__title    { font-size: 23px; }
  .form-panel__title  { font-size: 21px; }
  .letter__title      { font-size: 22px; }
  .founder-card__name { font-size: 18px; }

  .lead { font-size: 15.5px; }
  .section-sub { font-size: 15px; }

  /* Buttons comfortably tall & full-width so they're never a near-miss */
  .btn { padding: 15px 22px; }
  .btn-row .btn { width: 100%; }

  /* Hero: trim the vertical air so the CTA is reachable sooner */
  .hero { min-height: 500px; }
  .hero__inner { padding-block: 48px; }
  .hero__text { margin-bottom: 26px; }
}

/* -- Keep the floating WhatsApp button clear of the last content ------- */
@media (max-width: 720px) {
  /* Room at the foot so the final links never sit under the FAB */
  .footer__bar { padding-bottom: 78px; }
  /* Nudge the FAB a hair tighter into the corner on the smallest screens */
  .wa-float { right: 14px; bottom: 14px; }
}

/* -- Smoother sticky-header scrolling on phones ------------------------ */
@media (max-width: 720px) {
  /* Section anchors clear the shorter mobile header */
  html { scroll-padding-top: calc(var(--header-h) + 12px); }
  /* The open nav panel scrolls independently without rubber-banding the page */
  .nav.is-open { overscroll-behavior: contain; }
}

/* 17. Board of advisors ================================================= */

.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
/* Photo-forward card: the portrait leads and the name sits beneath it on a
   panel. A small circular avatar left most of the card empty, which is what
   made the row read as unfinished no matter how the text was tuned. */
.board-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;              /* keeps the photo inside the rounded corners */
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.board-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: transparent; }

.board-card__photo {
  position: relative;
  aspect-ratio: 4 / 5;           /* portrait, the standard headshot crop */
  background: var(--line-soft);
  display: grid; place-items: center;
  overflow: hidden;
}
.board-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.board-card:hover .board-card__photo img { transform: scale(1.04); }

/* Shown when a member has no photo yet — fills the same frame so a mixed row
   still lines up. */
.board-card__initials {
  font-family: var(--font-head); font-size: 44px; font-weight: 700;
  color: #fff; letter-spacing: .02em;
}

.board-card__body {
  flex: 1;
  padding: 18px 18px 22px;
  border-top: 1px solid var(--line-soft);
}
.board-card__name { font-size: 17px; line-height: 1.3; margin-bottom: 6px; }
.board-card__role {
  /* Sentence case, not the uppercase micro-label used for section eyebrows:
     a 70-character job title in wide-tracked caps reads as shouting. */
  font-size: 12.5px; font-weight: 600; letter-spacing: .01em;
  line-height: 1.5;
  color: var(--teal-600);
  text-wrap: balance;
}
/* Rotating avatar tones so a row of members reads as a set, not a block */
.avatar-tone-0 { background: linear-gradient(135deg, var(--navy-600), var(--navy-800)); }
.avatar-tone-1 { background: linear-gradient(135deg, var(--teal-500), var(--teal-600)); }
.avatar-tone-2 { background: linear-gradient(135deg, var(--gold-600), #c98a00); }
.avatar-tone-3 { background: linear-gradient(135deg, var(--navy-500), var(--navy-700)); }

@media (max-width: 960px) { .board-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) {
  .board-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .board-card__body { padding: 14px 13px 16px; }
  .board-card__name { font-size: 15px; }
  .board-card__role { font-size: 11.5px; }
  .board-card__initials { font-size: 34px; }
}

/* 18. Hero slider — advanced autoplay progress ========================== */
/* A thin progress bar fills across the active dot over the autoplay interval,
   so visitors can see the slide is about to change. Driven by --hero-interval
   set in JS; pauses when the carousel is paused (.is-paused). */

.hero__dot { overflow: hidden; }
.hero__dot.is-active::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: #fff;
  transform-origin: left center;
  transform: scaleX(0);
  animation: heroProgress var(--hero-interval, 6000ms) linear forwards;
}
.hero.is-paused .hero__dot.is-active::before { animation-play-state: paused; }

/* Two identical keyframes so JS can restart the fill by swapping the animation
   NAME. Toggling .is-active would restart it too, but that collapses the dot
   from 30px back to 9px and reads as a flicker — the indicator must not move. */
.hero__dot.is-active.hero__dot--alt::before { animation-name: heroProgressAlt; }
@keyframes heroProgress    { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes heroProgressAlt { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@media (prefers-reduced-motion: reduce) {
  /* No sweep, but the fill must still be shown — left at scaleX(0) the active
     dot would read as an empty track rather than the current slide. */
  .hero__dot.is-active::before { animation: none; transform: scaleX(1); }
}

/* 19. Laptop / desktop alignment refinements ============================ */
/* Between the mobile breakpoints and the full 1200px container, a few grids
   and split layouts need nudging so nothing looks stranded on 1024–1440px. */

@media (min-width: 961px) and (max-width: 1200px) {
  :root { --section-y: 84px; }
  .container { padding-inline: 32px; }
  /* Featured tiles: 4-up can get cramped just under 1200 — even it out */
  .feat-grid { gap: 16px; }
  /* Split layouts keep a comfortable gutter rather than hugging the edges */
  .split { gap: 44px; }
  .founder-layout { gap: 40px; }
}

/* Large desktops: stop content from stretching uncomfortably wide */
@media (min-width: 1600px) {
  .container { max-width: 1240px; }
  .hero__content, .page-hero__content { max-width: 680px; }
}
