:root {
  --paper: #fbfaf7;
  --paper-deep: #f4f0e9;
  --ivory: #f8f5ef;
  --stone: #ece7df;
  --ink: #141414;
  --muted: #5f5b54;
  --line: #ddd5c8;
  --gold: #aa8b50;
  --gold-dark: #7d6230;
  --header-h: 88px;
  --max: 1542px;
  --serif: Didot, "Bodoni 72", "Bodoni MT", "Times New Roman", Georgia, serif;
  --sans: Inter, "Helvetica Neue", Arial, Helvetica, system-ui, sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid var(--gold-dark); outline-offset: 4px; }
::selection { color: #fff; background: var(--gold-dark); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: #111;
  transform: translateY(-170%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.site-header {
  position: relative;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255,255,255,.985);
  border-bottom: 1px solid rgba(20,20,20,.075);
  box-shadow: 0 2px 12px rgba(37,31,23,.025);
}
.header-inner {
  width: min(calc(100% - 102px), var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #111;
  text-decoration: none;
}
.brand-mark {
  width: 55px;
  height: 55px;
  object-fit: contain;
}
.brand-name {
  display: inline-flex;
  align-items: baseline;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -.047em;
  line-height: 1;
  white-space: nowrap;
}
.brand-name strong { font-weight: 800; }
.brand-name span { font-weight: 500; }
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(43px, 4.3vw, 70px);
}
.site-nav::after {
  content: "";
  width: 1px;
  height: 42px;
  margin-left: -21px;
  background: rgba(170,139,80,.72);
}
.site-nav a {
  position: relative;
  padding: 10px 0;
  color: #181818;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .29em;
  font-weight: 750;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: .29em;
  bottom: 1px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle { display: none; }

/* Home hero */
.hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  isolation: isolate;
  background-color: #faf8f3;
  background-image: url('../img/hero-map.webp');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  border-bottom: 1px solid rgba(170,139,80,.16);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg,
    #faf8f3 0%,
    #faf8f3 55%,
    rgba(250,248,243,.995) 63%,
    rgba(250,248,243,.93) 70%,
    rgba(250,248,243,.44) 79%,
    rgba(250,248,243,0) 88%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 94% 20%, rgba(170,139,80,.18) 0 1.5px, transparent 2px),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  pointer-events: none;
}
.hero-est {
  position: absolute;
  z-index: 3;
  left: max(52px, calc((100% - var(--max))/2));
  top: 24px;
  bottom: 20px;
  width: 83px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--gold);
  border-right: 1px solid rgba(170,139,80,.61);
}
.hero-est::before,
.hero-est::after {
  content: "";
  position: absolute;
  right: -6px;
  width: 11px;
  height: 1px;
  background: var(--gold);
}
.hero-est::before { top: 42px; }
.hero-est::after { bottom: 42px; }
.hero-est span {
  margin: 0 0 9px 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
}
.hero-est strong {
  font-family: var(--serif);
  font-size: 28px;
  line-height: .9;
  letter-spacing: .12em;
  font-weight: 500;
}
.hero-content {
  position: relative;
  z-index: 4;
  width: min(calc(100% - 360px), 1125px);
  margin-left: max(245px, calc((100% - var(--max))/2 + 190px));
  padding: 70px 28px 45px 0;
}
.hero h1 {
  max-width: 1000px;
  margin: 0 0 25px;
  font-family: var(--serif);
  font-size: clamp(54px, 4.45vw, 75px);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.044em;
}
.hero-break { display: block; }
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 5px 15px 4px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #8b6e38, #755a2c);
  box-shadow: inset 0 1px rgba(255,255,255,.22);
  text-transform: uppercase;
  font-size: 9.5px;
  line-height: 1;
  letter-spacing: .21em;
  font-weight: 800;
}
.hero-content > p {
  max-width: 610px;
  margin: 14px 0 17px;
  color: #3e3b37;
  font-size: 15.5px;
  line-height: 1.53;
}
.heritage-note {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #242321;
  text-transform: uppercase;
  font-size: 10.5px;
  line-height: 1;
  letter-spacing: .26em;
  font-weight: 800;
}
.heritage-note span { width: 1px; height: 24px; background: var(--gold); }

