@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Lato:wght@300;400;700;900&display=swap');

/* ============================================================
   Skhawling Advisors Sdn Bhd
   Design language: the ruled legal document.
   Hairline rules, numbered sections, generous margins,
   tabular figures, small-caps labels.
   ============================================================ */

:root {
  /* Brand — derived from the client's own document styling */
  --ink:        #131F35;   /* deepest navy, hero + footer */
  --navy:       #1F3864;   /* brand navy */
  --navy-soft:  #2E4C7E;
  --gold:       #E0C48C;   /* brand gold */
  --gold-deep:  #C29A4E;
  --bronze:     #8A6D3B;   /* brand bronze, small-caps labels */
  --cream:      #FFF7E6;   /* brand cream */

  --paper:      #FBF9F6;   /* page background, warm off-white */
  --white:      #FFFFFF;
  --text:       #191C22;
  --muted:      #5A6474;
  --rule:       #DFD8CC;   /* hairline on light */
  --rule-dark:  rgba(224, 196, 140, 0.28);

  --measure: 68ch;
  --wrap: 1200px;
  --wrap-narrow: 820px;

  /* Density 5/10 — standard */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 96px;
  --s-8: 128px;

  --serif: 'EB Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.012em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 var(--s-3); max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--s-3); }
.wrap-narrow { width: 100%; max-width: var(--wrap-narrow); margin-inline: auto; padding-inline: var(--s-3); }
@media (min-width: 768px) { .wrap, .wrap-narrow { padding-inline: var(--s-5); } }

.section { padding-block: var(--s-7); }
.section-tight { padding-block: var(--s-6); }
@media (max-width: 767px) { .section { padding-block: var(--s-6); } }

.section-line { border-top: 1px solid var(--rule); }

/* ---------- the numbered section label — the document motif ---------- */
.label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 var(--s-3);
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
}
.label::before {
  content: attr(data-n);
  font-variant-numeric: tabular-nums;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.label.on-dark { color: var(--gold); }
.label.on-dark::before { color: var(--gold); border-color: var(--rule-dark); }

/* ---------- typography scale ---------- */
.display   { font-size: clamp(2.5rem, 6.2vw, 4.5rem); line-height: 1.04; letter-spacing: -0.02em; }
.h1        { font-size: clamp(2.1rem, 4.6vw, 3.25rem); }
.h2        { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.h3        { font-size: clamp(1.25rem, 2vw, 1.55rem); }
.lede      { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.6; color: var(--muted); }
.lede-dark { color: rgba(255, 255, 255, 0.74); }
.small     { font-size: 15px; }
.tiny      { font-size: 13px; line-height: 1.55; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 26px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
}
.btn-primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: currentColor; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-ghost-light { background: transparent; color: var(--cream); border-color: var(--rule-dark); }
.btn-ghost-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-2); align-items: center; }

/* text link with a gold underline that grows */
.tlink {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}
.tlink:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

/* ---------- compliance banner ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 9px var(--s-3);
  border-bottom: 1px solid var(--rule-dark);
}
.topbar strong { color: var(--gold); font-weight: 700; }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 246, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
/* The header spans wider than the text column so the full nav can breathe. */
.header > .wrap, .header > .drawer.wrap { max-width: 1400px; }
.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }
.brand-txt {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
}
.brand-txt span {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--bronze);
  font-weight: 700;
}

.nav { display: none; align-items: center; gap: 16px; flex: 0 0 auto; }
.nav a {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--gold); }
@media (min-width: 1200px) { .nav { display: flex; } }

