:root {
  --navy: #111d34;
  --navy-2: #121d35;
  --navy-3: #1c2a46;
  --ivory: #f6f3ec;
  --ivory-2: #eee8dc;
  --gold: #b69a5c;
  --gold-dark: #8a6f38;
  --white: #ffffff;
  --ink: #20242c;
  --slate: #667085;
  --line: rgba(11, 19, 37, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(11, 19, 37, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --max: 1180px;
  --radius: 2px;
}

* { 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.72;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 12px;
  top: -80px;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--navy);
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section { padding: 108px 0; }
.section--compact { padding: 72px 0; }
.section--ivory { background: var(--ivory); }
.section--navy { background: var(--navy); color: var(--white); }
.section--bordered { border-block: 1px solid var(--line); }
.grid { display: grid; gap: 34px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.align-center { align-items: center; }
.narrow { max-width: 820px; }
.measure { max-width: 720px; }
.center { text-align: center; margin-inline: auto; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.section--navy .eyebrow { color: var(--gold); }
h1, h2, h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.04;
}
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
h1 { font-size: clamp(52px, 7vw, 88px); }
h2 { font-size: clamp(40px, 5vw, 60px); }
h3 { font-size: clamp(27px, 3vw, 34px); }
.lead {
  margin: 28px 0 0;
  color: var(--slate);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}
.section--navy .lead { color: rgba(255,255,255,.74); }
.body-large { font-size: 19px; color: var(--slate); }
.section--navy .body-large { color: rgba(255,255,255,.74); }
.rule { width: 64px; height: 2px; margin: 28px 0; background: var(--gold); }
.rule.center { margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255,255,255,.93);
  border-bottom: 1px solid rgba(11,19,37,.08);
  backdrop-filter: blur(16px);
}
.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-logo { display: block; width: 278px; height: auto; }
.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--navy);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { color: var(--navy); font-size: 15px; letter-spacing: .08em; }
.brand-copy span { margin-top: 7px; color: var(--slate); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { position: relative; color: #303641; font-size: 13px; font-weight: 600; text-decoration: none; }
.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(.4);
  transition: .2s ease;
}
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after { opacity: 1; transform: scaleX(1); }
.nav-toggle { display: none; border: 0; background: transparent; color: var(--navy); cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 1px; margin: 6px 0; background: currentColor; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); background: #c4aa70; }
.button--outline { background: transparent; color: var(--navy); }
.button--outline:hover { background: var(--gold); }
.hero .button--outline { color: var(--white); }
.section--navy .button--outline { color: var(--white); }
.button-group { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.arrow { font-size: 16px; }

.hero { position: relative; overflow: hidden; padding: 118px 0 126px; background: var(--navy); color: var(--white); }
.hero--home {
  background-image: linear-gradient(90deg, rgba(17,29,52,.96) 0%, rgba(17,29,52,.78) 42%, rgba(17,29,52,.12) 72%, rgba(17,29,52,.03) 100%), url("accessbridge-home-hero.png");
  background-position: center;
  background-size: cover;
}
.hero--home .hero-grid { display: block; }
.hero--home .hero-grid > .reveal:first-child { max-width: 920px; }
.hero--home h1 { max-width: 920px; font-size: clamp(52px, 4vw, 68px); }
.hero--home .lead { max-width: 760px; }
.hero--home .hero-image { display: none; }
.hero--home .visual-label { display: none; }
.hero::before {
  position: absolute;
  width: 620px;
  height: 620px;
  top: -280px;
  right: -140px;
  border: 1px solid rgba(182,154,92,.2);
  border-radius: 50%;
  content: "";
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 64px; }
.hero h1 { max-width: 760px; color: var(--white); }
.hero .lead { max-width: 720px; color: rgba(255,255,255,.73); }
.page-hero { padding: 98px 0 104px; }
.page-hero .hero-grid { grid-template-columns: 1.15fr .85fr; }
.page-hero h1 { font-size: clamp(48px, 5vw, 72px); }
.page-hero { background: var(--ivory); color: var(--ink); }
.page-hero h1 { color: var(--navy); }
.page-hero .lead { color: var(--slate); }
.page-hero .eyebrow { color: var(--gold-dark); }
.page-hero .system-visual { border-color: var(--line); background: rgba(255,255,255,.72); box-shadow: var(--shadow); }

.system-visual {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(145deg, rgba(255,255,255,.03), rgba(182,154,92,.06));
  box-shadow: inset 0 0 0 14px rgba(255,255,255,.018);
}
.system-visual svg { position: absolute; inset: 6%; width: 88%; height: 88%; }
.visual-label {
  position: absolute;
  padding: 7px 10px;
  border: 1px solid rgba(182,154,92,.3);
  background: var(--navy);
  color: rgba(255,255,255,.72);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.visual-label--1 { top: 8%; left: 8%; }
.visual-label--2 { top: 8%; right: 8%; }
.visual-label--3 { bottom: 8%; left: 8%; }
.visual-label--4 { right: 8%; bottom: 8%; }

.credibility { position: relative; z-index: 3; margin-top: -38px; }
.credibility-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); box-shadow: var(--shadow); }
.credibility-item { position: relative; padding: 29px 28px; border-right: 1px solid var(--line); }
.credibility-item:last-child { border-right: 0; }
.credibility-item::before { display: block; width: 24px; height: 2px; margin-bottom: 14px; background: var(--gold); content: ""; }
.credibility-item strong { display: block; color: var(--navy); font-family: var(--serif); font-size: 22px; font-weight: 600; line-height: 1.2; }
.credibility-item span { display: block; margin-top: 7px; color: var(--slate); font-size: 12px; }

.issue-card, .service-card, .principle-card {
  position: relative;
  min-height: 100%;
  padding: 38px 34px;
  border: 1px solid var(--line);
  background: var(--white);
}
.section--ivory .issue-card, .section--ivory .service-card { background: rgba(255,255,255,.72); }
.card-number { color: var(--gold-dark); font-size: 11px; font-weight: 700; letter-spacing: .15em; }
.issue-card h3, .service-card h3, .principle-card h3 { margin-top: 22px; }
.issue-card p, .service-card p, .principle-card p { margin: 18px 0 0; color: var(--slate); }
.service-card .text-link { display: inline-block; margin-top: 25px; color: var(--navy); font-size: 13px; font-weight: 700; text-decoration-color: var(--gold); text-underline-offset: 5px; }
.mini-visual { height: 190px; margin: -38px -34px 30px; overflow: hidden; background: #edf0f3; }
.mini-visual svg { width: 100%; height: 100%; }

.feature-list { display: grid; gap: 0; margin-top: 30px; border-top: 1px solid var(--line); }
.feature-item { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.feature-item strong { color: var(--navy); }
.feature-index { color: var(--gold-dark); font-size: 12px; font-weight: 700; }

.quote-band { position: relative; overflow: hidden; }
.quote-band::after { position: absolute; width: 380px; height: 380px; right: -150px; bottom: -240px; border: 1px solid rgba(182,154,92,.22); border-radius: 50%; content: ""; }
.quote-band h2 { max-width: 850px; }

.service-detail { padding: 104px 0; border-bottom: 1px solid var(--line); }
.service-detail:last-child { border-bottom: 0; }
.service-detail-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 88px; }
.service-meta { position: sticky; top: 122px; align-self: start; }
.service-tag { display: inline-flex; padding: 7px 10px; border: 1px solid var(--gold); color: var(--gold-dark); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.check-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 28px; padding: 0; margin: 28px 0 0; list-style: none; }
.check-list li { position: relative; padding: 14px 0 14px 24px; border-bottom: 1px solid var(--line); color: #454d5b; }
.check-list li::before { position: absolute; left: 0; top: 22px; width: 9px; height: 1px; background: var(--gold); content: ""; }
.outputs { margin-top: 34px; padding: 26px 28px; background: var(--ivory); }
.outputs strong { display: block; margin-bottom: 10px; color: var(--gold-dark); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }

.strength-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 48px; border: 1px solid var(--line-light); }
.strength { padding: 34px 24px; border-right: 1px solid var(--line-light); }
.strength:last-child { border-right: 0; }
.strength h3 { color: var(--white); font-size: 28px; }
.strength p { margin: 18px 0 0; color: rgba(255,255,255,.68); font-size: 14px; }

.process { display: grid; gap: 0; margin-top: 48px; counter-reset: process; }
.process-step { display: grid; grid-template-columns: 100px 1fr; gap: 32px; padding: 30px 0; border-top: 1px solid var(--line); counter-increment: process; }
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-step::before { color: var(--gold-dark); content: "0" counter(process); font-family: var(--serif); font-size: 34px; }
.process-step h3 { font-size: 32px; }
.process-step p { margin: 8px 0 0; color: var(--slate); }

.founder-hero-image {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: var(--ivory-2);
  box-shadow: var(--shadow);
}
.founder-hero-image img { width: 100%; height: 100%; min-height: 590px; object-fit: cover; object-position: 50% 24%; filter: saturate(.85) contrast(.98); }
.founder-hero-image::after { position: absolute; inset: 0; border: 1px solid rgba(11,19,37,.12); content: ""; }
.founder-monogram {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 590px;
  place-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(100px, 16vw, 190px);
  font-weight: 500;
  letter-spacing: -.08em;
}
.founder-monogram::before,
.founder-monogram::after { position: absolute; border: 1px solid rgba(182,154,92,.22); border-radius: 50%; content: ""; }
.founder-monogram::before { width: 460px; height: 460px; top: -170px; right: -170px; }
.founder-monogram::after { width: 340px; height: 340px; bottom: -190px; left: -120px; }
.book-cover { width: min(100%, 330px); margin-inline: auto; box-shadow: var(--shadow); }
.founder-story { font-family: var(--serif); font-size: clamp(25px, 3vw, 32px); line-height: 1.42; }
.founder-story p { margin: 0 0 28px; }
.book-block { padding: 40px; border-left: 2px solid var(--gold); background: var(--white); }

.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; }
.contact-layout h1 { font-size: clamp(52px, 5vw, 72px); }
.contact-list { display: grid; gap: 26px; margin-top: 36px; }
.contact-item { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.contact-item span { display: block; color: var(--gold-dark); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.contact-item a, .contact-item p { margin: 8px 0 0; color: var(--navy); font-family: var(--serif); font-size: 25px; line-height: 1.3; text-decoration: none; }
.contact-form { padding: 46px; background: var(--white); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 8px; color: var(--navy); font-size: 12px; font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(11,19,37,.22);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 3px rgba(182,154,92,.15); }
.field-hp { position: absolute; left: -9999px; }
.form-note { color: var(--slate); font-size: 11px; }
.form-status { display: none; margin-bottom: 22px; padding: 14px 16px; border: 1px solid #8ab89f; background: #eef8f2; color: #24583b; }
.form-status.is-visible { display: block; }

.legal h2 { margin-top: 48px; font-size: 36px; }
.legal h3 { margin-top: 30px; font-size: 26px; }
.legal p, .legal li { color: #4d5665; }
.legal a { color: var(--navy); text-decoration-color: var(--gold); text-underline-offset: 4px; }

.site-footer { padding: 76px 0 28px; background: var(--navy); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .55fr .7fr; gap: 70px; }
.footer-brand h2 { color: var(--white); font-size: 38px; }
.footer-brand p { max-width: 520px; color: rgba(255,255,255,.66); }
.footer-heading { margin: 0 0 18px; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.72); font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line-light); align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.45); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1020px) {
  .site-nav { gap: 18px; }
  .site-nav .button { display: none; }
  .hero-grid, .page-hero .hero-grid, .service-detail-grid, .contact-layout { grid-template-columns: 1fr; }
  .system-visual { min-height: 420px; }
  .credibility-grid { grid-template-columns: repeat(2, 1fr); }
  .credibility-item:nth-child(2) { border-right: 0; }
  .credibility-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .strength-grid { grid-template-columns: repeat(2, 1fr); }
  .strength { border-bottom: 1px solid var(--line-light); }
  .strength:nth-child(even) { border-right: 0; }
  .strength:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .service-meta { position: static; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 78px 0; }
  .header-inner { min-height: 72px; }
  .brand-copy span { display: none; }
  .brand-logo { width: 225px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 72px 0 0;
    display: flex;
    padding: 44px 24px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--navy);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: .2s ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav a { color: var(--white); font-family: var(--serif); font-size: 30px; font-weight: 500; }
  .site-nav .button { display: inline-flex; margin-top: 10px; color: var(--navy); font-family: var(--sans); font-size: 13px; }
  .hero, .page-hero { padding: 78px 0 92px; }
  .hero--home { background-position: 62% center; }
  .hero--home h1 { font-size: clamp(44px, 13vw, 58px); }
  .hero-grid { gap: 44px; }
  .system-visual { min-height: 350px; }
  .credibility { margin-top: 0; }
  .credibility-grid, .grid--2, .grid--3, .grid--4, .strength-grid, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .credibility-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .credibility-item:last-child { border-bottom: 0; }
  .service-detail-grid { gap: 42px; }
  .check-list { grid-template-columns: 1fr; }
  .strength { border-right: 0; }
  .strength:last-child { grid-column: auto; }
  .process-step { grid-template-columns: 56px 1fr; gap: 16px; }
  .contact-form { padding: 28px 22px; }
  .founder-hero-image, .founder-hero-image img { min-height: 460px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
