/* ==========================================================================
   PosterUsKey — Strategy & Business Advisory
   Design system: premium boutique advisory (navy / ivory / muted gold)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --navy:        #0A1A30;
  --navy-2:      #0E2340;
  --navy-3:      #143055;
  --charcoal:    #14181F;
  --ivory:       #F7F4ED;
  --ivory-2:     #EFEADF;
  --paper:       #FFFFFF;
  --gold:        #C6996B;
  --gold-2:      #B5854F;
  --gold-ink:    #87642F;   /* darker bronze — AA-compliant for small text on light */
  --gold-soft:   rgba(198, 153, 107, 0.14);

  /* Text */
  --ink:         #1B2430;   /* body on light */
  --ink-soft:    #4A5568;   /* muted body on light */
  --ink-faint:   #7A8598;
  --on-navy:     #EDE7DB;   /* body on navy */
  --on-navy-soft:#A9B4C4;

  /* Lines */
  --hair:        rgba(198, 153, 107, 0.35);
  --hair-light:  rgba(27, 36, 48, 0.12);
  --hair-navy:   rgba(255, 255, 255, 0.12);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --section-y: clamp(4rem, 9vw, 8rem);
  --radius: 4px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.7s;

  --shadow-sm: 0 4px 18px rgba(10, 26, 48, 0.08);
  --shadow-md: 0 18px 50px rgba(10, 26, 48, 0.14);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy);
}

/* ---------- Utility ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--wide { max-width: 1340px; }
.section { padding-block: var(--section-y); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }

.display {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 1.02;
}
.h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
.lead {
  font-size: clamp(1.075rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 60ch;
}
.section-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .h2 { margin-top: 1rem; }
.section-head.center { margin-inline: auto; }

.gold { color: var(--gold-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.85rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
  line-height: 1;
}
.btn .arw { transition: transform 0.35s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn--gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-2); border-color: var(--gold-2); }

.btn--outline { border-color: var(--hair); color: var(--navy); background: transparent; }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-2); }

.btn--outline-light { border-color: rgba(255,255,255,0.35); color: #fff; background: transparent; }
.btn--outline-light:hover { border-color: var(--gold); color: var(--gold); }

.btn--ghost { padding-inline: 0; color: var(--navy); letter-spacing: 0.1em; }
.btn--ghost:hover { color: var(--gold-2); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.link-arrow .arw { transition: transform 0.35s var(--ease); }
.link-arrow:hover .arw { transform: translateX(5px); }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding-block: 1.25rem;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__logo { height: 40px; width: auto; transition: height 0.4s var(--ease); }
.brand__name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 1;
}
.brand__name b { color: var(--gold); font-weight: 600; }
.brand__tag {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-navy-soft);
  margin-top: 0.28rem;
}

.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav a:hover, .nav a.active { color: #fff; }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.nav__cta { margin-left: 0.5rem; }

/* Header scrolled state */
.site-header.scrolled {
  background: rgba(10, 26, 48, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--hair-navy), 0 10px 40px rgba(0,0,0,0.25);
  padding-block: 0.85rem;
}
.site-header.scrolled .brand__logo { height: 34px; }

