/* ==========================================================================
   Amuma Properties — Design System v2
   Direction: institutional trust (deep navy) + Filipino warmth (gold/clay)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --ink:        #0C1A2B;
  --navy:       #10314F;
  --navy-700:   #17456D;
  --navy-500:   #2B5F8C;
  --azure:      #2E6FA3;

  --gold:       #B8863B;
  --gold-600:   #9C6F2C;
  --gold-soft:  #F2E3C6;
  --clay:       #B4562F;

  /* Neutrals */
  --paper:      #FBFAF7;
  --bone:       #F3F0EA;
  --bone-2:     #E9E4DA;
  --white:      #FFFFFF;

  --text:       #14263A;
  --text-2:     #3D5568;
  --muted:      #6B8095;
  --line:       rgba(12, 26, 43, .10);
  --line-2:     rgba(12, 26, 43, .18);

  /* Status */
  --green:      #1F7A54;
  --green-soft: #E3F2EA;

  /* Type */
  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono:  ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;

  /* Space */
  --gut: clamp(20px, 4vw, 48px);
  --sect: clamp(48px, 6vw, 88px);
  --max: 1180px;
  --max-narrow: 760px;

  /* Radius + shadow */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --sh-1: 0 1px 2px rgba(12,26,43,.05), 0 2px 8px rgba(12,26,43,.04);
  --sh-2: 0 2px 4px rgba(12,26,43,.05), 0 12px 32px rgba(12,26,43,.07);
  --sh-3: 0 4px 8px rgba(12,26,43,.06), 0 24px 64px rgba(12,26,43,.10);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--azure); text-underline-offset: 3px; }
a:hover { color: var(--navy-700); }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 5.6vw, 4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); letter-spacing: -0.022em; }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.45rem); }
h4 { font-size: 1.05rem; font-family: var(--sans); font-weight: 650; letter-spacing: -0.01em; }
p  { margin: 0 0 1.1em; text-wrap: pretty; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .45em; }
strong { font-weight: 650; color: var(--ink); }
:focus-visible { outline: 3px solid var(--azure); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.narrow { max-width: var(--max-narrow); }
.section { padding-block: var(--sect); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--paper { background: var(--paper); }
.section--bone  { background: var(--bone); }
.section--ink   { background: var(--ink); color: #D6E0EA; }
.section--ink h2, .section--ink h3, .section--ink h4 { color: var(--white); }

.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.g-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 900px) { .g-3, .g-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } }

/* ---------- Typographic helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; font-weight: 650; letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold-600); margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--gold); }
.section--ink .eyebrow { color: var(--gold-soft); }
.section--ink .eyebrow::before { background: var(--gold-soft); }

.lede { font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.6; color: var(--text-2); max-width: 62ch; }
.section--ink .lede { color: #A9BDD1; }
.sub { color: var(--muted); font-size: .95rem; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.head { max-width: 66ch; margin-bottom: clamp(32px, 4vw, 52px); }
.head.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-size: .96rem; font-weight: 600; letter-spacing: -0.005em;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; transition: all .18s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--navy); color: var(--white); box-shadow: var(--sh-2); }
.btn--primary:hover { background: var(--ink); color: var(--white); transform: translateY(-1px); box-shadow: var(--sh-3); }
.btn--gold { background: var(--gold); color: #1B1206; box-shadow: var(--sh-2); }
.btn--gold:hover { background: var(--gold-600); color: var(--white); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--white); border-color: var(--navy); color: var(--navy); }
.section--ink .btn--ghost { color: var(--white); border-color: rgba(255,255,255,.28); }
.section--ink .btn--ghost:hover { background: rgba(255,255,255,.08); border-color: var(--white); color: var(--white); }
.btn--sm { padding: 10px 18px; font-size: .88rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-row.center { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .95rem; text-decoration: none; color: var(--navy);
}
.link-arrow::after { content: "→"; transition: transform .18s ease; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.topbar {
  background: var(--ink); color: #9FB6CC;
  font-size: .8rem; letter-spacing: .01em;
}
.topbar .wrap { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; justify-content: center; padding-block: 9px; }
.topbar a { color: #C9DAEA; text-decoration: none; font-weight: 550; }
.topbar a:hover { color: var(--white); text-decoration: underline; }
.topbar span { display: inline-flex; align-items: center; gap: 7px; }

.masthead {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,250,247,.88); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.masthead .wrap { display: flex; align-items: center; gap: 20px; padding-block: 14px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: linear-gradient(150deg, var(--navy-700), var(--ink));
  display: grid; place-items: center; box-shadow: var(--sh-1);
}
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.22rem; color: var(--ink); line-height: 1.1; letter-spacing: -0.02em; }
.brand__tag { display: block; font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 14px; border-radius: 999px; text-decoration: none;
  font-size: .92rem; font-weight: 550; color: var(--text-2); transition: all .16s ease;
}
.nav a:hover { background: var(--bone); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 650; background: var(--bone-2); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-2);
  border-radius: 11px; background: var(--white); cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }
  .masthead .wrap { flex-wrap: wrap; }
  .nav {
    order: 3; width: 100%; display: none; flex-direction: column; align-items: stretch;
    gap: 2px; padding: 10px 0 14px; border-top: 1px solid var(--line); margin-top: 6px;
  }
  .nav a { padding: 12px 14px; border-radius: var(--r-sm); }
  .masthead.is-open .nav { display: flex; }
  .masthead .btn--primary { display: none; }
  .masthead.is-open .nav .btn--primary { display: inline-flex; margin-top: 8px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--ink); color: #C6D6E5; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1000px 520px at 78% -8%, rgba(46,111,163,.34), transparent 62%),
    radial-gradient(760px 480px at 4% 108%, rgba(184,134,59,.20), transparent 60%);
}
.hero .wrap { position: relative; z-index: 1; padding-block: clamp(64px, 9vw, 116px); }
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; } }
.hero h1 { color: var(--white); margin-bottom: .35em; }
.hero h1 em { font-style: normal; color: var(--gold-soft); }
.hero__lede { font-size: clamp(1.08rem, 1.7vw, 1.3rem); color: #A9BDD1; max-width: 54ch; margin-bottom: 30px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold); }

.hero__proof { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); }
.hero__proof div { min-width: 108px; }
.hero__proof b { display: block; font-family: var(--serif); font-size: 1.7rem; color: var(--white); line-height: 1.1; }
.hero__proof span { font-size: .8rem; color: #8FA6BC; letter-spacing: .01em; }

/* Hero card */
.hero__card {
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-xl); padding: clamp(22px, 3vw, 32px);
  backdrop-filter: blur(8px); box-shadow: var(--sh-3);
}
.hero__card h2 { font-size: 1.15rem; color: var(--white); margin-bottom: 4px; }
.hero__card > p { font-size: .88rem; color: #93AABF; margin-bottom: 20px; }
.factrow { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.11); font-size: .92rem; }
.factrow:first-of-type { border-top: 0; }
.factrow dt { color: #93AABF; margin: 0; }
.factrow dd { margin: 0; color: var(--white); font-weight: 600; text-align: right; }
.factrow dd small { display: block; font-weight: 400; color: #7E95AB; font-size: .78rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(22px, 2.6vw, 30px);
  box-shadow: var(--sh-1); transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--text-2); font-size: .96rem; }
