:root {
  --navy-950: #071522;
  --navy-900: #0b1d2d;
  --navy-800: #123047;
  --navy-700: #19445f;
  --gold: #bf9b5f;
  --gold-light: #ddc18d;
  --ink: #17232d;
  --muted: #63717b;
  --line: #dce1e3;
  --paper: #f5f5f1;
  --white: #ffffff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: relative;
  z-index: 20;
  background: var(--navy-950);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 31px;
  height: 39px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font: 18px/1 var(--serif);
}
.brand-name { font-family: var(--serif); font-size: 22px; line-height: 1; }
.brand-sub {
  display: block;
  margin-top: 5px;
  color: #aebac2;
  font: 9px/1 var(--sans);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  position: relative;
  color: #dce3e7;
  font-size: 13px;
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after { transform: scaleX(1); }
.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(221,193,141,.7);
  color: var(--gold-light) !important;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.nav-cta:hover, .nav-cta.active { background: var(--gold); border-color: var(--gold); color: var(--navy-950) !important; }
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  background: transparent;
  cursor: pointer;
  font-size: 21px;
}

.hero {
  min-height: min(670px, calc(100vh - 130px));
  color: white;
  display: flex;
  align-items: flex-end;
  position: relative;
  background: linear-gradient(90deg, rgba(7,21,34,.97) 0%, rgba(7,21,34,.85) 40%, rgba(7,21,34,.28) 75%), url("assets/boardroom-hero.png") center/cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255,255,255,.25);
}
.hero-content { position: relative; z-index: 1; max-width: 760px; padding: 100px 0 86px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
h1, h2, h3 { margin-top: 0; font-family: var(--serif); font-weight: 400; line-height: 1.08; }
h1 { max-width: 750px; margin-bottom: 24px; font-size: clamp(46px, 6vw, 76px); }
h2 { margin-bottom: 24px; font-size: clamp(34px, 4vw, 53px); }
h3 { margin-bottom: 12px; font-size: 25px; }
.hero p { max-width: 610px; margin: 0 0 34px; color: #d5dde2; font-size: 18px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--navy-950);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: .2s ease;
}
.button:hover { background: var(--gold-light); border-color: var(--gold-light); }
.button-outline { margin-left: 10px; background: transparent; color: white; }
.button-outline:hover { color: var(--navy-950); }

.section { padding: 100px 0; }
.section-sm { padding: 72px 0; }
.section-paper { background: var(--paper); }
.section-navy { background: var(--navy-900); color: white; }
.intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 12%; align-items: start; }
.intro-copy { color: var(--muted); font-size: 18px; }
.intro-copy p:first-child { margin-top: 0; color: var(--ink); font-size: 22px; line-height: 1.5; }
.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--navy-700);
  border-bottom: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.content-block-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.content-block-link:hover h1,