/* Light header (interior pages without dark hero) */
.site-header.on-light .brand__name { color: var(--navy); }
.site-header.on-light .brand__tag { color: var(--ink-faint); }
.site-header.on-light .nav a { color: var(--ink-soft); }
.site-header.on-light .nav a:hover, .site-header.on-light .nav a.active { color: var(--navy); }
.site-header.on-light .brand__logo { filter: brightness(0.55) sepia(1) saturate(3) hue-rotate(350deg); }
.site-header.on-light.scrolled .brand__name { color: #fff; }
.site-header.on-light.scrolled .brand__tag { color: var(--on-navy-soft); }
.site-header.on-light.scrolled .nav a { color: rgba(255,255,255,0.82); }
.site-header.on-light.scrolled .nav a:hover { color: #fff; }
.site-header.on-light.scrolled .brand__logo { filter: none; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 120;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: #fff;
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
.site-header.on-light:not(.scrolled) .nav-toggle span { background: var(--navy); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); background:#fff; }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background:#fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% center;
  opacity: 0.9;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,20,38,0.96) 0%, rgba(8,20,38,0.82) 38%, rgba(8,20,38,0.35) 70%, rgba(8,20,38,0.55) 100%),
    linear-gradient(0deg, rgba(8,20,38,0.85) 0%, rgba(8,20,38,0) 45%);
}
.hero__inner { position: relative; z-index: 2; padding-block: 9rem 4rem; }
.hero__content { max-width: 60ch; }
.hero .eyebrow { color: var(--gold); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.9rem, 7.5vw, 6rem);
  margin: 1.5rem 0 1.6rem;
  line-height: 1.0;
}
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero__sub {
  color: var(--on-navy);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  max-width: 54ch;
  line-height: 1.6;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--on-navy-soft);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero__scroll .line {
  width: 1px; height: 44px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollpulse 2.2s var(--ease) infinite;
}
@keyframes scrollpulse { 0%,100%{ transform: scaleY(0.4); opacity:0.4; transform-origin: top;} 50%{ transform: scaleY(1); opacity:1; transform-origin: top;} }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: clamp(9rem, 15vw, 13rem) 0 clamp(3.5rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  right: -8%; top: -30%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(198,153,107,0.16), transparent 62%);
}
.page-hero h1 { color: #fff; font-size: clamp(2.5rem, 6vw, 4.5rem); margin: 1.3rem 0 1.2rem; position: relative; }
.page-hero .lead { color: var(--on-navy); }
.page-hero .eyebrow { color: var(--gold); }
.breadcrumb { font-size: 0.78rem; color: var(--on-navy-soft); letter-spacing: 0.04em; margin-top: 1.6rem; }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Stat bar ---------- */
.stats {
  background: var(--navy-2);
  color: #fff;
  border-top: 1px solid var(--hair-navy);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(2rem, 4vw, 3.2rem) 1.5rem;
  text-align: center;
  border-left: 1px solid var(--hair-navy);
}
.stat:first-child { border-left: none; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--gold);
  line-height: 1;
  font-weight: 600;
}
.stat__label {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-navy-soft);
}

/* ---------- Questions grid ---------- */
.questions { background: var(--paper); }
.q-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--hair-light);
  border: 1px solid var(--hair-light);
}
.q-item {
  background: var(--paper);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: background 0.35s var(--ease);
}
.q-item:hover { background: var(--ivory); }
.q-item__no {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold-ink);
  font-style: italic;
  min-width: 1.5rem;
}
.q-item p { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); line-height: 1.25; }

/* ---------- Expertise cards ---------- */
.expertise { background: var(--ivory); }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--paper);
  border: 1px solid var(--hair-light);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 52px; height: 52px;
  margin-bottom: 1.4rem;
  object-fit: contain;
}
.card__num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-ink);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.6rem;
}
.card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }
.card__link { margin-top: 1.3rem; }

/* ---------- Split / feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(198,153,107,0.25);
  border-radius: var(--radius);
  pointer-events: none;
}
.split__media--framed { padding: 0; }
.media-badge {
  position: absolute;
  bottom: 1.4rem; left: 1.4rem;
  background: rgba(10,26,48,0.9);
  color: #fff;
  padding: 1rem 1.4rem;
  border-left: 3px solid var(--gold);
  border-radius: 2px;
}
.media-badge b { font-family: var(--serif); font-size: 1.9rem; color: var(--gold); display: block; line-height: 1; }
.media-badge span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-navy-soft); }
.rule { width: 46px; height: 2px; background: var(--gold); margin: 1.5rem 0; }
.prose p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.prose p:last-child { margin-bottom: 0; }

/* Credibility list */
.cred-list { list-style: none; padding: 0; margin: 1.75rem 0 0; }
.cred-list li {
  display: flex;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--hair-light);
  color: var(--ink);
  font-size: 0.98rem;
}
.cred-list li::before { content: "—"; color: var(--gold); font-weight: 700; }
.cred-list li:last-child { border-bottom: none; }