.card > :last-child { margin-bottom: 0; }
.card--flat:hover { transform: none; box-shadow: var(--sh-1); }
.card--ink { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.13); color: #B7CADA; }

.ico {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--gold-soft); color: var(--navy);
}
.ico svg { width: 23px; height: 23px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ico--navy { background: #E4ECF4; color: var(--navy-700); }
.ico--green { background: var(--green-soft); color: var(--green); }

.tick { list-style: none; padding: 0; margin: 0; }
.tick li { position: relative; padding-left: 27px; margin-bottom: .55em; font-size: .95rem; color: var(--text-2); }
.tick li::before {
  content: ""; position: absolute; left: 0; top: .48em;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F7A54' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
}
.section--ink .tick li { color: #A9BDD1; }

/* ---------- Stat / fact strips ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
@media (max-width: 780px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { background: var(--white); padding: clamp(20px, 2.6vw, 30px); }
.stat b { display: block; font-family: var(--serif); font-size: clamp(1.7rem, 3.2vw, 2.35rem); color: var(--ink); line-height: 1.05; margin-bottom: 6px; letter-spacing: -0.02em; }
.stat span { font-size: .86rem; color: var(--muted); }

/* ---------- Data table (LLM-friendly) ---------- */
.datatable { width: 100%; border-collapse: collapse; font-size: .95rem; background: var(--white); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-1); }
.datatable caption { caption-side: top; text-align: left; font-size: .84rem; color: var(--muted); padding-bottom: 10px; }
.datatable th, .datatable td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.datatable thead th { background: var(--bone); font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; color: var(--text-2); font-weight: 650; }
.datatable tbody tr:last-child td, .datatable tbody tr:last-child th { border-bottom: 0; }
.datatable tbody th { font-weight: 600; color: var(--ink); width: 38%; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.05rem, 1.7vw, 1.24rem); font-weight: 600; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 13px; height: 13px;
  margin-top: -7px; transition: transform .22s ease;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310314F' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq .faq__a { padding: 0 8% 24px 0; color: var(--text-2); }
.faq .faq__a > :last-child { margin-bottom: 0; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 2px; }
.step { position: relative; background: var(--white); border: 1px solid var(--line); padding: clamp(22px, 2.6vw, 30px); padding-left: clamp(66px, 8vw, 84px); }
.steps .step:first-child { border-radius: var(--r-lg) var(--r-lg) 0 0; }
.steps .step:last-child { border-radius: 0 0 var(--r-lg) var(--r-lg); }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: clamp(20px, 2.6vw, 28px); top: clamp(22px, 2.6vw, 30px);
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy); color: var(--white); font-size: .88rem; font-weight: 650; font-family: var(--sans);
}
.step h3 { font-size: 1.12rem; margin-bottom: .3em; }
.step p { margin-bottom: 0; color: var(--text-2); font-size: .96rem; }

