:root {
  --navy: #071528;
  --navy-2: #0d2140;
  --ink: #1e293b;
  --muted: #55657a;
  --line: #e2e7ee;
  --paper: #f6f8fb;
  --white: #ffffff;
  --green: #1fa83c;
  --green-deep: #15802c;
  --green-bright: #27c447;
  --green-soft: #e6f5e9;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --gutter: clamp(20px, 4vw, 48px);
  --header-h: 76px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.has-smoothscroll { scroll-behavior: auto !important; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-underline-offset: 3px; }
::selection { background: var(--green); color: var(--white); }
section[id] { scroll-margin-top: var(--header-h); }
h1, h2, h3 { margin: 0; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
em { font-style: italic; }
.stat dd, .step-num, .hero-card-num { font-variant-numeric: lining-nums tabular-nums; font-feature-settings: "lnum" 1, "tnum" 1; }
:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(80px, 11vw, 140px) 0; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--white); color: var(--navy); padding: 10px 16px; border-radius: 8px; font-weight: 600; }
.skip-link:focus { top: 12px; }

h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--navy);
}
h2 em { color: var(--green-deep); font-weight: 500; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 24px;
  border-radius: 8px; border: 1.5px solid transparent;
  font: 600 15px/1 var(--sans); text-decoration: none; white-space: nowrap;
  cursor: pointer;
  transition: background-color 180ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms var(--ease-out), box-shadow 220ms var(--ease-out), transform 120ms var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-deep); box-shadow: 0 8px 20px -8px rgba(31, 168, 60, 0.6); }
.btn-outline-light { border-color: rgba(255, 255, 255, 0.55); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-2); box-shadow: 0 8px 20px -8px rgba(7, 21, 40, 0.5); }
.btn-block { width: 100%; }

.badge {
  display: inline-flex; align-items: flex-start; gap: 10px;
  padding: 8px 14px; border-radius: 6px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em; line-height: 1.35;
}
.badge-dark { background: rgba(7, 21, 40, 0.55); border: 1px solid rgba(255, 255, 255, 0.18); color: rgba(255, 255, 255, 0.92); backdrop-filter: blur(8px); }
.dot { width: 7px; height: 7px; border-radius: 2px; background: var(--green-bright); margin-top: 6px; flex: none; }

