/* ==========================================================================
   TOUCHBEARER EDUCATIONAL CONSULT LTD
   Design system — institutional, disciplined, editorial
   ========================================================================== */

/* -------- Design tokens -------- */
:root {
  /* Palette */
  --ink: #0B1E33;
  --ink-2: #152B45;
  --ink-3: #1E3854;
  --gold: #A8843A;
  --gold-text: #806529;
  --gold-2: #C9A24D;
  --gold-3: #E4C77A;
  --bone: #F5F1E8;
  --bone-2: #EDE7D6;
  --paper: #FFFFFF;
  --mute: #5B6472;
  --mute-2: #8A93A0;
  --rule: #E7E1D2;
  --rule-dark: #22385180;

  /* Type scale (fluid) */
  --fs-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --fs-sm: clamp(0.875rem, 0.85rem + 0.15vw, 0.9375rem);
  --fs-base: clamp(1rem, 0.97rem + 0.2vw, 1.0625rem);
  --fs-md: clamp(1.125rem, 1.08rem + 0.25vw, 1.1875rem);
  --fs-lg: clamp(1.25rem, 1.18rem + 0.4vw, 1.4375rem);
  --fs-xl: clamp(1.625rem, 1.45rem + 0.9vw, 2.125rem);
  --fs-2xl: clamp(2rem, 1.7rem + 1.5vw, 3rem);
  --fs-3xl: clamp(2.5rem, 2rem + 2.6vw, 4.25rem);
  --fs-4xl: clamp(3rem, 2.3rem + 3.5vw, 5.5rem);

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Layout */
  --wrap: 1240px;
  --wrap-narrow: 920px;
  --wrap-wide: 1400px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --header-h: 76px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-1: 200ms;
  --dur-2: 400ms;
  --dur-3: 700ms;
  --dur-4: 1200ms;
}

/* -------- Reset & base -------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  overflow-x: clip;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  font-style: italic;
  background-color: var(--bone-2);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-1) var(--ease);
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul, ol { list-style: none; }

/* Focus states */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip link */
.skip {
  position: absolute;
  top: -40px;
  left: 1rem;
  z-index: 9999;
  background: var(--ink);
  color: var(--bone);
  padding: 0.75rem 1.25rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  transition: top var(--dur-2) var(--ease);
}
.skip:focus { top: 1rem; }

/* Selection */
::selection {
  background: var(--gold);
  color: var(--paper);
}

/* -------- Typography -------- */
.serif {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 30, "WONK" 0;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 30, "WONK" 0;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: var(--fs-3xl); line-height: 1.02; letter-spacing: -0.03em; }
h2 { font-size: var(--fs-2xl); line-height: 1.08; }
h3 { font-size: var(--fs-xl); line-height: 1.15; }
h4 { font-size: var(--fs-lg); line-height: 1.25; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: var(--fs-md);
  line-height: 1.55;
  color: var(--mute);
  max-width: 62ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-text);
  line-height: 1;
}

.eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--gold-text);
  display: block;
}

.eyebrow--center::after {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--gold-text);
  display: block;
}

/* -------- Layout -------- */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }
.wrap--wide { max-width: var(--wrap-wide); }

section { position: relative; }

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section--sm { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.section--lg { padding: clamp(5rem, 10vw, 9rem) 0; }

.section--ink {
  background: var(--ink);
  color: var(--bone);
}
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--bone); }
.section--ink .lede { color: rgba(245, 241, 232, 0.75); }

.section--bone { background: var(--bone); }
.section--paper { background: var(--paper); }

