/* ============================================================
   RELS design tokens
   ============================================================ */
:root {
  --navy:            #0C1D2E;
  --navy-deep:       #08151F;
  --navy-hover:      #16324B;
  --navy-chip:       rgba(8,21,31,0.78);

  --gold:            #C6A15B;
  --gold-brown:      #8A6E2F;
  --gold-muted:      #A89A7A;

  --ivory:           #F5F2EB;
  --ivory-card:      #FBFAF6;

  --border-light:    #E1DACB;
  --border-card:     #E7E1D3;
  --border-input:    #D8D0BF;
  --border-hover:    #D8CDB2;

  --text-body:       #55524B;
  --text-muted:      #6A665C;
  --text-soft:       #7D7768;
  --text-faint:      #8A857A;
  --text-on-navy:    #C4C0B6;
  --text-on-navy-mut:#9AA3B0;

  --footer-body:     #8B93A0;
  --footer-link:     #A7AEB9;
  --footer-faint:    #7B8493;
  --footer-copy:     #6E7787;

  --err-border:      #9C3B2E;
  --err-bg:          #F6EDEA;
  --err-text:        #7E3325;

  --serif: 'Libre Caslon Display', Georgia, serif;
  --sans:  'Archivo', Helvetica, Arial, sans-serif;

  --wrap: 1240px;
  --gut: 48px;
}

/* ============================================================
   Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--navy);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .18s ease, background .18s ease, border-color .18s ease; }
h1, h2, h3, p { margin: 0; }
::selection { background: var(--gold); color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--gut); padding-right: var(--gut); }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--navy); color: var(--ivory);
  padding: 14px 22px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
}
.skip:focus { left: 0; }

/* Shared type roles */
.eyebrow {
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-brown); font-weight: 700;
}
.eyebrow-dark {
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.h2 { font-family: var(--serif); font-weight: 400; line-height: 1.1; -webkit-text-stroke: 0.5px currentColor; }
.lede { font-size: 16px; line-height: 1.7; color: var(--text-body); }

/* ============================================================
   Utility bar
   ============================================================ */
.utility { background: var(--navy); color: #C9D0D9; font-weight: 600; }
.utility .wrap {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px 24px;
  padding-top: 9px; padding-bottom: 9px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
}
.utility a { color: var(--gold); letter-spacing: .14em; }
.utility a:hover { color: var(--ivory); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,242,235,0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
}
.nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px 40px;
  padding-top: 20px; padding-bottom: 20px;
}
.brand { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.monogram {
  position: relative;
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-brown); font-family: var(--serif);
  font-size: 11px; letter-spacing: .05em;
}
.brand-name { font-family: var(--serif); font-size: 18px; white-space: nowrap; -webkit-text-stroke: 0.4px currentColor; }
.brand-sub {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-brown); font-weight: 700; margin-top: 3px; white-space: nowrap;
}
.navlinks {
  display: flex; align-items: center; gap: 34px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-body); font-weight: 500;
}
.navlink { position: relative; padding-bottom: 4px; white-space: nowrap; }
.navlink::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--gold); transition: right .25s ease;
}
.navlink:hover { color: var(--gold-brown); }
.navlink:hover::after { right: 0; }

.btn-dark {
  background: var(--navy); color: var(--ivory);
  padding: 11px 22px; font-weight: 600; letter-spacing: .12em;
  white-space: nowrap;
}
.btn-dark:hover { background: var(--navy-hover); }

/* ============================================================
   Hero
   ============================================================ */