.nav-cta { display: none; flex-shrink: 0; }
@media (min-width: 1380px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: none;
  border: 1px solid var(--rule);
  border-radius: 2px;
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
}
/* Declared after .nav-toggle so this override actually wins. */
@media (min-width: 1200px) { .nav-toggle { display: none; } }
.drawer {
  display: none;
  border-top: 1px solid var(--rule);
  background: var(--paper);
  padding: var(--s-2) 0 var(--s-4);
}
.drawer.open { display: block; }
@media (min-width: 1200px) { .drawer, .drawer.open { display: none; } }
.drawer a {
  display: block;
  padding: 13px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--rule);
}
.drawer a[aria-current="page"] { color: var(--gold-deep); }
.drawer .btn { margin-top: var(--s-3); width: 100%; }

/* ---------- hero ---------- */
.hero {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--s-6), 11vw, var(--s-8));
}
/* the margin rule — a legal document's ruled edge */
.hero::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: max(var(--s-3), calc((100% - var(--wrap)) / 2 + var(--s-5)));
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--rule-dark) 12%, var(--rule-dark) 88%, transparent);
}
@media (max-width: 767px) { .hero::before { display: none; } }

/* ---------- video hero ----------
   Video sits behind a navy scrim that stays opaque on the text side and
   thins out to the right, so the footage reads without touching contrast. */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--ink);
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 28%;
  display: block;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19,31,53,0.97) 0%, rgba(19,31,53,0.95) 38%, rgba(19,31,53,0.72) 68%, rgba(19,31,53,0.5) 100%),
    linear-gradient(180deg, rgba(19,31,53,0.55) 0%, rgba(19,31,53,0) 30%, rgba(19,31,53,0.6) 100%);
}
@media (max-width: 899px) {
  /* On narrow screens the text overlays the whole frame, so darken throughout. */
  .hero-media::after {
    background: linear-gradient(180deg, rgba(19,31,53,0.9) 0%, rgba(19,31,53,0.93) 55%, rgba(19,31,53,0.97) 100%);
  }
  .hero-media video { object-position: 60% 22%; }
}
.hero-media + .wrap { position: relative; z-index: 2; }

.media-toggle {
  position: absolute;
  right: var(--s-3);
  bottom: var(--s-3);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--rule-dark);
  border-radius: 50%;
  background: rgba(19, 31, 53, 0.6);
  color: var(--gold);
  cursor: pointer;
  transition: background-color 200ms var(--ease), border-color 200ms var(--ease);
}
.media-toggle:hover { background: rgba(19, 31, 53, 0.9); border-color: var(--gold); }
.media-toggle .ico-pause { display: block; }
.media-toggle .ico-play { display: none; }
.media-toggle[aria-pressed="true"] .ico-pause { display: none; }
.media-toggle[aria-pressed="true"] .ico-play { display: block; }
@media (min-width: 900px) { .media-toggle { right: var(--s-5); bottom: var(--s-5); } }

.hero-sm { padding-block: clamp(var(--s-5), 7vw, var(--s-7)); }
.hero-sm h1 { max-width: 20ch; }
.hero h1 { color: var(--cream); max-width: 17ch; }
.hero .lede { max-width: 56ch; margin-top: var(--s-3); }

.hero-meta {
  margin-top: var(--s-5);
  padding-top: var(--s-3);
  border-top: 1px solid var(--rule-dark);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-5);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}

/* section on dark */
.dark { background: var(--ink); color: var(--cream); }
.dark h2, .dark h3 { color: var(--cream); }
.dark p { color: rgba(255, 255, 255, 0.76); }
.navy { background: var(--navy); color: var(--cream); }
.navy h2, .navy h3 { color: var(--cream); }
.navy p { color: rgba(255, 255, 255, 0.8); }

/* ---------- the thesis line ---------- */
.thesis {
  background: var(--cream);
  border-block: 1px solid var(--gold);
  padding-block: var(--s-6);
  text-align: center;
}
.thesis p {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  line-height: 1.22;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto;
  letter-spacing: -0.015em;
}
.thesis .em { color: var(--gold-deep); font-style: italic; }
.thesis .sub {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--bronze);
  max-width: 60ch;
  margin: var(--s-3) auto 0;
  line-height: 1.6;
  letter-spacing: 0;
}