/* ---------- Founder teaser (dark) ---------- */
.founder-teaser { background: var(--navy); color: #fff; overflow: hidden; }
.founder-teaser .split__media img { border-radius: var(--radius); }
.founder-teaser h2 { color: #fff; }
.founder-teaser .prose p { color: var(--on-navy); }
.founder-teaser .cred-list li { color: var(--on-navy); border-color: var(--hair-navy); }
.founder-teaser .founder-photo {
  position: relative;
}
.founder-teaser .founder-photo::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(transparent, rgba(198,153,107,0.10));
  border-radius: var(--radius);
}
.founder-name { font-family: var(--serif); font-size: 1.6rem; color: #fff; margin-top: 0.5rem; }
.founder-role { color: var(--gold); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 0.3rem; }
.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold);
  margin-top: 1.5rem;
}

/* ---------- Case studies ---------- */
.impact { background: var(--paper); }
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}
.case-card {
  border: 1px solid var(--hair-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.case-card__media { aspect-ratio: 3/2; overflow: hidden; }
.case-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.case-card:hover .case-card__media img { transform: scale(1.05); }
.case-card__body { padding: clamp(1.5rem, 2.5vw, 2rem); flex: 1; display: flex; flex-direction: column; }
.tag {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-ink);
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.case-card h3 { font-size: 1.35rem; margin-bottom: 0.8rem; }
.case-card p { color: var(--ink-soft); font-size: 0.95rem; }

/* CSR blocks (challenge/strategy/result) */
.csr { margin-top: 1.2rem; display: grid; gap: 0.9rem; }
.csr__item { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: baseline; }
.csr__k {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  border: 1px solid var(--hair);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  white-space: nowrap;
}
.csr__item p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }
.result .csr__k { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ---------- Accordion (expertise detail) ---------- */
.accordion { border-top: 1px solid var(--hair-light); }
.acc-item { border-bottom: 1px solid var(--hair-light); }
.acc-head {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: clamp(1.5rem, 3vw, 2.25rem) 3rem clamp(1.5rem, 3vw, 2.25rem) 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}
.acc-head__no { font-family: var(--serif); font-style: italic; color: var(--gold-ink); font-size: 1.1rem; min-width: 2.5rem; }
.acc-head__title { font-family: var(--serif); font-size: clamp(1.35rem, 2.6vw, 1.95rem); color: var(--navy); font-weight: 600; flex: 1; transition: color 0.3s var(--ease); }
.acc-head:hover .acc-head__title { color: var(--gold-2); }
.acc-head__icon {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
}
.acc-head__icon::before, .acc-head__icon::after {
  content: ""; position: absolute; background: var(--gold-2);
  left: 50%; top: 50%;
}
.acc-head__icon::before { width: 16px; height: 2px; transform: translate(-50%,-50%); }
.acc-head__icon::after { width: 2px; height: 16px; transform: translate(-50%,-50%); transition: transform 0.35s var(--ease); }
.acc-item.open .acc-head__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.acc-body { overflow: hidden; height: 0; transition: height 0.45s var(--ease); }
.acc-body__inner { padding: 0 0 2.25rem 4rem; max-width: 70ch; }
.acc-body__inner > p { color: var(--ink-soft); margin-bottom: 1.25rem; }
.acc-services { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.6rem 1.5rem; }
.acc-services li { display: flex; gap: 0.6rem; font-size: 0.94rem; color: var(--ink); }
.acc-services li::before { content: "✦"; color: var(--gold); font-size: 0.7rem; margin-top: 0.35rem; }

/* ---------- Insights ---------- */
.insights { background: var(--ivory); }
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; }
.post-card {
  background: var(--paper);
  border: 1px solid var(--hair-light);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-card__media { aspect-ratio: 16/10; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.post-card h3 { font-size: 1.3rem; margin-bottom: 0.7rem; line-height: 1.2; }
.post-card p { color: var(--ink-soft); font-size: 0.94rem; flex: 1; }
.post-meta { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.9rem; }
.post-card__body .link-arrow { margin-top: 1.2rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  width: 40%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(198,153,107,0.14), transparent 60%);
}
.cta-band::before { left: -10%; top: -30%; }
.cta-band::after { right: -10%; bottom: -40%; }
.cta-band .inner { position: relative; z-index: 1; max-width: 62ch; margin-inline: auto; }
.cta-band h2 { color: #fff; margin: 1rem 0 1.2rem; }
.cta-band p { color: var(--on-navy); margin-bottom: 2rem; }
.cta-band .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Article ---------- */
.article { background: var(--paper); }
.article__body { max-width: 72ch; margin-inline: auto; }
.article__body h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 2.5rem 0 1rem; }
.article__body h3 { font-size: 1.35rem; margin: 2rem 0 0.75rem; }
.article__body p { color: var(--ink); margin-bottom: 1.35rem; font-size: 1.1rem; line-height: 1.75; }
.article__body ul { margin: 0 0 1.35rem 1.2rem; color: var(--ink); }
.article__body li { margin-bottom: 0.6rem; line-height: 1.7; }
.article__body blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.75rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1.35;
}
.article__lead { font-size: 1.3rem !important; color: var(--ink-soft) !important; font-family: var(--serif); line-height: 1.5 !important; }

/* ---------- Contact ---------- */
.contact { background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact-info .rule { margin: 1.25rem 0 2rem; }
.contact-channels { list-style: none; padding: 0; margin-top: 2rem; display: grid; gap: 1.5rem; }
.contact-channels li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-channels .ci {
  width: 44px; height: 44px;
  border: 1px solid var(--hair);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-2);
  flex-shrink: 0;
}
.contact-channels .ci svg { width: 20px; height: 20px; }
.contact-channels .k { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.contact-channels .v { font-size: 1.05rem; color: var(--navy); font-weight: 500; }
.contact-channels a.v:hover { color: var(--gold-2); }

.form {
  background: var(--paper);
  border: 1px solid var(--hair-light);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.field label .req { color: var(--gold-2); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--hair-light);
  border-radius: var(--radius);
  background: var(--ivory);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--paper);
}
.form__note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 1rem; display: flex; gap: 0.5rem; align-items: center; }
.form__note svg { width: 15px; height: 15px; color: var(--gold-2); flex-shrink: 0; }
.form button[type="submit"] { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: var(--on-navy); }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-block: clamp(3.5rem, 6vw, 5rem) 3rem;
}
.footer-brand .brand__name { color: #fff; }
.footer-about { margin-top: 1.25rem; font-size: 0.94rem; color: var(--on-navy-soft); max-width: 34ch; }
.footer-col h3 {
  color: #fff;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.footer-col a { font-size: 0.94rem; color: var(--on-navy-soft); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.94rem; color: var(--on-navy-soft); margin-bottom: 0.7rem; }
.footer-contact a:hover { color: var(--gold); }
.social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social a {
  width: 40px; height: 40px;
  border: 1px solid var(--hair-navy);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--on-navy-soft);
  transition: all 0.3s var(--ease);
}
.social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--hair-navy);
  padding-block: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--ink-faint);
}
.footer-bottom .signature-quote { font-family: var(--serif); font-style: italic; color: var(--gold); }
.footer-bottom a { color: var(--on-navy-soft); transition: color 0.3s var(--ease); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Floating action buttons (WhatsApp + back-to-top) ---------- */
.wa-float, .to-top {
  position: fixed;
  right: 1.5rem;
  z-index: 120;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy-2);
  border: 1px solid var(--hair);
  color: var(--gold);
  box-shadow: 0 10px 30px rgba(6,14,26,0.45);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.wa-float { bottom: 1.5rem; }
.to-top {
  bottom: calc(1.5rem + 54px + 0.75rem);
  opacity: 0; visibility: hidden; transform: translateY(10px);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.wa-float:hover, .to-top.show:hover {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
  transform: translateY(-3px);
}
.wa-float svg { width: 27px; height: 27px; }
.to-top svg { width: 22px; height: 22px; }

/* Tooltip label on the floating buttons */
.wa-float::after, .to-top::after {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--navy);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--hair);
  box-shadow: 0 8px 22px rgba(6,14,26,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.wa-float::after { content: "WhatsApp"; }
.to-top::after { content: "Back to top"; }
.wa-float:hover::after, .wa-float:focus-visible::after,
.to-top.show:hover::after, .to-top:focus-visible::after {
  opacity: 1; transform: translateY(-50%) translateX(0);
}
@media (hover: none) { .wa-float::after, .to-top::after { display: none; } }

/* =========================================================================
   ACCESSIBILITY CONTRAST FIXES (WCAG AA)
   ========================================================================= */
/* Nav CTA: navy text on gold (was inheriting near-white from .nav a) */
.nav a.nav__cta, .nav a.btn--gold { color: var(--navy); }
/* Dark sections keep the lighter, brighter gold for their eyebrows */
.founder-teaser .eyebrow, .reach .eyebrow, .stats .eyebrow, .cta-band .eyebrow { color: var(--gold); }
/* Interactive gold text on light surfaces uses the darker bronze */
.acc-head:hover .acc-head__title,
.acc-head:active .acc-head__title,
.btn--outline:hover,
.btn--ghost:hover,
.contact-channels a.v:hover,
.card__link:hover { color: var(--gold-ink); }
/* Inline text links: distinguishable by more than colour */
.article__body a, .prose a, .footer-bottom a, .footer-contact p a, .form-status a, .breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.footer-bottom a { color: var(--on-navy); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--hair-navy); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split__media { order: 0; }
  .founder-teaser .split__media { max-width: 460px; margin-inline: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.75rem;
    padding: 2rem 2.5rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.4);
  }
  .nav-open .nav { transform: translateX(0); }
  .nav a:not(.btn) { color: rgba(255,255,255,0.85) !important; font-size: 1.05rem; }
  .nav__cta { margin-left: 0; margin-top: 0.5rem; }
  .site-header.on-light .nav a:not(.btn) { color: rgba(255,255,255,0.85) !important; }
  body.nav-open { overflow: hidden; }
  /* When the menu is open, drop the scrolled header's backdrop-filter. A
     backdrop-filter/filter on the header creates a containing block, which
     would trap the position:fixed nav panel inside the short header box after
     scrolling. Removing it lets the panel size to the full viewport again. */
  body.nav-open .site-header.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10, 26, 48, 0.98);
  }
  .nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(6,14,26,0.55);
    backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
    z-index: 95;
  }
  .nav-open .nav-backdrop { opacity: 1; visibility: visible; }
}