.hero { text-align: center; max-width: 940px; margin: 0 auto; padding: 116px var(--gut) 60px; }
.hero-eyebrow {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-bottom: 38px;
}
.hero-eyebrow .rule { height: 1px; width: 56px; background: var(--gold); opacity: .7; }
.hero-eyebrow .txt {
  font-size: 12px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold-brown); font-weight: 600;
}
.h1 {
  font-family: var(--serif); font-size: 68px; line-height: 1.1; font-weight: 400;
  margin-bottom: 30px; letter-spacing: -0.015em; text-wrap: balance;
  -webkit-text-stroke: 0.7px currentColor;
}
.hero-body {
  font-size: 18px; line-height: 1.8; color: var(--text-body);
  max-width: 580px; margin: 0 auto 44px; text-wrap: pretty;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-lg {
  padding: 17px 40px; font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700;
}
.btn-ghost {
  border: 1px solid var(--navy); color: var(--navy);
  padding: 17px 40px; font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600; white-space: nowrap;
}
.btn-ghost:hover { background: var(--navy); color: var(--ivory); }

/* ============================================================
   Hero visual
   ============================================================ */
.herovis { max-width: none; padding-left: 0; padding-right: 0; margin-bottom: 64px; }
.herovis-frame {
  position: relative; background: var(--ivory-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.herovis-frame img { width: 100%; height: 460px; object-fit: cover; }
.herovis-chip {
  position: absolute; left: 0; bottom: 0;
  padding: 22px 28px; background: var(--navy-chip);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}

/* ============================================================
   Asset types strip
   ============================================================ */
.assets-strip {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-soft); font-weight: 500;
}
.dot { color: var(--gold); }

/* ============================================================
   Credentials band
   ============================================================ */
.credentials {
  background: var(--navy);
  padding: 60px max(48px, calc((100% - 1240px) / 2));
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin: 40px 0 0;
}
.credbox { text-align: center; padding: 0 24px; }
.credbox + .credbox { border-left: 1px solid rgba(198,161,91,0.28); }
.credbox .val {
  font-family: var(--serif); font-size: 40px; color: var(--gold); margin-bottom: 10px;
}
.credbox .lbl {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-on-navy-mut);
}

/* ============================================================
   Capabilities
   ============================================================ */
.sec { padding-top: 108px; padding-bottom: 108px; }
.anchor { scroll-margin-top: 90px; }
.sec-head { text-align: center; margin-bottom: 68px; }
.sec-head .eyebrow { margin-bottom: 16px; }
.sec-head h2 { font-size: 46px; margin-bottom: 18px; }
.sec-head p { max-width: 620px; margin: 0 auto; }

.cap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.cap {
  background: var(--ivory-card);
  border: 1px solid var(--border-card);
  border-top: 3px solid var(--gold);
  padding: 48px 44px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.cap:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(12,29,46,0.10);
  border-color: var(--border-hover);
}
.cap .num { font-family: var(--serif); font-size: 34px; color: var(--gold); margin-bottom: 22px; }
.cap h3 { font-size: 22px; margin-bottom: 12px; font-weight: 700; }
.cap p { font-size: 15px; line-height: 1.75; color: var(--text-body); margin-bottom: 20px; }
.cap .sub {
  font-size: 13px; line-height: 2.1; color: var(--text-muted);
  border-top: 1px solid var(--border-card); padding-top: 16px;
}

/* ============================================================
   Mission
   ============================================================ */
.mission { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.mission-copy {
  background: var(--navy);
  display: flex; flex-direction: column; justify-content: center;
  padding: 88px 64px;
}
.mission-copy .eyebrow-dark { margin-bottom: 26px; }
.missionq {
  font-family: var(--serif); font-size: 32px; line-height: 1.5;
  color: var(--ivory); font-weight: 400;
  -webkit-text-stroke: 0.5px currentColor;
}
.mission-img { background: var(--ivory-card); min-height: 520px; }
.mission-img img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }

/* ============================================================
   Approach
   ============================================================ */
.band {
  background: var(--ivory-card);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}
.approach-grid { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 72px; }
.approach-grid h2 { font-size: 44px; margin-bottom: 24px; }
.approach-intro { font-size: 16px; line-height: 1.8; color: var(--text-body); margin-bottom: 36px; }
.approach-img { width: 100%; height: 320px; object-fit: cover; background: var(--ivory-card); }
.step { display: flex; gap: 28px; padding: 30px 0; border-top: 1px solid var(--border-light); }
.step:first-child { border-top: 2px solid var(--navy); }
.step .numeral { font-family: var(--serif); font-size: 22px; color: var(--gold); width: 48px; flex-shrink: 0; }
.step h3 { font-size: 21px; margin-bottom: 8px; font-weight: 700; }
.step p { font-size: 15px; line-height: 1.7; color: var(--text-body); }

/* ============================================================
   About
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-grid .eyebrow { margin-bottom: 18px; }
.about-lead {
  font-family: var(--serif); font-size: 28px; line-height: 1.5;
  margin-bottom: 28px; font-weight: 400;
  -webkit-text-stroke: 0.5px currentColor;
}
.about-body { font-size: 15px; line-height: 1.85; color: #45423C; }
.about-body + .about-body { margin-top: 20px; }
.about-img { width: 100%; height: 260px; object-fit: cover; margin-bottom: 24px; background: var(--ivory-card); }
.factstack {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--border-card); border: 1px solid var(--border-card);
}
.fact { background: var(--ivory-card); padding: 34px 30px; }
.fact .lbl {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-brown); font-weight: 700; margin-bottom: 10px;
}
.fact p { font-size: 14px; line-height: 1.7; color: var(--text-body); }

/* ============================================================
   Standards
   ============================================================ */
.standards-sec { padding-top: 96px; padding-bottom: 96px; }
.standards-head { text-align: center; margin-bottom: 60px; }
.standards-head .eyebrow { margin-bottom: 16px; }
.standards-head h2 { font-size: 44px; }
.standards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--border-light);
}
.standard { padding: 44px 38px; }
.standard + .standard { border-left: 1px solid var(--border-light); }
.standard .numeral { font-family: var(--serif); font-size: 22px; color: var(--gold); margin-bottom: 16px; }
.standard h3 { font-size: 18px; margin-bottom: 10px; font-weight: 700; }
.standard p { font-size: 14px; line-height: 1.75; color: var(--text-body); }