.check { width: 20px; height: 20px; flex: none; border-radius: 6px; background: var(--green-soft); position: relative; margin-top: 2px; }
.check::after { content: ""; position: absolute; left: 7px; top: 4px; width: 5px; height: 9px; border: solid var(--green-deep); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.check-light { background: rgba(39, 196, 71, 0.18); }
.check-light::after { border-color: var(--green-bright); }

/* Header */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; transition: background-color 240ms var(--ease-out), box-shadow 240ms var(--ease-out); }
.site-header.is-scrolled, .site-header.menu-open { background: var(--navy); box-shadow: 0 6px 24px -12px rgba(0, 0, 0, 0.5); }
.header-inner { display: flex; align-items: center; gap: 32px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--white); margin-right: auto; min-height: 48px; }
.brand img { width: 30px; height: auto; }
.brand-name { font-family: var(--serif); font-size: 23px; font-weight: 600; letter-spacing: -0.01em; white-space: nowrap; }
.brand-name span { color: var(--green-bright); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: rgba(255, 255, 255, 0.85); text-decoration: none; font-size: 15px; font-weight: 500; padding: 12px 0; transition: color 160ms; }
.nav-links a:hover { color: var(--white); }
.header-cta { min-height: 46px; padding: 0 20px; }
.nav-toggle { display: none; width: 48px; height: 48px; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 8px; background: transparent; cursor: pointer; position: relative; }
.nav-toggle span { position: absolute; left: 13px; right: 13px; height: 2px; background: var(--white); transition: transform 200ms var(--ease-out), top 200ms var(--ease-out); }
.nav-toggle span:first-child { top: 19px; }
.nav-toggle span:last-child { top: 27px; }
.nav-toggle[aria-expanded="true"] span:first-child { top: 23px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { top: 23px; transform: rotate(-45deg); }
.mobile-nav { display: none; }

/* Hero */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; color: var(--white); background: var(--navy); overflow: hidden; }
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: 65% center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 21, 40, 0.9) 0%, rgba(7, 21, 40, 0.72) 38%, rgba(7, 21, 40, 0.1) 70%), linear-gradient(0deg, rgba(7, 21, 40, 0.75) 0%, rgba(7, 21, 40, 0) 45%); }
.hero-inner { position: relative; display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; padding-top: calc(var(--header-h) + 40px); padding-bottom: clamp(56px, 9vh, 96px); }
.hero-copy { max-width: 660px; }
.hero h1 {
  margin: 22px 0 22px;
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(3.2rem, 7.4vw, 6rem); line-height: 0.98; letter-spacing: -0.025em;
}
.hero h1 em { color: var(--green-bright); font-weight: 500; }
.hero-line { display: block; white-space: nowrap; }
.hero-sub { font-size: clamp(16px, 1.4vw, 18.5px); color: rgba(255, 255, 255, 0.85); max-width: 540px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-card {
  width: 330px; flex: none;
  background: var(--white); color: var(--ink);
  border-radius: 10px; padding: 26px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
  animation: cardIn 700ms 250ms var(--ease-out) both;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero-card-title { font-family: var(--serif); font-size: 26px; font-weight: 600; line-height: 1.1; color: var(--navy); }
.hero-card-sub { font-size: 13px; color: var(--muted); margin-top: 4px; }
.hero-card-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.hero-card-list li { display: flex; gap: 10px; font-size: 14.5px; line-height: 1.45; }
.hero-card-foot { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 14px; }
.hero-card-num { font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--green-deep); line-height: 1; }
.hero-card-note { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* About */
.about { background: var(--paper); }
.about-statement { max-width: 980px; font-size: clamp(2.2rem, 4.6vw, 3.9rem); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: clamp(48px, 6vw, 80px); align-items: stretch; }
.stat-panel { background: var(--white); border-radius: 10px; padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; box-shadow: 0 1px 2px rgba(7, 21, 40, 0.04), 0 12px 32px -18px rgba(7, 21, 40, 0.18); }
.stat-panel-lead { font-size: 18px; line-height: 1.55; color: var(--ink); max-width: 44ch; }
.stats { display: grid; grid-template-columns: 1fr 1fr; margin: 36px 0; flex: 1; align-content: center; }
.stat { padding: 22px 0; border-top: 1px solid var(--line); }
.stat:nth-child(odd) { padding-right: 20px; }
.stat:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--line); }
.stat dt { font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: 0.02em; }
.stat dd { margin: 6px 0 0; font-family: var(--serif); font-size: clamp(2.8rem, 4.4vw, 3.6rem); font-weight: 600; line-height: 1; color: var(--navy); font-variant-numeric: tabular-nums; }
.stat-panel .btn { align-self: flex-start; }
.about-photo { position: relative; margin: 0; border-radius: 10px; overflow: hidden; min-height: 520px; }
.about-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-widget { position: absolute; left: 24px; right: 24px; bottom: 24px; max-width: 360px; background: var(--white); border-radius: 8px; padding: 18px 20px; box-shadow: 0 20px 40px -16px rgba(7, 21, 40, 0.4); display: grid; gap: 4px; }
.widget-title { font-weight: 600; color: var(--navy); font-size: 15px; }
.widget-text { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* Section heads */
.section-head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: end; margin-bottom: clamp(48px, 6vw, 72px); }
.section-head p { font-size: 17.5px; color: var(--muted); max-width: 46ch; justify-self: end; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.service { padding: 36px 28px 40px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.service:nth-child(4n) { border-right: 0; }
.service:nth-child(4n + 1) { padding-left: 0; }
.service .icon { width: 30px; height: 30px; fill: none; stroke: var(--green-deep); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service h3 { margin: 22px 0 10px; font-size: 18px; font-weight: 600; line-height: 1.3; color: var(--navy); }
.service p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.service ul { list-style: none; margin: 18px 0 0; padding: 16px 0 0; border-top: 1px dashed var(--line); display: grid; gap: 7px; }
.service li { font-size: 14px; color: var(--ink); padding-left: 16px; position: relative; }
.service li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 7px; height: 1.5px; background: var(--green); }
.service-cta { background: var(--navy); color: var(--white); border-radius: 0 0 10px 0; padding-left: 28px; display: flex; flex-direction: column; }
.service-cta h3 { margin-top: 0; font-family: var(--serif); font-size: 28px; color: var(--white); line-height: 1.1; }
.service-cta p { color: rgba(255, 255, 255, 0.78); margin-bottom: 24px; }
.service-cta .btn { margin-top: auto; align-self: flex-start; }

/* Industries */
.industries { background: var(--paper); }
.industries-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.industries-photo { margin: 0; border-radius: 10px; overflow: hidden; }
.industries-photo img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.industries-copy > p { margin-top: 20px; font-size: 17.5px; color: var(--muted); max-width: 48ch; }
.industry-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; grid-template-columns: 1fr 1fr; column-gap: 32px; }
.industry-list li { padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 500; color: var(--navy); font-size: 15.5px; }
.callout { margin-top: 32px; background: var(--white); border-radius: 8px; padding: 22px 24px; box-shadow: 0 12px 32px -20px rgba(7, 21, 40, 0.25); }
.callout-title { font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.callout p:last-child { font-size: 15px; color: var(--muted); }

/* Proof band */
.proof { background: var(--navy); color: var(--white); }
.proof-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.proof-photo { margin: 0; border-radius: 10px; overflow: hidden; }
.proof-photo img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; }
.quote { margin: 0; }
.quote p { font-family: var(--serif); font-size: clamp(1.9rem, 3.3vw, 2.8rem); line-height: 1.18; font-weight: 500; letter-spacing: -0.01em; }
.quote footer { margin-top: 28px; display: flex; flex-direction: column; gap: 2px; }
.quote-name { font-weight: 600; }
.quote-role { font-size: 14px; color: rgba(255, 255, 255, 0.7); }
.why-list { list-style: none; padding: 32px 0 0; margin: 40px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.14); display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px; }
.why-list li { display: flex; gap: 12px; font-size: 15.5px; color: rgba(255, 255, 255, 0.88); line-height: 1.5; }