@media (max-width: 560px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-left: none !important; border-bottom: 1px solid var(--hair-navy); }
  .stat:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .brand__tag { display: none; }
  .hero__actions .btn, .cta-band .btn { width: 100%; justify-content: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__scroll .line { animation: none; }
  /* Kill enhancement motion for reduced-motion users */
  .hero-title .tl > span { transform: none !important; }
  .page-intro { display: none !important; }
  .cursor-dot, .cursor-ring { display: none !important; }
  .marquee__track { animation: none !important; }
  .reveal-mask > * { transform: none !important; clip-path: none !important; }
  .reach__line { stroke-dashoffset: 0 !important; }
  .page-hero .eyebrow, .page-hero h1, .page-hero .lead, .page-hero .breadcrumb { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* =========================================================================
   PREMIUM ENHANCEMENTS — dependency-free (CSS + IntersectionObserver)
   ========================================================================= */

/* ---- Scroll progress bar ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  z-index: 200;
  will-change: transform;
  pointer-events: none;
}

/* ---- Page-load intro curtain ---- */
.page-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: grid;
  place-items: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.page-intro.done { opacity: 0; visibility: hidden; }
.page-intro__mark {
  width: 84px; height: 84px;
  opacity: 0;
  transform: translateY(8px) scale(0.94);
  animation: introMark 1s var(--ease) forwards;
}
.page-intro__line {
  position: absolute;
  bottom: 34%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: introLine 1.1s var(--ease) 0.15s forwards;
}
@keyframes introMark { to { opacity: 1; transform: none; } }
@keyframes introLine { to { width: min(260px, 60vw); } }
body.intro-active { overflow: hidden; }

/* ---- Custom cursor (desktop pointer only) ---- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9000;
  mix-blend-mode: normal;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.cursor-dot { width: 6px; height: 6px; background: var(--gold); margin: -3px 0 0 -3px; }
.cursor-ring {
  width: 38px; height: 38px; margin: -19px 0 0 -19px;
  border: 1px solid rgba(198,153,107,0.55);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), margin 0.25s var(--ease), background 0.25s var(--ease), opacity 0.3s var(--ease);
}
.cursor-ready .cursor-dot, .cursor-ready .cursor-ring { opacity: 1; }
.cursor-hover .cursor-ring {
  width: 60px; height: 60px; margin: -30px 0 0 -30px;
  background: rgba(198,153,107,0.10);
}
.cursor-hover .cursor-dot { opacity: 0; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ---- Magnetic buttons ---- */
.btn.is-magnetic { will-change: transform; }

/* ---- Gold button sheen ---- */
.btn--gold { position: relative; overflow: hidden; }
.btn--gold::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg);
  transition: none;
}
.btn--gold:hover::after { animation: sheen 0.85s var(--ease); }
@keyframes sheen { to { left: 130%; } }