/* ============================================================
   Who we serve + inquiry
   ============================================================ */
.serve-sec {
  background: var(--navy); color: var(--ivory);
  scroll-margin-top: 70px;
  padding-top: 100px; padding-bottom: 100px;
}
.serve-head { text-align: center; margin-bottom: 64px; }
.serve-head .eyebrow-dark { margin-bottom: 20px; }
.serve-head h2 { font-size: 48px; margin-bottom: 18px; }
.serve-head p { font-size: 17px; line-height: 1.7; color: var(--text-on-navy); max-width: 600px; margin: 0 auto; }

.serve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 56px; }
.outlet {
  border: 1px solid rgba(198,161,91,0.35); padding: 44px 40px;
  transition: background .22s ease, border-color .22s ease;
}
.outlet:hover { background: rgba(198,161,91,0.07); border-color: rgba(198,161,91,0.6); }
.outlet .title { font-family: var(--serif); font-size: 26px; color: var(--gold); margin-bottom: 14px; }
.outlet p { font-size: 15px; line-height: 1.75; color: var(--text-on-navy); margin-bottom: 22px; }
.outlet .foot { font-size: 14px; line-height: 2; color: var(--text-on-navy-mut); }

.inquiry {
  max-width: 860px; margin: 0 auto;
  border-top: 1px solid rgba(198,161,91,0.28);
  padding-top: 56px; scroll-margin-top: 90px;
}
.inquiry-head { text-align: center; margin-bottom: 40px; }
.inquiry-head .eyebrow-dark { letter-spacing: .24em; margin-bottom: 20px; }
.inquiry-head .lead {
  font-family: var(--serif); font-size: 28px; line-height: 1.5;
  color: var(--ivory); margin-bottom: 14px;
  -webkit-text-stroke: 0.5px currentColor;
}
.inquiry-head .note { font-size: 15px; line-height: 1.7; color: var(--text-on-navy-mut); }

.panel { background: var(--ivory); color: var(--navy); padding: 52px; }
.panel-head {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 30px;
  padding-bottom: 20px; border-bottom: 1px solid var(--border-light);
}
.panel-head .t {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-brown); font-weight: 700;
}
.panel-head .r { font-size: 12px; color: var(--text-faint); letter-spacing: .04em; }