/* -------- Header / Nav -------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(11, 30, 51, 0.0);
  transition: background var(--dur-2) var(--ease),
              backdrop-filter var(--dur-2) var(--ease),
              border-color var(--dur-2) var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(11, 30, 51, 0.94);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: rgba(232, 224, 200, 0.08);
}

.site-header.is-light {
  background: rgba(245, 241, 232, 0.94);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--rule);
}
.site-header.is-light .nav-link,
.site-header.is-light .brand-name,
.site-header.is-light .brand-sub,
.site-header.is-light .menu-btn { color: var(--ink); }
.site-header.is-light .brand-sub { color: var(--mute); }
.site-header.is-light .cta-nav { background: var(--ink); color: var(--bone); }
.site-header.is-light .cta-nav:hover { background: var(--gold); color: var(--ink); }

.nav-wrap {
  max-width: var(--wrap-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--bone);
  flex-shrink: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--bone);
  padding: 3px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--bone);
}
.brand-sub {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-top: 2px;
}

.nav-primary { display: flex; align-items: center; gap: 2rem; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bone);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--dur-1) var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-2) var(--ease);
}
.nav-link:hover { color: var(--gold-2); }
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1); }
.nav-link[aria-current="page"] { color: var(--gold-2); }

.cta-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 2px;
  transition: background var(--dur-1) var(--ease), transform var(--dur-1) var(--ease);
}
.cta-nav:hover { background: var(--gold-2); }
.cta-nav svg { width: 14px; height: 14px; }

/* Mobile menu button */
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  position: relative;
  z-index: 210;
}
.menu-btn-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.menu-btn-lines span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--dur-2) var(--ease), opacity var(--dur-1) var(--ease);
}
.menu-btn.is-open .menu-btn-lines span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-btn.is-open .menu-btn-lines span:nth-child(2) {
  opacity: 0;
}
.menu-btn.is-open .menu-btn-lines span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--ink);
  transform: translateX(100%);
  transition: transform var(--dur-3) var(--ease);
  padding: calc(var(--header-h) + 2rem) var(--gutter) 3rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu .nav-list {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid rgba(232, 224, 200, 0.1);
}
.mobile-menu .nav-link {
  color: var(--bone);
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 500;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(232, 224, 200, 0.1);
  letter-spacing: -0.01em;
}
.mobile-menu .nav-link::after { display: none; }
.mobile-menu .nav-link:hover { color: var(--gold-2); }

.mobile-menu .cta-nav {
  margin-top: 2rem;
  align-self: flex-start;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

.mobile-menu-foot {
  margin-top: auto;
  padding-top: 2rem;
  color: var(--mute-2);
  font-size: 0.85rem;
  line-height: 1.5;
}
.mobile-menu-foot strong {
  display: block;
  color: var(--gold-2);
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  letter-spacing: 0;
}

body.is-menu-open { overflow: hidden; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.65rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 2px;
  transition: all var(--dur-2) var(--ease);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.btn svg {
  width: 14px;
  height: 14px;
  transition: transform var(--dur-2) var(--ease);
}
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--gold);
  color: var(--ink);
}
.btn--primary:hover { background: var(--gold-2); }

.btn--dark {
  background: var(--ink);
  color: var(--bone);
}
.btn--dark:hover { background: var(--ink-3); }

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(245, 241, 232, 0.3);
}
.btn--ghost:hover {
  border-color: var(--gold-2);
  color: var(--gold-2);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(11, 30, 51, 0.2);
}
.btn--ghost-dark:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bone);
}

/* Text link with arrow */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: all var(--dur-1) var(--ease);
}
.arrow-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--dur-2) var(--ease);
}
.arrow-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.arrow-link:hover svg { transform: translateX(4px); }

.arrow-link--gold { color: var(--gold-2); }
.arrow-link--gold:hover { color: var(--gold-3); border-bottom-color: var(--gold-3); }

/* -------- Hero (home) -------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(11, 30, 51, 0.55) 0%,
      rgba(11, 30, 51, 0.85) 60%,
      rgba(11, 30, 51, 0.95) 100%);
  z-index: 2;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(168, 132, 58, 0.15), transparent 60%);
  z-index: 3;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.05) brightness(0.75);
}

.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  align-items: end;
}

.hero-headline {
  font-size: var(--fs-4xl);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--bone);
  max-width: 15ch;
}

.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-2);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}

.hero-lede {
  font-size: var(--fs-md);
  line-height: 1.55;
  color: rgba(245, 241, 232, 0.8);
  max-width: 52ch;
  margin-top: 2rem;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-meta {
  border-top: 1px solid rgba(232, 224, 200, 0.15);
  padding-top: 2rem;
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-meta-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--gold-2);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-meta-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.6);
  line-height: 1.4;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  color: rgba(245, 241, 232, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(245, 241, 232, 0.4), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--gold-2);
  animation: scrollDot 2.4s var(--ease) infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(-100%); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(250%); opacity: 0; }
}

/* -------- Page hero (interior pages) -------- */
.page-hero {
  background: var(--ink);
  color: var(--bone);
  padding: calc(var(--header-h) + 5rem) 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 100%, rgba(168, 132, 58, 0.15), transparent 60%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}