/* ---- Cinematic hero ---- */
.hero__bg img { will-change: transform; }
.hero__glow {
  position: absolute;
  z-index: 1;
  width: 60vw; max-width: 760px; aspect-ratio: 1;
  right: 8%; top: 42%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(198,153,107,0.22), rgba(198,153,107,0.06) 42%, transparent 66%);
  pointer-events: none;
  animation: glowPulse 7s var(--ease) infinite;
}
@keyframes glowPulse { 0%,100% { opacity: 0.65; transform: translateY(-50%) scale(1); } 50% { opacity: 1; transform: translateY(-50%) scale(1.08); } }

.hero-title { }
.hero-title .tl { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero-title .tl > span {
  display: block;
  transform: translateY(115%);
  animation: lineUp 0.95s var(--ease) forwards;
}
.hero-title .tl:nth-child(1) > span { animation-delay: 0.15s; }
.hero-title .tl:nth-child(2) > span { animation-delay: 0.28s; }
.hero-title .tl:nth-child(3) > span { animation-delay: 0.41s; }
@keyframes lineUp { to { transform: none; } }
/* Stagger the hero supporting elements */
.hero .eyebrow, .hero__sub, .hero__actions { opacity: 0; animation: fadeUp 0.9s var(--ease) forwards; }
.hero .eyebrow { animation-delay: 0.05s; }
.hero__sub { animation-delay: 0.55s; }
.hero__actions { animation-delay: 0.68s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* ---- Interior page-hero entrance ---- */
.page-hero .eyebrow { opacity: 0; animation: fadeUp 0.7s var(--ease) 0.05s forwards; }
.page-hero h1 { opacity: 0; animation: fadeUp 0.8s var(--ease) 0.15s forwards; }
.page-hero .lead { opacity: 0; animation: fadeUp 0.8s var(--ease) 0.28s forwards; }
.page-hero .breadcrumb { opacity: 0; animation: fadeUp 0.8s var(--ease) 0.4s forwards; }

/* ---- Mask reveal variant (for section heads) ---- */
.reveal-mask > * { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-mask.in > * { opacity: 1; transform: none; }
.reveal-mask.in > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-mask.in > *:nth-child(3) { transition-delay: 0.16s; }

/* ---- Credentials marquee ---- */
.marquee {
  background: var(--navy-2);
  border-block: 1px solid var(--hair-navy);
  overflow: hidden;
  padding-block: 1.1rem;
  position: relative;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 12%; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--navy-2), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--navy-2), transparent); }
.marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding-inline: 2rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--on-navy);
  white-space: nowrap;
}
.marquee__item::after { content: "✦"; color: var(--gold); font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- Regional reach map ---- */
.reach { background: var(--navy); color: #fff; overflow: hidden; }
.reach__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.reach h2 { color: #fff; }
.reach .prose p { color: var(--on-navy); }
.reach__markets { list-style: none; padding: 0; margin: 1.75rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem 1.5rem; }
.reach__markets li {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.95rem; color: var(--on-navy);
  padding: 0.35rem 0; cursor: default;
  transition: color 0.3s var(--ease);
}
.reach__markets li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(198,153,107,0.5); }
.reach__markets li.hot { color: #fff; }
.reach__map { position: relative; }
.reach__svg { width: 100%; height: auto; overflow: visible; }
.reach__line { fill: none; stroke: var(--gold); stroke-width: 1; opacity: 0.5; stroke-dasharray: var(--len,600); stroke-dashoffset: var(--len,600); transition: stroke-dashoffset 1.4s var(--ease); }
.reach.in .reach__line { stroke-dashoffset: 0; }
.reach__node { cursor: pointer; }
.reach__node circle.dot { fill: var(--gold); transition: r 0.25s var(--ease); }
.reach__node circle.halo { fill: rgba(198,153,107,0.25); transform-box: fill-box; transform-origin: center; animation: nodePulse 2.6s var(--ease) infinite; }
.reach__node.hub circle.dot { fill: #fff; }
.reach__node .lbl { fill: #fff; font-family: var(--sans); font-size: 13px; font-weight: 500; opacity: 0; transition: opacity 0.25s var(--ease); paint-order: stroke; stroke: rgba(8,20,38,0.9); stroke-width: 4px; }
.reach__node:hover circle.dot, .reach__node:focus-visible circle.dot { r: 8; }
.reach__node:hover .lbl, .reach__node:focus-visible .lbl { opacity: 1; }
.reach__node:focus-visible { outline: none; }
@keyframes nodePulse { 0% { transform: scale(0.8); opacity: 0.5; } 70% { transform: scale(2.4); opacity: 0; } 100% { opacity: 0; } }

/* ---- Card lift refinement (subtle scale on media) ---- */
.card, .case-card, .post-card { will-change: transform; }

@media (max-width: 900px) {
  .reach__grid { grid-template-columns: 1fr; }
  .reach__map { max-width: 520px; margin-inline: auto; order: -1; }
}
@media (max-width: 500px) {
  .reach__markets { grid-template-columns: 1fr; }
  .marquee__item { font-size: 1.05rem; padding-inline: 1.4rem; }
}

/* =========================================================================
   REDESIGN-AUDIT POLISH — accessibility, texture, typographic finishing
   ========================================================================= */

/* ---- Accessibility: consistent focus-visible rings ---- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.reach__node:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.site-header.scrolled .nav a:focus-visible,
.hero a:focus-visible,
.cta-band a:focus-visible,
.founder-teaser a:focus-visible,
.reach a:focus-visible { outline-color: var(--gold); }
/* Mouse users who aren't keyboard-navigating don't need the ring */
:focus:not(:focus-visible) { outline: none; }

/* ---- Pressed / active feedback ---- */
.btn { transition: all 0.35s var(--ease), transform 0.12s var(--ease); }
.btn:active { transform: translateY(1px) scale(0.985); }
.q-item:active, .card:active, .case-card:active, .post-card:active { transform: translateY(0); }
.acc-head:active .acc-head__title { color: var(--gold-2); }

/* ---- Typographic finishing ---- */
h1, h2, h3, .display, .h2, .h3, .hero h1, .page-hero h1 { text-wrap: balance; }
p, .lead, .prose p, .article__body p, .hero__sub { text-wrap: pretty; }
.stat__num, .media-badge b, .csr__k, .footer-bottom { font-variant-numeric: tabular-nums; }

/* ---- Subtle grain overlay (breaks digital flatness) ---- */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { .grain-overlay { display: none; } }

/* ---- Skip-to-content link ---- */
.skip-link {
  position: fixed;
  top: 0; left: 50%;
  transform: translate(-50%, -140%);
  z-index: 10000;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: transform 0.3s var(--ease);
}
.skip-link:focus-visible { transform: translate(-50%, 0); outline: none; }
[id="main"]:focus { outline: none; }