/* Fact cards */
.facts {
  position: relative;
  z-index: 5;
  padding: 14px 0 14px;
  background: #fff;
}
.facts-grid {
  width: min(calc(100% - 130px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.fact-card {
  min-height: 110px;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid #e5ddcf;
  border-radius: 7px;
  background: linear-gradient(135deg, #fffefa, #fbf9f5);
  box-shadow: 0 5px 14px rgba(66,50,26,.025);
}
.fact-icon {
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border-right: 1px solid rgba(170,139,80,.55);
}
.fact-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fact-copy { min-width: 0; padding: 8px 20px; }
.fact-copy span {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 9.5px;
  line-height: 1;
  letter-spacing: .25em;
  font-weight: 800;
}
.fact-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.05;
  letter-spacing: -.015em;
  font-weight: 400;
}

/* History */
.history {
  display: grid;
  grid-template-columns: minmax(305px, 350px) minmax(0, 1fr);
  gap: 36px;
  min-height: 196px;
  padding: 27px max(64px, calc((100% - var(--max))/2 + 24px)) 30px;
  background:
    linear-gradient(rgba(247,244,238,.965), rgba(247,244,238,.965)),
    repeating-linear-gradient(0deg, rgba(70,55,35,.018) 0 1px, transparent 1px 4px);
  border-top: 1px solid rgba(70,55,35,.025);
}
.eyebrow {
  color: var(--gold-dark);
  text-transform: uppercase;
  font-size: 10.5px;
  line-height: 1;
  letter-spacing: .18em;
  font-weight: 800;
}
.history-intro h2 {
  margin: 6px 0 11px;
  font-family: var(--serif);
  font-size: 36px;
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 400;
}
.history-intro p {
  max-width: 326px;
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}
.timeline {
  --timeline-y: 48px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  align-items: start;
  margin: 0;
  padding: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--timeline-y);
  height: 1px;
  background: #2b2a28;
}
.timeline li {
  position: relative;
  min-height: 142px;
  padding: 1px 19px 0;
  text-align: center;
}
.timeline li + li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 77px;
  bottom: 1px;
  width: 1px;
  background: rgba(61,56,49,.23);
}
.timeline time {
  display: block;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.05;
}
.timeline-dot {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: calc(var(--timeline-y) - 7px);
  width: 15px;
  height: 15px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--ivory);
  transform: translateX(-50%);
}
.timeline-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline p {
  max-width: 220px;
  margin: 48px auto 0;
  color: #383530;
  font-size: 13px;
  line-height: 1.52;
}