.page-hero .eyebrow { color: var(--gold-2); }
.page-hero .eyebrow::before { background: var(--gold-2); }
.page-hero h1 {
  color: var(--bone);
  font-size: var(--fs-3xl);
  margin-top: 1.25rem;
  max-width: 20ch;
}
.page-hero .lede {
  color: rgba(245, 241, 232, 0.75);
  margin-top: 1.75rem;
  max-width: 58ch;
  font-size: var(--fs-md);
}

.crumbs {
  display: flex;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(245, 241, 232, 0.55);
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  align-items: center;
}
.crumbs a {
  padding: 0.35rem 0;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
}
.crumbs a:hover { color: var(--gold-2); }
.crumbs-sep { opacity: 0.5; }

/* -------- Section header -------- */
.section-head {
  max-width: 780px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lede { margin-left: auto; margin-right: auto; }

.section-head h2 {
  margin-top: 1.25rem;
  max-width: 22ch;
}
.section-head--center h2 { margin-left: auto; margin-right: auto; }

.section-head .lede { margin-top: 1.25rem; }

/* -------- Two-column intro -------- */
.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .intro { grid-template-columns: 1fr 1.4fr; gap: 4rem; }
}

.intro-lead h2 { max-width: 14ch; }
@media (min-width: 900px) {
  .intro-lead { position: sticky; top: calc(var(--header-h) + 2rem); }
}

.intro-body p {
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.intro-body p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 3.5em;
  float: left;
  line-height: 0.9;
  padding: 0.05em 0.15em 0 0;
  color: var(--gold);
  font-weight: 500;
}

/* -------- Services grid -------- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.service-card {
  background: var(--paper);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: background var(--dur-2) var(--ease);
  min-height: 280px;
}
.service-card:hover { background: var(--bone); }

.service-num {
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-text);
  letter-spacing: 0;
}

.service-card h3 {
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--ink);
}

.service-card p {
  color: var(--mute);
  font-size: 0.925rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .arrow-link { margin-top: 0.5rem; align-self: flex-start; }

/* Service editorial layout (services page) */
.service-block {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  border-bottom: 1px solid var(--rule);
}
.service-block:last-child { border-bottom: none; }

.service-block-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .service-block-grid {
    grid-template-columns: 240px 1fr;
    gap: 3rem;
  }
}

.service-block-num {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  border-top: 1px solid var(--gold);
  padding-top: 0.75rem;
  display: inline-block;
}

.service-block h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-bottom: 1.25rem;
  max-width: 20ch;
}

.service-block p {
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--mute);
  margin-bottom: 1.5rem;
  max-width: 62ch;
}

.service-block ul.checklist {
  columns: 1;
  gap: 2rem;
}
@media (min-width: 640px) {
  .service-block ul.checklist { columns: 2; column-gap: 2rem; }
}

.checklist li {
  break-inside: avoid;
  padding: 0.6rem 0 0.6rem 1.75rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 10px;
  height: 1px;
  background: var(--gold);
}
.checklist li:last-child { border-bottom: none; }

/* -------- Bridge / value section (home) -------- */
.bridge {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.bridge::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 100%, rgba(168, 132, 58, 0.12), transparent 55%);
  pointer-events: none;
}
.bridge > .wrap { position: relative; z-index: 2; }

.bridge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .bridge-grid { grid-template-columns: 1.05fr 1fr; gap: 5rem; }
}

.bridge h2 { color: var(--bone); }
.bridge h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-2);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.bridge .lede { color: rgba(245, 241, 232, 0.75); }

.bridge-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
}
.bridge-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bridge-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 30, 51, 0.5));
  z-index: 2;
}
.bridge-image-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  color: var(--bone);
  font-size: 0.85rem;
  line-height: 1.4;
  border-left: 2px solid var(--gold-2);
  padding-left: 0.85rem;
}
.bridge-image-label strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

/* -------- Methodology (5 stages) -------- */
.method {
  background: var(--bone);
  overflow: hidden;
}
.method-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 900px) {
  .method-track { grid-template-columns: repeat(5, 1fr); }
}

.method-stage {
  background: var(--bone);
  padding: 2.25rem 1.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  transition: background var(--dur-2) var(--ease);
}
.method-stage:hover { background: var(--paper); }

.method-num {
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  color: var(--gold-text);
  font-weight: 500;
}