/* ---------- Pricing ---------- */
.price-card {
  background: var(--white); border: 1.5px solid var(--line-2); border-radius: var(--r-xl);
  padding: clamp(26px, 3.4vw, 40px); box-shadow: var(--sh-2);
}
.price-card--feature { border-color: var(--navy); box-shadow: var(--sh-3); position: relative; }
.price-card--feature::before {
  content: "Our model"; position: absolute; top: -13px; left: clamp(26px, 3.4vw, 40px);
  background: var(--navy); color: var(--white); font-size: .72rem; font-weight: 650;
  letter-spacing: .09em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px;
}
.price { font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 3.6rem); color: var(--ink); line-height: 1; letter-spacing: -0.03em; }
.price small { font-family: var(--sans); font-size: .95rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }

.pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 13px; border-radius: 999px;
  font-size: .78rem; font-weight: 600; letter-spacing: .01em;
  background: var(--bone); color: var(--text-2); border: 1px solid var(--line);
}
.pill--gold { background: var(--gold-soft); color: #6B4A14; border-color: rgba(184,134,59,.35); }
.pill--green { background: var(--green-soft); color: var(--green); border-color: rgba(31,122,84,.22); }

/* ---------- Property cards ---------- */
.property { overflow: hidden; padding: 0; }
.property img { width: 100%; height: 232px; object-fit: cover; background: var(--bone-2); }
.property__body { padding: clamp(20px, 2.4vw, 26px); display: flex; flex-direction: column; flex: 1; }
.property__body h3 { font-size: 1.16rem; }
.property dl { display: grid; grid-template-columns: auto 1fr; gap: 4px 14px; margin: 14px 0 18px; font-size: .88rem; }
.property dt { color: var(--muted); }
.property dd { margin: 0; color: var(--text); font-weight: 550; }
.property .link-arrow { margin-top: auto; }

/* ---------- Quote ---------- */
.quote { border-left: 3px solid var(--gold); padding-left: clamp(20px, 3vw, 30px); }
.quote p { font-family: var(--serif); font-size: clamp(1.15rem, 2.2vw, 1.55rem); line-height: 1.45; color: var(--ink); }
.quote footer { font-size: .9rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: #B7CADA; border-radius: var(--r-xl); padding: clamp(34px, 5vw, 62px); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 380px at 88% 0%, rgba(184,134,59,.22), transparent 62%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: #A9BDD1; }

/* ---------- Forms ---------- */
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--clay); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--text);
  padding: 13px 15px; border: 1.5px solid var(--line-2); border-radius: var(--r-sm);
  background: var(--white); width: 100%; transition: border-color .16s ease, box-shadow .16s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-500); box-shadow: 0 0 0 3px rgba(46,111,163,.15);
}
.field small { font-size: .8rem; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #93AABF; padding-block: clamp(48px, 6vw, 76px) 0; font-size: .93rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(26px, 4vw, 48px); }
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { color: var(--white); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 650; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .6em; }
.footer a { color: #B7CADA; text-decoration: none; }
.footer a:hover { color: var(--white); text-decoration: underline; }
.footer .brand__name { color: var(--white); }
.footer .brand__tag { color: #7E95AB; }
.footer__bar {
  margin-top: clamp(36px, 5vw, 56px); border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 22px; display: flex; flex-wrap: wrap; gap: 10px 24px;
  align-items: center; justify-content: space-between; font-size: .84rem; color: #7E95AB;
}
.footer__bar nav { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: .84rem; color: var(--muted); padding-block: 18px 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--line-2); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--navy); text-decoration: underline; }

/* ---------- Page hero (interior) ---------- */
.pagehead { background: var(--bone); border-bottom: 1px solid var(--line); }
.pagehead .wrap { padding-block: clamp(38px, 5vw, 68px); }
.pagehead h1 { margin-bottom: .3em; }

/* ---------- Answer block (AI-extractable) ---------- */
.answer {
  background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: var(--r); padding: clamp(20px, 2.6vw, 28px); box-shadow: var(--sh-1);
}
.answer p:last-child { margin-bottom: 0; }
.answer strong:first-child { display: block; margin-bottom: .4em; }

/* ---------- Utilities ---------- */
.mb-0 { margin-bottom: 0; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 34px; }
.stack > * + * { margin-top: 18px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: -9999px; z-index: 999; padding: 12px 20px;
  background: var(--navy); color: var(--white); border-radius: 0 0 var(--r-sm) 0; text-decoration: none;
}
.skip:focus { left: 0; top: 0; }

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

@media print {
  .masthead, .topbar, .footer, .btn, .nav-toggle { display: none !important; }
  body { background: #fff; font-size: 12pt; }
  .section { padding-block: 18pt; }
}