/* Footer */
.site-footer { background: #eee9e1; }
.footer-statement {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  padding: 21px 32px;
  color: #222;
  border-top: 1px solid rgba(170,139,80,.08);
  background: linear-gradient(90deg, #eee9e1, #f4f0e9 50%, #eee9e1);
}
.footer-statement img {
  width: 44px;
  height: 44px;
  filter: sepia(.75) saturate(.9) hue-rotate(356deg) brightness(.83);
}
.footer-statement p {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .28em;
  font-weight: 750;
}
.footer-line { width: 55px; height: 1px; background: var(--gold); }
.footer-legal {
  width: min(calc(100% - 102px), var(--max));
  margin: 0 auto;
  padding: 18px 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: #5d5952;
  border-top: 1px solid rgba(66,58,47,.12);
  font-size: 12px;
}
.footer-legal p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 24px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover,
.footer-links a:focus-visible { text-decoration: underline; text-underline-offset: 3px; }

/* Legal pages */
.legal-main { background: var(--paper); }
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 80px max(32px, calc((100% - 1180px)/2)) 63px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 0, rgba(170,139,80,.14), transparent 34%),
    linear-gradient(180deg, #fbfaf7, #f4efe6);
}
.legal-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -130px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(170,139,80,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(170,139,80,.035), 0 0 0 145px rgba(170,139,80,.02);
}
.legal-hero > * { position: relative; z-index: 1; }
.legal-kicker {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .23em;
  font-size: 10.5px;
  font-weight: 800;
}
.legal-hero h1 {
  max-width: 900px;
  margin: 12px 0 16px;
  font: 400 clamp(50px, 6vw, 84px)/.96 var(--serif);
  letter-spacing: -.047em;
}
.legal-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}
.legal-meta {
  margin-top: 27px;
  color: #746d63;
  font-size: 11.5px;
  letter-spacing: .08em;
}
.legal-document {
  width: min(calc(100% - 64px), 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 258px minmax(0, 1fr);
  gap: 72px;
  padding: 62px 0 100px;
}
.legal-toc {
  position: sticky;
  top: 28px;
  align-self: start;
  max-height: calc(100vh - 56px);
  overflow: auto;
  display: grid;
  gap: 9px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 30px rgba(58,45,28,.035);
}
.legal-toc strong {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}
.legal-toc a {
  color: #5a564e;
  font-size: 11.5px;
  line-height: 1.35;
  text-decoration: none;
}
.legal-toc a:hover,
.legal-toc a:focus-visible { color: var(--gold-dark); }
.legal-copy { min-width: 0; }
.legal-copy section { scroll-margin-top: 30px; }
@supports (content-visibility: auto) {
  .legal-copy section { content-visibility: auto; contain-intrinsic-size: 1px 520px; }
}
#about, #heritage, #story { scroll-margin-top: 24px; }
.legal-copy section + section {
  margin-top: 46px;
  padding-top: 45px;
  border-top: 1px solid var(--line);
}
.legal-copy h2 {
  margin: 0 0 18px;
  font: 400 31px/1.15 var(--serif);
  letter-spacing: -.025em;
}
.legal-copy h3 {
  margin: 27px 0 12px;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: .04em;
}
.legal-copy p,
.legal-copy li {
  color: #48443e;
  font-size: 15.5px;
  line-height: 1.76;
}
.legal-copy p { margin: 0 0 15px; }
.legal-copy ul,
.legal-copy ol { margin: 13px 0 17px; padding-left: 24px; }
.legal-copy li + li { margin-top: 7px; }
.legal-copy a { color: var(--gold-dark); text-underline-offset: 3px; }
.legal-callout {
  margin: 24px 0;
  padding: 20px 22px;
  border-left: 2px solid var(--gold);
  background: #f4f0e8;
}
.legal-callout p:last-child { margin-bottom: 0; }

.error-main {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  padding: 70px 24px;
  background: radial-gradient(circle at 80% 10%, rgba(170,139,80,.13), transparent 28%), var(--paper);
}
.error-card { max-width: 720px; text-align: center; }
.error-code { color: var(--gold-dark); text-transform: uppercase; letter-spacing: .25em; font-size: 11px; font-weight: 800; }
.error-card h1 { margin: 12px 0 16px; font: 400 clamp(48px, 7vw, 82px)/.98 var(--serif); letter-spacing: -.04em; }
.error-card p { margin: 0 auto 28px; max-width: 590px; color: var(--muted); line-height: 1.7; }
.error-card a { display: inline-flex; padding: 12px 18px; border: 1px solid var(--gold); text-decoration: none; text-transform: uppercase; letter-spacing: .18em; font-size: 10px; font-weight: 800; }


/* Contact page */
.contact-main { background: var(--paper); }
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 92px max(40px, calc((100% - 1280px)/2)) 78px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(251,250,247,.98) 0 60%, rgba(251,250,247,.72)),
    url('../img/hero-map.webp') right center / auto 100% no-repeat,
    var(--paper);
}
.contact-hero::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: -185px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(170,139,80,.18);
  border-radius: 50%;
}
.contact-hero > * { position: relative; z-index: 1; }
.contact-hero h1 {
  max-width: 830px;
  margin: 12px 0 18px;
  font: 400 clamp(56px, 7vw, 96px)/.96 var(--serif);
  letter-spacing: -.05em;
}
.contact-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.contact-section {
  width: min(calc(100% - 80px), 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(0, 1.55fr);
  gap: 54px;
  padding: 72px 0 80px;
}
.contact-primary {
  align-self: start;
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 44px rgba(58,45,28,.045);
}
.contact-primary h2 {
  margin: 8px 0 18px;
  font: 400 38px/1 var(--serif);
  letter-spacing: -.035em;
}
.contact-email {
  display: inline-block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  text-decoration-color: var(--gold);
  text-underline-offset: 6px;
}
.contact-primary p {
  margin: 22px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.contact-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--gold-dark);
  color: #fff;
  background: var(--gold-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
  font-weight: 800;
}
.contact-button:hover { background: #684e24; }
.contact-topics { display: grid; border-top: 1px solid var(--line); }
.contact-topics article {
  display: grid;
  grid-template-columns: 58px 210px 1fr;
  gap: 22px;
  align-items: start;
  padding: 31px 4px;
  border-bottom: 1px solid var(--line);
}
.contact-topics article > span {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 20px;
}
.contact-topics h2 {
  margin: 0;
  font: 400 25px/1.1 var(--serif);
}
.contact-topics p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.contact-note {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: 60px;
  padding: 58px max(40px, calc((100% - 1280px)/2));
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}
.contact-note h2 {
  margin: 8px 0 0;
  font: 400 34px/1.08 var(--serif);
  letter-spacing: -.03em;
}
.contact-note p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.noscript-nav { display: flex; gap: 18px; font-size: 12px; }
.noscript-nav a { color: var(--ink); }

@media (max-width: 1180px) {
  .header-inner { width: min(calc(100% - 56px), var(--max)); }
  .hero-est { left: 31px; }
  .hero-content { width: auto; margin-left: 180px; }
  .facts-grid { width: min(calc(100% - 48px), var(--max)); grid-template-columns: repeat(2, 1fr); }
  .history { grid-template-columns: 1fr; gap: 29px; }
  .history-intro p { max-width: 600px; }
  .footer-legal { width: min(calc(100% - 56px), var(--max)); }
}

@media (max-width: 760px) {
  :root { --header-h: 72px; }
  .header-inner { width: calc(100% - 32px); }
  .brand { gap: 10px; }
  .brand-mark { width: 43px; height: 43px; }
  .brand-name { font-size: 22px; }
  .nav-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: #111;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px 18px 18px;
    background: rgba(255,255,255,.99);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(30,24,17,.08);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: .2s ease;
  }
  .site-nav::after { display: none; }
  .nav-open .site-nav { visibility: visible; opacity: 1; transform: none; }
  .site-nav a { padding: 15px 6px; border-bottom: 1px solid #eee9e1; }

  .hero {
    min-height: 520px;
    background-image: none;
    background-color: #faf8f3;
  }
  .hero::before {
    background: linear-gradient(180deg, #faf8f3 0, #faf8f3 61%, rgba(250,248,243,.96) 74%, rgba(250,248,243,.72) 100%);
  }
  .hero::after {
    inset: 43% -42% -11% 12%;
    background: url('../img/caribbean-map.svg') center bottom / contain no-repeat;
    opacity: .55;
  }
  .hero-est {
    left: 19px;
    top: 31px;
    bottom: auto;
    width: 54px;
    height: 128px;
    justify-content: flex-start;
    padding-top: 14px;
  }
  .hero-est::before { top: 0; }
  .hero-est::after { bottom: 0; }
  .hero-est span { font-size: 9.5px; }
  .hero-est strong { font-size: 22px; }
  .hero-content {
    width: auto;
    margin: 0;
    padding: 54px 20px 230px 92px;
  }
  .hero h1 {
    max-width: 520px;
    margin-bottom: 22px;
    font-size: clamp(42px, 12.5vw, 60px);
    line-height: .99;
  }
  .hero-break { display: inline; }
  .hero-content > p { font-size: 14.5px; line-height: 1.56; }
  .heritage-note { font-size: 9.5px; letter-spacing: .2em; }

  .facts { padding: 13px 0; }
  .facts-grid { width: calc(100% - 28px); grid-template-columns: 1fr; gap: 10px; }
  .fact-card { min-height: 96px; grid-template-columns: 82px 1fr; }
  .fact-icon { height: 61px; }
  .fact-icon svg { width: 34px; height: 34px; }
  .fact-copy { padding: 8px 18px; }
  .fact-copy span { margin-bottom: 8px; }
  .fact-copy strong { font-size: 22px; }

  .history { padding: 42px 22px 49px; gap: 34px; }
  .history-intro h2 { font-size: 39px; }
  .timeline { display: block; padding-left: 30px; }
  .timeline::before { top: 0; bottom: 0; left: 6px; right: auto; width: 1px; height: auto; }
  .timeline li { min-height: 0; padding: 0 0 38px 12px; text-align: left; }
  .timeline li:last-child { padding-bottom: 0; }
  .timeline li + li::after { display: none; }
  .timeline time { font-size: 20px; }
  .timeline-dot { left: -24px; top: 4px; transform: none; }
  .timeline p { max-width: 360px; margin: 9px 0 0; font-size: 14px; }

  .footer-statement { gap: 13px; flex-wrap: wrap; padding: 22px 18px; }
  .footer-line { width: 31px; }
  .footer-statement p { flex: 0 0 100%; order: 2; line-height: 1.65; letter-spacing: .2em; }
  .footer-legal { width: calc(100% - 36px); flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; gap: 15px; }

  .legal-hero { padding: 58px 22px 46px; }
  .legal-hero h1 { font-size: clamp(46px, 14vw, 68px); }
  .legal-hero p { font-size: 16px; }
  .legal-document { width: calc(100% - 36px); grid-template-columns: 1fr; gap: 34px; padding: 35px 0 68px; }
  .legal-toc { position: static; max-height: 360px; overflow: auto; overscroll-behavior: contain; }
  .legal-copy h2 { font-size: 28px; }
  .legal-copy p,
  .legal-copy li { font-size: 15px; }
}


@media (max-width: 760px) {
  .contact-hero { padding: 62px 22px 52px; background-position: 74% center; }
  .contact-hero h1 { font-size: clamp(50px, 16vw, 70px); }
  .contact-hero p { font-size: 15.5px; }
  .contact-section { width: calc(100% - 36px); grid-template-columns: 1fr; gap: 34px; padding: 40px 0 52px; }
  .contact-primary { padding: 26px 22px; }
  .contact-primary h2 { font-size: 34px; }
  .contact-email { font-size: 22px; }
  .contact-topics article { grid-template-columns: 44px 1fr; gap: 12px; padding: 25px 0; }
  .contact-topics article p { grid-column: 2; }
  .contact-note { grid-template-columns: 1fr; gap: 20px; padding: 42px 22px; }
  .contact-note h2 { font-size: 31px; }
  .noscript-nav { position: absolute; inset: 100% 0 auto; z-index: 20; flex-direction: column; padding: 18px; background: #fff; border-bottom: 1px solid var(--line); }
  .footer-links a { padding: 7px 2px; }
}

@media (max-width: 420px) {
  .brand-name { font-size: 20px; }
  .hero-content { padding-left: 84px; }
  .hero h1 { font-size: 41px; }
  .status-pill { letter-spacing: .16em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}


@media print {
  .site-header, .site-footer, .legal-toc, .skip-link { display: none !important; }
  body { color: #000; background: #fff; }
  .legal-hero { padding: 0 0 28px; background: none; }
  .legal-hero::after { display: none; }
  .legal-document { width: 100%; display: block; padding: 30px 0; }
  .legal-copy section { break-inside: avoid; content-visibility: visible; contain-intrinsic-size: auto; }
  .legal-copy a { color: #000; }
}