.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field-full { margin-top: 20px; }
label {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-body); display: block; margin-bottom: 8px;
}
input[type=text], input[type=email], select, textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--border-input); background: #fff;
  font-family: var(--sans); font-size: 15px; color: var(--navy);
  border-radius: 0; -webkit-appearance: none; appearance: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2355524B' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 42px;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,161,91,0.16);
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.callout {
  margin-top: 18px; border-left: 2px solid var(--err-border);
  background: var(--err-bg); padding: 13px 18px;
  font-size: 14px; color: var(--err-text);
}
.panel-foot {
  margin-top: 30px; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.panel-foot .reassure {
  font-size: 13px; line-height: 1.6; color: var(--text-faint); max-width: 380px;
}
.submit {
  background: var(--navy); color: var(--ivory); border: none;
  padding: 17px 44px; font-family: var(--sans); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  cursor: pointer; border-radius: 0;
  transition: background .18s ease;
}
.submit:hover { background: var(--navy-hover); }
.submit[disabled] { opacity: .55; cursor: default; }

.success { background: var(--ivory); color: var(--navy); padding: 64px 52px; text-align: center; }
.success .check {
  width: 54px; height: 54px; margin: 0 auto 24px;
  border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-brown); font-family: var(--serif); font-size: 22px;
}
.success h3 { font-family: var(--serif); font-size: 30px; margin-bottom: 14px; font-weight: 400; }
.success p { font-size: 15px; line-height: 1.8; color: var(--text-body); margin: 0 auto 26px; max-width: 440px; }
.refchip {
  display: inline-block; border: 1px solid var(--border-input);
  padding: 14px 26px; font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-brown);
}
.again {
  margin-top: 30px;
}
.again button {
  background: none; border: none; font-family: var(--sans);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-body); cursor: pointer;
  border-bottom: 1px solid var(--gold); padding-bottom: 3px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--navy-deep); padding: 72px var(--gut) 40px; }