/* ---------- grids ---------- */
.grid { display: grid; gap: var(--s-4); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.split { display: grid; gap: var(--s-5); align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 0.85fr 1.15fr; gap: var(--s-6); } }
.split-even { display: grid; gap: var(--s-5); align-items: center; }
@media (min-width: 900px) { .split-even { grid-template-columns: 1fr 1fr; gap: var(--s-6); } }

/* ---------- card ---------- */
.card {
  border-top: 2px solid var(--gold);
  padding-top: var(--s-3);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 16px; }
.dark .card, .navy .card { border-top-color: var(--gold); }
.dark .card p, .navy .card p { color: rgba(255, 255, 255, 0.72); }

/* ---------- ruled list — "Where we stop", "What we prepare" ---------- */
.ruled { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }
.ruled > li {
  border-bottom: 1px solid var(--rule);
  padding-block: var(--s-3);
  display: grid;
  gap: 6px var(--s-4);
}
@media (min-width: 800px) { .ruled > li { grid-template-columns: 0.9fr 1.4fr; } }
.ruled h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); color: var(--ink); }
.ruled p { color: var(--muted); font-size: 16px; margin: 0; }
.dark .ruled, .navy .ruled { border-top-color: var(--rule-dark); }
.dark .ruled > li, .navy .ruled > li { border-bottom-color: var(--rule-dark); }
.dark .ruled h3, .navy .ruled h3 { color: var(--cream); }
.dark .ruled p, .navy .ruled p { color: rgba(255, 255, 255, 0.7); }

/* inline list of deliverables, separated by gold marks */
.inline-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap;
  gap: 10px var(--s-3);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}
.inline-list li { display: flex; align-items: baseline; gap: var(--s-3); }
.inline-list li:not(:last-child)::after { content: "\2022"; color: var(--gold); }

/* ---------- numbered steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; border-top: 1px solid var(--rule); }
.steps > li {
  counter-increment: step;
  border-bottom: 1px solid var(--rule);
  padding-block: var(--s-4);
  display: grid;
  gap: 8px var(--s-4);
  grid-template-columns: auto 1fr;
  align-items: start;
}
.steps > li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold-deep);
  line-height: 1;
  min-width: 2.2ch;
}
@media (min-width: 800px) {
  .steps > li { grid-template-columns: auto 0.8fr 1.5fr; }
}
.steps h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); }
.steps p { margin: 0; color: var(--muted); font-size: 16px; }

/* ---------- pull / callout ---------- */
.callout {
  border-left: 2px solid var(--gold);
  padding: var(--s-1) 0 var(--s-1) var(--s-3);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.4;
  color: var(--ink);
}
.dark .callout, .navy .callout { color: var(--cream); }

.note {
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: var(--s-3) var(--s-4);
}
.note p { color: var(--bronze); font-size: 15.5px; }
.note strong { color: var(--ink); }

/* ---------- figure ---------- */
figure { margin: 0; }
figure img { border-radius: 2px; }
figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.dark figcaption, .navy figcaption { color: rgba(255, 255, 255, 0.55); }

/* ---------- awaiting-asset placeholder ---------- */
.placeholder {
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  aspect-ratio: 4 / 5;
  background: repeating-linear-gradient(-45deg, #F2EDE3, #F2EDE3 10px, #EDE6D8 10px, #EDE6D8 20px);
  border: 1px dashed var(--gold-deep);
  border-radius: 2px;
  padding: var(--s-4);
  color: var(--bronze);
}
.placeholder .t {
  font-family: var(--sans);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
}
.placeholder .d { font-size: 14px; max-width: 26ch; margin: 0 auto; line-height: 1.5; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding-block: var(--s-3);
  padding-right: var(--s-5);
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  line-height: 1.3;
  color: var(--ink);
  transition: color 180ms var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-deep); }