.method-title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.method-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--mute);
}

/* -------- Programmes cards -------- */
.programmes {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}
@media (min-width: 800px) {
  .programmes { grid-template-columns: 1fr 1fr; }
}

.programme {
  background: var(--paper);
  border: 1px solid var(--rule);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}
.programme:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(11, 30, 51, 0.15);
}

.programme-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.programme-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-4) var(--ease);
}
.programme:hover .programme-img img { transform: scale(1.04); }

.programme-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--ink);
  color: var(--bone);
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}
.programme-tag--gold { background: var(--gold); color: var(--ink); }

.programme-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}

.programme-meta {
  font-size: 0.8rem;
  color: var(--gold-text);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.programme h3 {
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--ink);
}
.programme p {
  color: var(--mute);
  font-size: 0.925rem;
  line-height: 1.6;
  flex-grow: 1;
}

.programme-foot {
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.programme-location {
  font-size: 0.85rem;
  color: var(--mute);
}

/* -------- Values grid -------- */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
}
.value {
  padding: 2rem 1.5rem;
  border-left: 2px solid transparent;
  border-right: 1px solid rgba(232, 224, 200, 0.08);
  border-bottom: 1px solid rgba(232, 224, 200, 0.08);
  transition: border-color var(--dur-2) var(--ease), background var(--dur-2) var(--ease);
}
.value:hover {
  border-left-color: var(--gold);
  background: rgba(245, 241, 232, 0.03);
}
.value h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 0.9rem;
}
.value p {
  color: rgba(245, 241, 232, 0.72);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* -------- Audiences -------- */
.audiences {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.audience {
  padding: 1.75rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
}
.audience:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.audience-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
}
.audience h3 {
  font-size: 1.1rem;
  color: var(--ink);
}
.audience p {
  font-size: 0.9rem;
  color: var(--mute);
  line-height: 1.55;
}

/* -------- Reach (map/countries) -------- */
.reach {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .reach { grid-template-columns: 1fr 1.4fr; gap: 4rem; }
}
.reach-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--rule-dark);
}
.reach-country {
  flex: 1 1 33%;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule-dark);
  border-right: 1px solid var(--rule-dark);
  color: var(--bone);
}
.reach-country:nth-child(3n) { border-right: none; }
.reach-country strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold-2);
  padding-left: 1rem;
  letter-spacing: -0.01em;
}
.reach-country span {
  font-size: 0.75rem;
  color: rgba(245, 241, 232, 0.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-left: 1rem;
  display: block;
  margin-top: 0.35rem;
}

/* -------- Leadership -------- */
.leader {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}
@media (min-width: 800px) {
  .leader { grid-template-columns: 1fr 1.5fr; gap: 4rem; }
}
.leader-portrait {
  background: var(--bone-2);
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.leader-portrait picture,
.leader-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.leader-portrait-mono {
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
}
.leader-portrait-name {
  font-family: 'Fraunces', serif;
  color: var(--bone);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.leader-portrait-note {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.5);
  max-width: 26ch;
  line-height: 1.5;
}

.leader-body .eyebrow { color: var(--gold); }
.leader-body .eyebrow::before { background: var(--gold); }
.leader-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-top: 1rem;
  line-height: 1.15;
  color: var(--ink);
}
.leader-role {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.4rem;
  margin-bottom: 1.75rem;
}
.leader-body p {
  color: var(--mute);
  font-size: var(--fs-md);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* -------- Credibility strip -------- */
.credibility {
  background: var(--bone);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.credibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
}
.credibility-item {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--rule);
  text-align: center;
}
.credibility-item:last-child { border-right: none; }
.credibility-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--ink);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}
.credibility-num sub {
  font-size: 0.4em;
  color: var(--gold);
  vertical-align: baseline;
  margin-left: 0.1em;
}
.credibility-label {
  font-size: 0.75rem;
  color: var(--mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.6rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 720px) {
  .credibility-item { border-right: none; border-bottom: 1px solid var(--rule); }
  .credibility-item:last-child { border-bottom: none; }
}

/* -------- CTA band -------- */
.cta-band {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(168, 132, 58, 0.15), transparent 60%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}
@media (min-width: 800px) {
  .cta-band-inner { grid-template-columns: 1.5fr 1fr; }
}
.cta-band h2 {
  color: var(--bone);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  max-width: 22ch;
}
.cta-band h2 em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 300;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-self: start;
}
@media (min-width: 800px) {
  .cta-band-actions { justify-self: end; }
}