/* Process */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: none; }
.step { position: relative; padding: 28px 0 0; border-top: 2px solid var(--line); }
.step::before { content: ""; position: absolute; top: -2px; left: 0; width: 48px; height: 2px; background: var(--green); }
.step-num { font-family: var(--serif); font-size: 44px; font-weight: 600; color: var(--navy); line-height: 1; font-variant-numeric: tabular-nums; }
.step h3 { margin: 18px 0 10px; font-size: 18px; font-weight: 600; color: var(--navy); }
.step p { font-size: 15px; color: var(--muted); padding-right: 12px; }

/* FAQ */
.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 7vw, 96px); align-items: start; }
.faq-head { position: sticky; top: calc(var(--header-h) + 32px); }
.faq-head p { margin: 20px 0 30px; font-size: 17px; color: var(--muted); }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--white); border-radius: 8px; }
.faq-item h3 { font-size: inherit; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 64px; padding: 18px 22px; background: none; border: 0; text-align: left; font: 600 16.5px/1.4 var(--sans); color: var(--navy); cursor: pointer; border-radius: 8px; }
.faq-icon { width: 30px; height: 30px; flex: none; border-radius: 6px; background: var(--paper); position: relative; transition: background-color 200ms var(--ease-out); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--navy); transform: translate(-50%, -50%); transition: transform 220ms var(--ease-out); }
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-question[aria-expanded="true"] .faq-icon { background: var(--green); }
.faq-question[aria-expanded="true"] .faq-icon::before, .faq-question[aria-expanded="true"] .faq-icon::after { background: var(--white); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer { padding: 0 22px 22px; }
.faq-answer p { color: var(--muted); font-size: 15.5px; max-width: 62ch; }

/* Contact */
.contact { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.contact::before { content: ""; position: absolute; right: -10%; top: -30%; width: 60%; height: 140%; background: radial-gradient(closest-side, rgba(31, 168, 60, 0.16), transparent); pointer-events: none; }
.contact-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 96px); align-items: center; }
.contact h2 { color: var(--white); }
.contact h2 em { color: var(--green-bright); }
.contact-copy > p { margin-top: 20px; font-size: 17.5px; color: rgba(255, 255, 255, 0.8); max-width: 46ch; }
.contact-details { list-style: none; padding: 0; margin: 40px 0 0; display: grid; gap: 0; }
.contact-details li { padding: 16px 0; border-top: 1px solid rgba(255, 255, 255, 0.14); display: grid; grid-template-columns: 130px 1fr; gap: 16px; font-size: 15.5px; overflow-wrap: anywhere; }
.cd-label { font-size: 13px; color: rgba(255, 255, 255, 0.65); font-weight: 500; padding-top: 2px; }
.contact-details a { color: var(--white); }
.contact-details a:hover { color: var(--green-bright); }