.footer-inner { max-width: var(--wrap); margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 64px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(198,161,91,0.22);
}
.footer .monogram { width: 38px; height: 38px; color: var(--gold); font-size: 10px; }
.footer-brand { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.footer-brand .nm { font-family: var(--serif); font-size: 19px; color: var(--ivory); }
.footer-blurb { font-size: 14px; line-height: 1.8; color: var(--footer-body); max-width: 380px; }
.footer h2 {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 18px;
  font-family: var(--sans);
}
.footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: var(--footer-link); }
.footer-col a:hover { color: var(--gold); }
.footer-col .faint { color: var(--footer-faint); }
.footer-bottom {
  padding-top: 26px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-legal {
  font-size: 12px; color: var(--footer-copy); letter-spacing: .04em;
  max-width: 780px; line-height: 1.7;
}
.footer-tag {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  :root { --gut: 28px; }
  .cap-grid, .serve-grid, .about-grid, .approach-grid, .mission, .footer-grid,
  .credentials, .standards { grid-template-columns: 1fr; }
  .credentials { gap: 0; padding: 40px 24px; }
  .credbox + .credbox { border-left: none; border-top: 1px solid rgba(198,161,91,0.28); }
  .credbox { padding: 28px 24px; }
  .credbox:first-child { padding-top: 0; }
  .standard + .standard { border-left: none; border-top: 1px solid var(--border-light); }
  .about-grid { gap: 56px; }
  .approach-grid { gap: 36px; }
  .footer-grid { gap: 40px; }
  .h1 { font-size: 44px; }
  .sec-head h2, .approach-grid h2, .standards-head h2, .serve-head h2 { font-size: 34px; }
  .missionq { font-size: 24px; }
  .about-lead { font-size: 24px; }
  .sec, .standards-sec, .serve-sec { padding-top: 72px; padding-bottom: 72px; }
  .hero { padding: 72px var(--gut) 48px; }
  .nav .wrap { padding-top: 16px; padding-bottom: 16px; }
  .navlinks { gap: 20px; font-size: 11px; }
  .brand-sub { display: none; }
  .mission-copy { padding: 64px 32px; }
  .mission-img, .mission-img img { min-height: 340px; height: 340px; }
  .cap { padding: 36px 30px; }
  .outlet { padding: 34px 28px; }
  .panel { padding: 34px 28px; }
  .success { padding: 48px 28px; }
  .footer { padding: 56px var(--gut) 32px; }
}

@media (max-width: 700px) {
  .fields { grid-template-columns: 1fr; }
  .herovis-frame img { height: 300px; }
  .hero-eyebrow .rule { display: none; }
  .hero-eyebrow { gap: 0; }
  .hero-eyebrow .txt { font-size: 11px; letter-spacing: .24em; }
  .h1 { font-size: 34px; }
  .hero-body { font-size: 16px; }
  .hero-cta .btn-lg, .hero-cta .btn-ghost { width: 100%; text-align: center; }
  .nav .wrap { gap: 14px 20px; }
  .navlinks { gap: 16px; width: 100%; justify-content: space-between; }
  .brand-name { font-size: 16px; white-space: normal; }
  .utility .wrap { justify-content: center; text-align: center; font-size: 10px; }
  .panel-head { gap: 6px; }
  .panel-foot { flex-direction: column; align-items: stretch; }
  .panel-foot .submit { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .assets-strip { gap: 14px; font-size: 11px; }
}

@media (max-width: 420px) {
  .navlinks { font-size: 10px; gap: 12px; }
  .btn-dark { padding: 10px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  .cap:hover { transform: none; }
}

@media print {
  .nav, .utility, .hero-cta, .inquiry { display: none; }
  body { background: #fff; }
}

/* ============================================================
   Subpage additions
   ============================================================ */
.page-hero { text-align: center; max-width: 880px; margin: 0 auto; padding: 84px var(--gut) 72px; }
.crumbs {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-soft); font-weight: 500; margin-bottom: 26px;
}
.crumbs a:hover { color: var(--gold-brown); }
.crumbs .sep { color: var(--gold); }
.h1p {
  font-family: var(--serif); font-size: 52px; line-height: 1.12; font-weight: 400;
  margin-bottom: 26px; letter-spacing: -0.01em; text-wrap: balance;
  -webkit-text-stroke: 0.6px currentColor;
}
.page-lead {
  font-size: 17px; line-height: 1.8; color: var(--text-body);
  max-width: 620px; margin: 0 auto; text-wrap: pretty;
}

.scope {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border-card); border: 1px solid var(--border-card);
}
.scope-cell { background: var(--ivory-card); padding: 40px 34px; }
.scope-cell h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.scope-cell p { font-size: 14px; line-height: 1.75; color: var(--text-body); }
.scope-cell .numeral { font-family: var(--serif); font-size: 20px; color: var(--gold); margin-bottom: 14px; }

.quoteband { background: var(--navy); padding: 92px var(--gut); }
.quoteband .inner { max-width: 880px; margin: 0 auto; text-align: center; }
.quoteband .eyebrow-dark { margin-bottom: 26px; }
.quoteband .q {
  font-family: var(--serif); font-size: 30px; line-height: 1.5;
  color: var(--ivory); font-weight: 400;
  -webkit-text-stroke: 0.5px currentColor;
}

.cta-sec { text-align: center; padding: 100px var(--gut); max-width: 860px; margin: 0 auto; }
.cta-sec h2 { font-size: 40px; margin-bottom: 18px; }
.cta-sec p { font-size: 16px; line-height: 1.7; color: var(--text-body); max-width: 540px; margin: 0 auto 40px; }

.related-strip {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: center;
  gap: 22px; flex-wrap: wrap;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-soft); font-weight: 500;
}
.related-strip a:hover { color: var(--gold-brown); }

.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--border-light); }
.faq-item:last-child { border-bottom: 1px solid var(--border-light); }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; align-items: baseline; gap: 24px;
  padding: 26px 8px; font-size: 18px; font-weight: 600; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .marker { font-family: var(--serif); color: var(--gold); font-size: 20px; flex-shrink: 0; width: 20px; }
.faq-item[open] summary .marker { color: var(--gold-brown); }
.faq-item .a { padding: 0 8px 30px 52px; font-size: 15px; line-height: 1.85; color: var(--text-body); max-width: 720px; }

@media (max-width: 1000px) {
  .h1p { font-size: 36px; }
  .scope { grid-template-columns: 1fr; }
  .quoteband .q { font-size: 23px; }
  .cta-sec h2 { font-size: 30px; }
  .page-hero { padding: 56px var(--gut) 52px; }
  .faq-item summary { font-size: 16px; gap: 16px; }
  .faq-item .a { padding-left: 44px; }
}