/* -------- Contact form -------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.3fr; gap: 4rem; }
}

.contact-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}
.contact-info h3:first-of-type { margin-top: 0; }
.contact-info p, .contact-info address {
  font-style: normal;
  color: var(--ink);
  font-size: var(--fs-md);
  line-height: 1.6;
}
.contact-info a {
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  display: inline-block;
  padding: 0.3rem 0;
  line-height: 1.5;
}
.contact-info a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.form {
  display: grid;
  gap: 1.25rem;
  background: var(--paper);
  padding: 2rem;
  border: 1px solid var(--rule);
  border-radius: 2px;
}
@media (min-width: 640px) {
  .form { padding: 2.5rem; }
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
}
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: 0.95rem;
  padding: 0.8rem 0.9rem;
  background: var(--bone);
  border: 1px solid transparent;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  border-radius: 2px;
  transition: border-color var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
  width: 100%;
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%235B6472' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.25rem;
}
.form-field textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--gold);
}
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.form-note {
  font-size: 0.8rem;
  color: var(--mute);
}
.form-status {
  padding: 0.85rem 1rem;
  background: rgba(168, 132, 58, 0.08);
  border-left: 3px solid var(--gold);
  color: var(--ink);
  font-size: 0.9rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-error {
  background: rgba(200, 40, 40, 0.06);
  border-left-color: #c62828;
}

/* -------- Footer -------- */
.site-footer {
  background: var(--ink);
  color: var(--bone);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(232, 224, 200, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(232, 224, 200, 0.1);
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem 2.5rem; }
}
.footer-brand { max-width: 30ch; }
.footer-brand p {
  color: rgba(245, 241, 232, 0.6);
  font-size: 0.9rem;
  margin-top: 1.25rem;
  line-height: 1.6;
}
.footer-brand .brand-mark { background: var(--bone); }
.footer-brand .brand { color: var(--bone); margin-bottom: 0; }

.footer-col h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  color: rgba(245, 241, 232, 0.7);
  font-size: 0.9rem;
  transition: color var(--dur-1) var(--ease);
  display: inline-block;
  padding: 0.15rem 0;
  min-height: 28px;
  line-height: 1.55;
}
.footer-col a:hover { color: var(--gold-2); }
.footer-col p {
  color: rgba(245, 241, 232, 0.7);
  font-size: 0.9rem;
  line-height: 1.65;
}
.footer-col address {
  font-style: normal;
  color: rgba(245, 241, 232, 0.7);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-bar {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.footer-bar-left {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  color: rgba(245, 241, 232, 0.5);
  font-size: 0.8rem;
}
.footer-bar-right {
  color: rgba(245, 241, 232, 0.5);
  font-size: 0.8rem;
}
.footer-bar-right a {
  display: inline-block;
  padding: 0.5rem 0;
  min-height: 32px;
  line-height: 1.5;
}
.footer-slogan {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--gold-2);
  font-size: 0.95rem;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}

/* -------- Reveal animations -------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up { transform: translateY(30px); }
.reveal-fade { transform: none; }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-left.is-visible,
.reveal-right.is-visible { transform: translateX(0); }

/* Staggered children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger.is-visible > *:nth-child(7) { transition-delay: 480ms; }
.stagger.is-visible > *:nth-child(8) { transition-delay: 560ms; }
.stagger.is-visible > *:nth-child(9) { transition-delay: 640ms; }
.stagger.is-visible > *:nth-child(10) { transition-delay: 720ms; }

/* Hero specific enter */
.hero .reveal,
.hero .stagger > * {
  transition-duration: 1200ms;
}

/* -------- Responsive nav -------- */
@media (max-width: 940px) {
  .nav-primary { display: none; }
  .menu-btn { display: flex; }
  .site-header .cta-nav { display: none; }
}

@media (max-width: 640px) {
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .hero-meta-item { border-left: 2px solid rgba(168, 132, 58, 0.3); padding-left: 1rem; }
}

/* Print-friendly (courtesy) */
@media print {
  .site-header, .mobile-menu, .hero-scroll, .cta-band { display: none; }
  body { color: black; background: white; }
}

/* -------- Utility -------- */
.hidden { display: none !important; }
.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;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