.form-card { background: var(--white); color: var(--ink); border-radius: 10px; padding: clamp(24px, 3.4vw, 40px); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6); }
.form-title { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--navy); line-height: 1.1; }
.form-note { font-size: 13.5px; color: var(--muted); margin: 6px 0 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 14px; font-weight: 600; color: var(--navy); }
.req { color: #b42318; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 12px 14px; border: 1.5px solid #c9d2dd; border-radius: 6px; font: 400 16px/1.4 var(--sans); color: var(--ink); background: var(--white); transition: border-color 160ms, box-shadow 160ms; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-deep); box-shadow: 0 0 0 3px rgba(31, 168, 60, 0.2); }
.field [aria-invalid="true"] { border-color: #b42318; }
.form-error { color: #b42318; font-size: 14px; margin-bottom: 12px; }
.form-status { margin-top: 14px; font-size: 14px; color: var(--green-deep); }

/* Footer */
.site-footer { background: #040d19; color: rgba(255, 255, 255, 0.72); padding: 48px 0; font-size: 14px; }
.footer-inner { display: grid; gap: 14px; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 20px; color: var(--white); }
.footer-brand img { width: 24px; height: auto; }
.footer-line, .footer-meta { line-height: 1.7; }
.site-footer a { color: var(--white); }
.site-footer a:hover { color: var(--green-bright); }

/* Reveal */
.pre-reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.pre-reveal.is-visible { opacity: 1; transform: none; }

/* Short viewports */
@media (max-height: 820px) and (min-width: 768px) {
  .hero-inner { padding-top: calc(var(--header-h) + 20px); padding-bottom: 6vh; }
  .hero h1 { font-size: clamp(3rem, 10vh, 5.4rem); margin: 16px 0; }
  .hero-ctas { margin-top: 24px; }
}

@media (max-width: 1180px) {
  .hero-card { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service:nth-child(n) { border-right: 1px solid var(--line); padding-left: 28px; }
  .service:nth-child(2n) { border-right: 0; }
  .service:nth-child(2n + 1) { padding-left: 0; }
  .service-cta { padding-left: 28px; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
}

@media (max-width: 980px) {
  .nav-links, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav.is-open { display: flex; flex-direction: column; gap: 4px; padding: 8px var(--gutter) 24px; background: var(--navy); border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .mobile-nav a { color: var(--white); text-decoration: none; font-size: 17px; font-weight: 500; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .mobile-nav a.btn { margin-top: 14px; border-bottom: 0; color: var(--white); padding: 0 24px; }
  .about-grid, .industries-grid, .proof-grid, .faq-grid, .contact-grid, .section-head { grid-template-columns: 1fr; }
  .section-head p { justify-self: start; }
  .faq-head { position: static; }
  .proof-photo { max-width: 460px; }
  .industries-photo img { aspect-ratio: 4 / 3; }
}

@media (max-width: 767px) {
  :root { --header-h: 68px; }
  .brand-name { font-size: 20px; }
  .hero { align-items: flex-end; }
  .hero-media img { object-position: center top; }
  .hero-shade { background: linear-gradient(0deg, rgba(7, 21, 40, 0.96) 0%, rgba(7, 21, 40, 0.85) 45%, rgba(7, 21, 40, 0.2) 72%, rgba(7, 21, 40, 0.35) 100%); }
  .hero-inner { padding-bottom: 32px; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 3.6rem); margin: 16px 0; }
  .hero-line { white-space: normal; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { margin-top: 24px; flex-direction: column; gap: 10px; }
  .btn, .stat-panel .btn, .service-cta .btn { width: 100%; align-self: stretch; }
  .about-photo { min-height: 440px; }
  .stat dd { font-size: 2.6rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service:nth-child(n) { padding: 30px 0; border-right: 0; }
  .service-cta { padding: 30px 24px !important; border-radius: 10px; margin-top: 24px; }
  .steps { grid-template-columns: 1fr; row-gap: 36px; }
  .industry-list, .why-list { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-details li { grid-template-columns: 1fr; gap: 2px; }
}

@media (max-width: 767px) and (max-height: 700px) {
  .hero-sub { display: none; }
  .hero h1 { font-size: 2.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 1ms !important; transition-duration: 1ms !important; }
}

/* Accessibility page */
.doc-page { padding: calc(var(--header-h) + 72px) 0 110px; background: var(--paper); }
.doc { max-width: 780px; }
.doc h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1.02; color: var(--navy); letter-spacing: -0.02em; }
.doc .doc-lead { margin-top: 18px; font-size: 18px; color: var(--muted); }
.doc h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin: 52px 0 14px; }
.doc p, .doc li { font-size: 16.5px; color: var(--ink); }
.doc p + p { margin-top: 14px; }
.doc ul { padding-left: 20px; display: grid; gap: 8px; }
.doc a { color: var(--green-deep); font-weight: 500; }
.doc-updated { margin-top: 56px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