.faq summary::after {
  content: "";
  position: absolute;
  right: 6px; top: 50%;
  width: 11px; height: 11px;
  border-right: 1.5px solid var(--gold-deep);
  border-bottom: 1.5px solid var(--gold-deep);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 220ms var(--ease);
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .answer { padding-bottom: var(--s-4); }
.faq .answer p { color: var(--muted); }
.faq summary:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

/* ---------- form ---------- */
.form { display: grid; gap: var(--s-3); }
.field { display: grid; gap: 7px; }
.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
}
.field .req { color: var(--gold-deep); }
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 13px 14px;
  min-height: 48px;
  width: 100%;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(224, 196, 140, 0.3);
}
.field .hint { font-size: 13px; color: var(--muted); }

.checks { display: flex; flex-wrap: wrap; gap: 10px var(--s-3); }
.check { display: flex; align-items: center; gap: 8px; min-height: 44px; cursor: pointer; font-size: 15px; }
.check input { width: 19px; height: 19px; min-height: 0; accent-color: var(--navy); cursor: pointer; }

.form-guard {
  border-top: 1px solid var(--rule);
  padding-top: var(--s-3);
  font-size: 14px;
  color: var(--bronze);
  font-weight: 700;
  line-height: 1.5;
}

/* ---------- contact detail block ---------- */
.details { list-style: none; margin: 0; padding: 0; }
.details li { padding-block: 13px; border-bottom: 1px solid var(--rule); display: grid; gap: 2px; }
.details .k {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--bronze);
}
.details .v { font-size: 16.5px; color: var(--text); }
.details a { color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--gold); }
.details a:hover { color: var(--gold-deep); }

/* ---------- closing strip ---------- */
.strip { background: var(--navy); color: var(--cream); padding-block: var(--s-6); text-align: center; }
.strip p { color: rgba(255,255,255,0.82); margin-inline: auto; }
.strip .h2 { color: var(--cream); margin-bottom: var(--s-3); }
.strip .btn-row { justify-content: center; margin-top: var(--s-4); }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, 0.66); padding-block: var(--s-6) var(--s-4); font-size: 14px; }
.footer a { color: rgba(255, 255, 255, 0.66); text-decoration: none; }
.footer a:hover { color: var(--gold); }
.footer-grid { display: grid; gap: var(--s-5); }
@media (min-width: 860px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer img.mark { height: 54px; width: auto; margin-bottom: var(--s-3); }
.footer h4 {
  font-family: var(--sans);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  margin: 0 0 var(--s-2);
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: 9px; }

.disclaimer {
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--rule-dark);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  max-width: none;
}
.disclaimer strong { color: rgba(255, 255, 255, 0.9); font-weight: 700; }
.colophon {
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--rule-dark);
  display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-4);
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}
.colophon ul { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* ---------- accessibility ---------- */
.skip {
  position: absolute; left: -9999px;
  background: var(--gold); color: var(--ink);
  padding: 12px 20px; z-index: 200;
  font-weight: 700; font-size: 14px;
}
.skip:focus { left: var(--s-3); top: var(--s-3); }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }
.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;
}

/* ---------- subtle scroll reveal (motion 3/10) ----------
   Content is visible by default. JavaScript adds .armed just before it starts
   observing, so if the script never runs nothing is ever hidden. */
.reveal.armed { opacity: 0; transform: translateY(12px); }
.reveal.armed.in { opacity: 1; transform: none; transition: opacity 400ms var(--ease), transform 400ms var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.armed, .reveal.armed.in { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- print ---------- */
@media print {
  .header, .topbar, .strip, .nav-toggle, .drawer { display: none; }
  body { background: #fff; font-size: 11pt; }
  .hero, .dark, .navy, .footer { background: #fff !important; color: #000 !important; }
  .hero h1, .dark h2, .navy h2, .footer { color: #000 !important; }
}