.content-block-link:hover h2,
.content-block-link:hover h3 { color: var(--gold); }
.content-block-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}
.section-navy .text-link { color: var(--gold-light); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cfd5d7; }
.service-card { min-height: 290px; padding: 38px 32px 34px 0; border-bottom: 1px solid #cfd5d7; }
.service-card:not(:nth-child(3n+1)) { padding-left: 32px; border-left: 1px solid #cfd5d7; }
.service-number { margin-bottom: 50px; color: var(--gold); font: 12px/1 var(--sans); letter-spacing: 1px; }
.service-card p { color: var(--muted); font-size: 14px; }
.services-grid-pillars .service-card:nth-child(4) { grid-column: 1 / 2; }
.services-grid-pillars .service-card:nth-child(5) { grid-column: 2 / 3; }
.service-arrow { color: var(--gold); font-size: 22px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 24px 34px; border-left: 1px solid rgba(255,255,255,.18); }
.stat:first-child { padding-left: 0; border: 0; }
.stat strong { display: block; color: var(--gold-light); font: 42px/1 var(--serif); }
.stat span { display: block; margin-top: 12px; color: #b8c3ca; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }

.insights-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 24px; }
.insight { padding-top: 20px; border-top: 2px solid var(--navy-800); }
.insight-featured { padding: 32px; background: var(--navy-900); color: white; border-top-color: var(--gold); }
.tag { display: block; margin-bottom: 46px; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.insight p { color: var(--muted); font-size: 14px; }
.insight-featured p { color: #bfc9cf; }
.date { display: block; margin-top: 30px; color: #87949c; font-size: 11px; text-transform: uppercase; }

.page-hero { padding: 94px 0 86px; background: var(--navy-900); color: white; }
.page-hero h1 { max-width: 900px; font-size: clamp(44px, 6vw, 70px); }
.page-hero p { max-width: 700px; color: #bdc8ce; font-size: 18px; }
.page-hero .eyebrow { margin-bottom: 28px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; }
.content-copy p { color: var(--muted); }
.content-copy .lead { color: var(--ink); font: 25px/1.45 var(--serif); }
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.principle { padding: 34px; background: white; }
.principle small { color: var(--gold); font-weight: 700; }
.principle p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.detail-list { border-top: 1px solid var(--line); }
.detail-item { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.detail-item span { color: var(--gold); font-size: 12px; }
.detail-item h3 { font-size: 22px; }
.detail-item p { margin-bottom: 0; color: var(--muted); }

.services-intro { padding-bottom: 82px; }
.service-index { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-index-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.service-index a {
  min-height: 126px;
  padding: 27px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  border-left: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}
.service-index a:last-child { border-right: 1px solid var(--line); }
.service-index a:hover { color: var(--navy-700); background: white; }
.service-index span { color: var(--gold); font-size: 11px; font-weight: 700; }

.service-family { padding: 88px 0; scroll-margin-top: 82px; }
.service-family-layout { display: grid; grid-template-columns: minmax(270px, .82fr) minmax(0, 1.55fr); gap: 10%; align-items: start; }
.service-family-heading { position: sticky; top: 112px; }
.service-family-heading > span { display: block; margin-bottom: 42px; color: var(--gold); font-size: 12px; }
.service-family-heading h2 { margin-bottom: 20px; font-size: clamp(34px, 4vw, 50px); }
.service-family-heading > p:last-child { max-width: 390px; color: var(--muted); font-size: 15px; }
.service-offerings { border-top: 1px solid var(--line); }
.service-offerings article { padding: 28px 0 30px; border-bottom: 1px solid var(--line); }
.service-offerings h3 { margin-bottom: 11px; font-size: 22px; }
.service-offerings p { max-width: 780px; margin: 0; color: var(--muted); font-size: 15px; }
.quote { margin: 0; padding-left: 28px; border-left: 2px solid var(--gold); font: 31px/1.35 var(--serif); }

.arete-intro, .leadership-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  align-items: end;
  margin-bottom: 64px;
}
.arete-intro > p { margin: 0 0 24px; color: #b8c3ca; font-size: 18px; }
.arete-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 10%; align-items: center; }
.arete-wheel {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  isolation: isolate;
}
.arete-wheel::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191,155,95,.08), transparent 63%);
  filter: blur(18px);
  z-index: -1;
}
.arete-wheel-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.wheel-orbit {
  fill: none;
  stroke: rgba(221,193,141,.34);
  vector-effect: non-scaling-stroke;
}
.wheel-orbit-outer { stroke-width: 1; }
.wheel-orbit-dashed { stroke-width: .7; stroke-dasharray: 1 9; stroke-linecap: round; }
.wheel-orbit-inner { stroke-width: 1; stroke: rgba(255,255,255,.18); }
.wheel-arc {
  fill: #183148;
  stroke: #071522;
  stroke-width: 4;
  transition: fill .3s ease, filter .3s ease, opacity .3s ease;
}
.arc-monitoring { fill: #1a354d; }
.arc-implementation { fill: #142b40; }
.arc-evidence { fill: #10263a; }
.wheel-core { fill: #091927; stroke: rgba(221,193,141,.55); stroke-width: 1.5; }
.wheel-crosshair {
  fill: none;
  stroke: rgba(221,193,141,.65);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
.arete-wheel[data-active="governance"] .arc-governance,
.arete-wheel[data-active="monitoring"] .arc-monitoring,
.arete-wheel[data-active="implementation"] .arc-implementation,
.arete-wheel[data-active="evidence"] .arc-evidence {
  fill: #a88751;
  filter: drop-shadow(0 0 12px rgba(191,155,95,.22));
}
.arete-center {
  position: absolute;
  inset: 29%;
  z-index: 3;
  display: grid;
  place-content: center;
  text-align: center;
}
.arete-center strong { color: white; font: 54px/1 var(--serif); }
.arete-center span { margin-top: 14px; color: #aebac2; font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase; }
.arete-segment {
  position: absolute;
  z-index: 4;
  border: 0;
  background: transparent;
  color: #d7e0e5;
  cursor: pointer;
  font: 15px/1.2 var(--sans);
  letter-spacing: .2px;
  text-align: center;
  opacity: .72;
  transition: color .2s ease, opacity .2s ease, transform .2s ease;
}
.arete-segment small {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: 1.4px;
}
.arete-segment:hover, .arete-segment.active { color: white; opacity: 1; transform: scale(1.03); }
.arete-segment:focus { outline: none; }
.arete-segment:focus-visible { outline: 1px solid var(--gold-light); outline-offset: 4px; }
.segment-governance { top: 10.5%; left: 50%; transform: translateX(-50%); }
.segment-governance:hover, .segment-governance.active { transform: translateX(-50%) scale(1.03); }
.segment-monitoring { top: 50%; right: 7.5%; transform: translateY(-50%); }
.segment-monitoring:hover, .segment-monitoring.active { transform: translateY(-50%) scale(1.03); }
.segment-implementation { bottom: 10.5%; left: 50%; transform: translateX(-50%); }
.segment-implementation:hover, .segment-implementation.active { transform: translateX(-50%) scale(1.03); }
.segment-evidence { top: 50%; left: 7%; transform: translateY(-50%); }
.segment-evidence:hover, .segment-evidence.active { transform: translateY(-50%) scale(1.03); }
.arete-detail { min-height: 440px; padding: 40px 0 40px 40px; border-left: 1px solid rgba(255,255,255,.2); }
.arete-index { display: block; margin-bottom: 52px; color: var(--gold-light); font-size: 11px; letter-spacing: 1.5px; }
.arete-detail h3 { font-size: 38px; }
.arete-lead { max-width: 470px; color: #d1d9de; font-size: 18px; }
.arete-detail ul { margin: 28px 0 0; padding: 0; list-style: none; color: #9eabb3; }
.arete-detail li { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 14px; }

.leadership-heading > p { margin: 0 0 24px; color: var(--muted); font-size: 17px; }
.leadership-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #cfd5d7; }
.leader { display: grid; grid-template-columns: 180px 1fr; gap: 28px; padding: 34px 34px 34px 0; border-bottom: 1px solid #cfd5d7; }
.leader:nth-child(even) { padding-left: 34px; border-left: 1px solid #cfd5d7; }
.leader-image { width: 180px; aspect-ratio: 4 / 5; overflow: hidden; background: var(--navy-800); }
.leader-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.82); }
.leader-copy { align-self: center; }
.leader-copy span { display: block; margin-bottom: 16px; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; }
.leader-copy h3 { font-size: 27px; }
.leader-copy p { margin: 0; color: var(--muted); font-size: 14px; }
.credibility { display: grid; grid-template-columns: .7fr .8fr .9fr 1.6fr; gap: 0; align-items: center; }
.credibility > div { min-height: 100px; padding: 10px 28px; border-right: 1px solid rgba(255,255,255,.18); }
.credibility > div:first-child { padding-left: 0; }
.credibility strong { display: block; color: var(--gold-light); font: 35px/1 var(--serif); }
.credibility span { display: block; margin-top: 12px; color: #aebac2; font-size: 10px; letter-spacing: .7px; text-transform: uppercase; }
.credibility p { margin: 0; padding-left: 34px; color: #aebac2; font-size: 13px; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10%; }
.contact-details { padding-top: 20px; border-top: 1px solid var(--line); }
.contact-details div { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-details small { display: block; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #abb4b9;
  border-radius: 0;
  padding: 12px 0;
  background: transparent;
  color: var(--ink);
  outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); }
.field textarea { min-height: 120px; resize: vertical; }

.cta-band { background: var(--gold); color: var(--navy-950); }
.cta-inner { min-height: 220px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { max-width: 650px; margin: 0; font-size: 40px; }
.cta-band .button { border-color: var(--navy-950); background: var(--navy-950); color: white; }
.site-footer { padding: 70px 0 28px; background: var(--navy-950); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 8%; padding-bottom: 60px; }
.footer-copy { max-width: 430px; color: #9eabb3; font-size: 14px; }
.footer-title { margin-bottom: 18px; color: var(--gold-light); font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; color: #c7d0d5; font-size: 13px; }
.footer-links a { transition: color .2s ease; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #73838d; font-size: 11px; }
.footer-bottom a { transition: color .2s ease; }
.footer-bottom a:hover { color: var(--gold-light); }

@media (max-width: 900px) {
  .container { width: min(100% - 32px, 720px); }
  .menu-button { display: grid; place-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    padding: 24px;
    background: var(--navy-950);
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.nav-cta)::after { right: auto; bottom: -4px; width: 32px; }
  .nav-cta { text-align: center; }
  .hero { min-height: min(620px, calc(100vh - 120px)); background-position: 62% center; }
  .intro-grid, .two-col, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid-pillars .service-card:nth-child(4),
  .services-grid-pillars .service-card:nth-child(5) { grid-column: auto; }
  .service-index-grid { grid-template-columns: repeat(2, 1fr); }
  .service-index a { border-bottom: 1px solid var(--line); }
  .service-family-layout { gap: 7%; }
  .service-card:not(:nth-child(3n+1)) { padding-left: 0; border-left: 0; }
  .service-card:nth-child(even) { padding-left: 28px; border-left: 1px solid #cfd5d7; }
  .stats { grid-template-columns: 1fr 1fr; gap: 35px 0; }
  .stat:nth-child(3) { padding-left: 0; border-left: 0; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .insight-featured { grid-column: 1 / -1; }
  .arete-layout { grid-template-columns: 1fr; gap: 55px; }
  .arete-wheel { margin: 0 auto; }
  .arete-detail { min-height: 0; padding: 32px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
  .leadership-grid { grid-template-columns: 1fr; }
  .leader:nth-child(even) { padding-left: 0; border-left: 0; }
  .credibility { grid-template-columns: repeat(3, 1fr); }
  .credibility p { grid-column: 1 / -1; padding: 30px 0 0; }
}

@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .brand-name { font-size: 18px; }
  .hero-content { padding: 50px 0 40px; }
  .hero h1 { margin-bottom: 18px; font-size: 42px; line-height: 1.03; }
  .hero p { margin-bottom: 24px; font-size: 16px; }
  .hero .eyebrow { margin-bottom: 18px; }
  .hero-actions { display: grid; gap: 10px; max-width: 260px; }
  .button-outline { margin-left: 0; }
  .services-grid, .insights-grid, .principles, .contact-form { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(even) { min-height: 0; padding: 28px 0; border-left: 0; }
  .service-number { margin-bottom: 28px; }
  .stats { grid-template-columns: 1fr; }
  .stat, .stat:nth-child(3) { padding: 22px 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .stat:first-child { border-top: 0; }
  .insight-featured { grid-column: auto; }
  .detail-item { grid-template-columns: 55px 1fr; }
  .services-intro { padding-bottom: 58px; }
  .service-index-grid { grid-template-columns: 1fr; }
  .service-index a {
    min-height: 0;
    padding: 18px 0;
    flex-direction: row;
    justify-content: flex-start;
    gap: 18px;
    border-left: 0;
  }
  .service-index a:last-child { border-right: 0; border-bottom: 0; }
  .service-family { padding: 64px 0; }
  .service-family-layout { grid-template-columns: 1fr; gap: 40px; }
  .service-family-heading { position: static; }
  .service-family-heading > span { margin-bottom: 24px; }
  .service-family-heading h2 { font-size: 36px; }
  .field-full { grid-column: auto; }
  .cta-inner { padding: 50px 0; align-items: flex-start; flex-direction: column; }
  .cta-inner h2 { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { gap: 10px; flex-direction: column; }
  .arete-intro, .leadership-heading { grid-template-columns: 1fr; gap: 12px; margin-bottom: 42px; }
  .arete-wheel { width: 100%; }
  .arete-center strong { font-size: 38px; }
  .arete-center span { font-size: 9px; }
  .arete-segment { font-size: 11px; }
  .arete-segment small { margin-bottom: 4px; font-size: 8px; }
  .segment-monitoring { right: 6%; }
  .segment-evidence { left: 5%; max-width: 70px; }
  .arete-index { margin-bottom: 30px; }
  .leadership-grid { border-top: 0; }
  .leader, .leader:nth-child(even) { grid-template-columns: 120px 1fr; gap: 20px; padding: 26px 0; border-left: 0; border-top: 1px solid #cfd5d7; }
  .leader-image { width: 120px; }
  .leader-copy h3 { font-size: 22px; }
  .leader-copy p { font-size: 13px; }
  .credibility { grid-template-columns: 1fr; }
  .credibility > div, .credibility > div:first-child { min-height: 0; padding: 20px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .credibility p { grid-column: auto; }
}

/* ==========================================================================
   COOKIE CONSENT BANNER & PREFERENCES PANEL STYLES
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy-950);
  color: var(--white);
  border-top: 1px solid rgba(221, 193, 141, 0.4);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  padding: 24px 0;
  animation: slideUpConsent 0.3s ease-out;
}

@keyframes slideUpConsent {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
  margin: 0 0 8px;
}

.cookie-banner p {
  color: #dce3e7;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 12px;
  max-width: 960px;
}

.cookie-links {
  margin-top: 4px;
}

.cookie-links a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.cookie-links a:hover {
  color: var(--white);
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-banner-actions .button,
.cookie-banner-actions .button-outline,
.cookie-banner-actions .button-manage {
  margin-left: 0;
}

.cookie-banner-actions .button-manage {
  background: transparent;
  border-color: rgba(221, 193, 141, 0.6);
  color: var(--gold-light);
}

.cookie-banner-actions .button-manage:hover {
  background: rgba(191, 155, 95, 0.15);
  border-color: var(--gold);
  color: var(--white);
}

/* Second Layer — Preferences Modal (Light Mode) */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(7, 21, 34, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cookie-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cookie-modal {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px;
  color: var(--ink);
  box-shadow: none;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s ease;
}

.cookie-modal-close:hover {
  color: var(--navy-950);
}

.cookie-modal h2 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--navy-950);
  margin: 0 0 10px;
}

.cookie-modal-intro {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.cookie-categories {
  border-top: 1px solid var(--line);
  margin-bottom: 20px;
}

.cookie-category {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}

.cookie-category-info strong {
  display: inline-block;
  color: var(--navy-950);
  font-size: 15px;
}

.cookie-badge {
  display: inline-block;
  color: var(--navy-700);
  font-size: 11px;
  font-weight: 400;
  font-style: italic;
  margin-left: 6px;
}

.cookie-category-info p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* Custom Accessible Toggle Switch (Light Mode) */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #dce1e3;
  transition: 0.25s ease;
  border-radius: 24px;
  border: 1px solid #c2c9cd;
}

.cookie-slider::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  transition: 0.25s ease;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cookie-switch input:checked + .cookie-slider {
  background-color: var(--gold);
  border-color: var(--gold);
}

.cookie-switch input:checked + .cookie-slider::before {
  transform: translateX(22px);
  background-color: #ffffff;
}

.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.55;
  cursor: not-allowed;
}

.cookie-withdrawal-note {
  padding: 14px 16px;
  background: var(--paper);
  border-left: 2px solid var(--gold);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin-top: 20px;
}

.cookie-modal-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.cookie-modal-actions-right {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-modal-actions .button,
.cookie-modal-actions .button-outline {
  margin-left: 0;
}

.cookie-modal-actions .button-outline {
  border-color: var(--navy-800);
  color: var(--navy-950);
}

.cookie-modal-actions .button-outline:hover {
  background: var(--navy-950);
  color: var(--white);
}

.cookie-settings-trigger {
  cursor: pointer;
  color: inherit;
  transition: color 0.2s ease;
}

.cookie-settings-trigger:hover {
  color: var(--gold-light);
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 24px 20px;
  }
  .cookie-banner-actions, .cookie-modal-actions, .cookie-modal-actions-right {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .cookie-banner-actions .button, .cookie-modal-actions .button, .cookie-modal-actions-right .button {
    width: 100%;
    text-align: center;
  }
  .cookie-category {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
}

/* ==========================================================================
   PRIVACY STATEMENT PAGE STYLES
   ========================================================================== */
.privacy-container {
  max-width: 860px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 44px;
}

.privacy-section h2 {
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--navy-950);
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.privacy-section h3 {
  font-size: 20px;
  margin: 24px 0 12px;
  color: var(--navy-800);
}

.privacy-section p, .privacy-section li {
  color: #4a5760;
  font-size: 15px;
  line-height: 1.7;
}

.privacy-section ul {
  padding-left: 20px;
  margin: 14px 0;
}

.privacy-section li {
  margin-bottom: 10px;
}

.privacy-table-wrapper {
  overflow-x: auto;
  margin: 24px 0;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border: 1px solid var(--line);
}

.privacy-table th, .privacy-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.privacy-table th {
  background: var(--paper);
  color: var(--navy-950);
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.8px;
}

.privacy-table td {
  color: var(--muted);
  line-height: 1.55;
}

.privacy-table tr:last-child td {
  border-bottom: none;
}

/* ==========================================================================
   CUSTOM THEME-MATCHED DROPDOWN STYLES
   ========================================================================== */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-wrapper select {
  position: absolute !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}

.custom-select-trigger {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #abb4b9;
  padding: 12px 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  user-select: none;
  transition: border-color 0.2s ease;
}

.custom-select-trigger:focus,
.custom-select-trigger:focus-visible,
.custom-select-wrapper.open .custom-select-trigger {
  outline: none;
  border-color: var(--gold);
}

.custom-select-chevron {
  color: var(--gold);
  font-size: 11px;
  transition: transform 0.25s ease;
  margin-left: 10px;
}

.custom-select-wrapper.open .custom-select-chevron {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  margin-top: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  max-height: 280px;
  overflow-y: auto;
}

.custom-select-wrapper.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-option {
  padding: 12px 18px;
  color: var(--ink);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.15s ease, color 0.15s ease;
  border-left: 3px solid transparent;
}

.custom-select-option:hover,
.custom-select-option.focused {
  background: var(--paper);
  color: var(--navy-900);
  border-left-color: var(--gold);
}

.custom-select-option.selected {
  color: var(--navy-950);
  font-weight: 600;
  background: rgba(191, 155, 95, 0.12);
  border-left-color: var(--gold);
}

.custom-select-option.selected::after {
  content: "✓";
  color: var(--gold);
  font-size: 12px;
}

/* Form Privacy Note Link */
.form-privacy-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

.form-privacy-note a {
  color: var(--navy-700);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  text-transform: none;
  transition: color 0.2s ease;
}

.form-privacy-note a:hover {
  color: var(--gold);
}




