:root {
  --gold-bg: #ead17a;
  --gold-bg-soft: #f8edc4;
  --gold-bg-light: #fff7d8;
  --gold-dark: #9a741e;
  --gold-border: #b68c27;
  --burgundy: #781427;
  --burgundy-dark: #4f0d1c;
  --black: #12100b;
  --charcoal: #292214;
  --cream: #fff8df;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(28, 20, 6, .20);
  --radius: 18px;
  --max-width: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, .44), transparent 34rem),
    linear-gradient(180deg, var(--gold-bg-soft) 0%, #ecd483 38%, var(--gold-bg-light) 100%);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
.container { width: min(var(--max-width), calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; top: -100px; left: 20px; background: var(--burgundy); color: white; padding: 10px 14px; z-index: 99; }
.skip-link:focus { top: 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 237, 191, .96);
  border-bottom: 1px solid rgba(126, 86, 14, .28);
  backdrop-filter: blur(10px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; min-width: 270px; }
.brand-icon { color: var(--gold-dark); width: 72px; height: 44px; display: grid; place-items: center; }
.brand-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.brand-text strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.35rem, 2.4vw, 2.05rem); line-height: 1; letter-spacing: -.02em; color: var(--black); }
.brand-text small { display: block; margin-top: 8px; font-size: .68rem; letter-spacing: .29em; text-transform: uppercase; color: var(--burgundy); font-weight: 800; }
.primary-nav { display: flex; align-items: center; gap: 26px; font-weight: 700; }
.primary-nav a { text-decoration: none; position: relative; }
.primary-nav a:not(.nav-button)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--burgundy); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.primary-nav a:hover::after { transform: scaleX(1); }
.nav-button { color: #fff; background: linear-gradient(135deg, var(--burgundy), #9b1d34); padding: 12px 18px; border-radius: 8px; box-shadow: 0 10px 20px rgba(120, 20, 39, .20); }
.menu-toggle { display: none; border: 1px solid rgba(41, 34, 20, .35); background: transparent; border-radius: 8px; padding: 9px 12px; font-weight: 800; color: var(--black); }

.hero { position: relative; min-height: 650px; color: var(--white); overflow: hidden; background: #101010; }
.hero-background { position: absolute; inset: 0; background-image: url("assets/bridge-night.png"); background-size: cover; background-position: center; transform: scale(1.03); }
.hero-overlay { position: absolute; inset: 0; background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.72) 34%, rgba(0,0,0,.25) 66%, rgba(0,0,0,.60) 100%),
    linear-gradient(0deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.12) 58%, rgba(0,0,0,.36) 100%);
}
.hero-content { position: relative; display: grid; grid-template-columns: minmax(0, 720px) 210px; gap: 24px; align-items: center; min-height: 650px; padding: 90px 0; }
.eyebrow { margin: 0 0 16px; text-transform: uppercase; letter-spacing: .42em; font-size: .78rem; font-weight: 900; }
.eyebrow.burgundy { color: var(--burgundy); }
.hero .eyebrow { color: #f6d778; text-shadow: 0 1px 8px rgba(0,0,0,.75); }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.05; margin: 0; }
h1 { font-size: clamp(3.3rem, 7vw, 6.6rem); letter-spacing: -.055em; max-width: 870px; color: #fff9df; text-shadow: 0 4px 18px rgba(0,0,0,.66); }
h1 span { display: block; color: #ffdf7e; }
.hero-lead { max-width: 650px; font-size: clamp(1.05rem, 2vw, 1.35rem); line-height: 1.52; color: #fff7dc; text-shadow: 0 3px 12px rgba(0,0,0,.8); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 28px; border-radius: 8px; text-decoration: none; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; border: 2px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(0,0,0,.24); }
.button-red { color: #fff; background: linear-gradient(135deg, var(--burgundy), #a21e39); }
.button-outline { color: #fff8d5; border-color: rgba(255, 239, 164, .95); background: rgba(0,0,0,.26); }
.hero-note { margin-top: 34px; color: #f4d777; letter-spacing: .32em; text-transform: uppercase; font-weight: 900; font-size: .78rem; }
.side-statement { justify-self: end; display: grid; gap: 18px; max-width: 205px; text-transform: uppercase; letter-spacing: .20em; color: #fff0a9; font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; line-height: 1.35; }
.side-statement span { display: block; border-left: 4px solid var(--gold-bg); padding-left: 16px; text-shadow: 0 3px 10px rgba(0,0,0,.85); }

.mission-band { background: linear-gradient(90deg, var(--burgundy-dark), var(--burgundy), var(--burgundy-dark)); color: #fff6d6; border-block: 1px solid rgba(255,255,255,.18); }
.mission-band-inner { display: flex; justify-content: center; gap: clamp(20px, 6vw, 80px); padding: 18px 0; text-transform: uppercase; letter-spacing: .28em; font-size: .78rem; font-weight: 900; }

.section { padding: clamp(54px, 7vw, 86px) 0; }
.two-column { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(28px, 7vw, 86px); align-items: start; }
h2 { font-size: clamp(2rem, 4.5vw, 3.7rem); color: var(--black); letter-spacing: -.035em; }
h3 { font-size: 1.4rem; color: var(--burgundy); }
.prose p, .section-heading p, .panel-copy p, .referral-section p, .contact-grid p, .notice-card p { font-size: 1.08rem; color: var(--charcoal); margin: 0 0 16px; }
.prose p:last-child { margin-bottom: 0; }

.section-cards { background: rgba(255, 248, 218, .57); border-block: 1px solid rgba(148, 108, 25, .22); }
.section-heading { max-width: 820px; margin-bottom: 32px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.card-grid { display: grid; gap: 18px; }
.card-grid.five { grid-template-columns: repeat(5, 1fr); }
.feature-card, .requirements-card, .cta-box, .contact-card, .notice-card { background: rgba(255, 250, 228, .84); border: 1px solid rgba(129, 91, 18, .38); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.feature-card { min-height: 278px; text-align: center; }
.circle-icon { width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 18px; background: #e1bd55; border: 2px solid var(--gold-dark); color: var(--burgundy); font-weight: 900; font-size: 2rem; font-family: Georgia, "Times New Roman", serif; }
.feature-card p { margin: 14px 0 0; color: var(--charcoal); }

.quote-band { background: linear-gradient(rgba(75,13,28,.9), rgba(75,13,28,.9)), url("assets/bridge-night.png") center/cover; color: #fff7dc; border-block: 1px solid rgba(255,255,255,.18); }
.quote-band-inner { padding: 34px 0; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.quote-band p { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.6rem, 4vw, 2.6rem); font-style: italic; }
.quote-band span { text-transform: uppercase; letter-spacing: .28em; font-weight: 900; font-size: .75rem; white-space: nowrap; }

.split-panel { display: grid; grid-template-columns: 1.08fr .92fr; gap: 28px; align-items: stretch; }
.requirements-card { background: linear-gradient(180deg, #fff8da, #eed47c); }
.requirements-card h3 { margin-bottom: 18px; font-size: 2rem; color: var(--black); }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 30px; color: var(--charcoal); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--burgundy); font-weight: 900; }

.referral-section { background: rgba(255,255,255,.23); }
.align-center { align-items: center; }
.cta-box { border-color: var(--burgundy); }
.cta-box h3 { font-size: 2rem; color: var(--black); margin-bottom: 10px; }
.notice-card { max-width: 980px; }
.notice-card h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; align-items: start; }
dl { margin: 0; display: grid; gap: 16px; }
dt { font-size: .78rem; color: var(--burgundy); text-transform: uppercase; letter-spacing: .18em; font-weight: 900; }
dd { margin: 3px 0 0; font-size: 1.05rem; color: var(--black); }
dd a { color: var(--burgundy); font-weight: 900; }

.site-footer { color: #fff4cc; background: #120b09; padding: 34px 0 20px; border-top: 6px solid var(--burgundy); }
.site-footer .brand-text strong { color: #ffdc72; font-size: 1.8rem; }
.site-footer .brand-text small { color: #fff2b5; }
.site-footer .brand-icon { color: #ffdc72; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; align-items: start; }
.footer-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-nav a { color: #fff4cc; text-decoration: none; font-weight: 700; }
.footer-contact p { margin: 0 0 8px; }
.footer-contact a { color: #ffdc72; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.18); margin-top: 28px; padding-top: 18px; display: flex; justify-content: space-between; gap: 18px; color: rgba(255,244,204,.82); font-size: .88rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 1050px) {
  .card-grid.five { grid-template-columns: repeat(2, 1fr); }
  .feature-card:last-child { grid-column: span 2; }
  .hero-content { grid-template-columns: 1fr; }
  .side-statement { justify-self: start; grid-template-columns: repeat(3, 1fr); max-width: none; }
  .side-statement span { border-left: 0; border-top: 3px solid var(--gold-bg); padding-left: 0; padding-top: 10px; }
}

@media (max-width: 860px) {
  .header-inner { min-height: 72px; }
  .menu-toggle { display: inline-flex; }
  .primary-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 20px; background: rgba(250,237,191,.98); border-bottom: 1px solid rgba(126,86,14,.28); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 13px 0; }
  .nav-button { text-align: center; padding: 12px 16px; }
  .hero { min-height: 560px; }
  .hero-content { min-height: 560px; padding: 64px 0; }
  h1 { font-size: clamp(2.6rem, 13vw, 4.4rem); }
  .two-column, .split-panel, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .quote-band-inner, .footer-bottom { display: block; }
  .quote-band span { display: block; margin-top: 12px; white-space: normal; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max-width)); }
  .brand { min-width: 0; gap: 10px; }
  .brand-icon { width: 52px; }
  .brand-text strong { font-size: 1.35rem; }
  .brand-text small { font-size: .56rem; letter-spacing: .16em; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .mission-band-inner { display: grid; grid-template-columns: 1fr 1fr; text-align: center; gap: 10px; letter-spacing: .16em; }
  .card-grid.five { grid-template-columns: 1fr; }
  .feature-card:last-child { grid-column: auto; }
  .side-statement { grid-template-columns: 1fr; }
  .feature-card, .requirements-card, .cta-box, .contact-card, .notice-card { padding: 24px; }
}
