:root {
  --black: #0b0b0c;
  --ink: #151516;
  --panel: #1d1d1f;
  --gold: #d6aa45;
  --gold-bright: #efc966;
  --cream: #f7f3e9;
  --paper: #fbfaf6;
  --muted: #aaa8a2;
  --line: rgba(214, 170, 69, .28);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 1rem/1.65 Inter, system-ui, sans-serif; }
a { color: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: var(--gold); color: var(--black); padding: .75rem 1rem; font-weight: 700; }
.skip-link:focus { top: 1rem; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(11,11,12,.96); border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.nav-wrap { width: min(var(--max), calc(100% - 2rem)); min-height: 82px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .9rem; color: white; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 54px; height: 54px; border: 2px solid var(--gold); color: var(--gold); font: 800 1.45rem/1 "Barlow Condensed", sans-serif; letter-spacing: .03em; transform: skew(-5deg); }
.brand-copy { font: 700 1.08rem/1.05 "Barlow Condensed", sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.brand-copy small { display: block; margin-top: .35rem; color: var(--gold); font: 600 .68rem/1 Inter, sans-serif; letter-spacing: .12em; }
nav { display: flex; align-items: center; gap: 1.75rem; }
nav a { color: #f2f2ef; text-decoration: none; font-size: .9rem; font-weight: 600; }
nav a:hover, nav a:focus-visible { color: var(--gold-bright); }
.nav-cta { border: 1px solid var(--gold); padding: .7rem 1rem; }
.menu-button { display: none; background: transparent; color: white; border: 1px solid rgba(255,255,255,.35); padding: .55rem .8rem; font: 600 .9rem Inter, sans-serif; }

.hero { min-height: 690px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; gap: 2.5rem; padding: 7rem clamp(1rem, 4vw, 4.5rem) 4rem; overflow: hidden; background:
  linear-gradient(90deg, rgba(7,7,8,.98) 0%, rgba(7,7,8,.89) 50%, rgba(7,7,8,.5) 100%),
  url('assets/hero.png') center 60%/cover no-repeat;
  color: white;
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to right, black, transparent 75%); }
.hero::after { content: ""; position: absolute; left: 0; bottom: 0; width: 56%; height: 5px; background: var(--gold); }
.hero-content, .route-card { position: relative; z-index: 2; }
.hero-content { width: 100%; }
.eyebrow { margin: 0 0 1rem; color: var(--gold-bright); font-weight: 700; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow.dark { color: #8a6519; }
h1, h2, h3 { font-family: "Barlow Condensed", sans-serif; line-height: .98; text-transform: uppercase; margin-top: 0; }
h1 { max-width: none; margin-bottom: 1.4rem; font-size: clamp(4.2rem, 7.8vw, 8rem); letter-spacing: -.035em; white-space: nowrap; }
h1 span { color: var(--gold-bright); }
.hero-lead { max-width: 960px; margin: 0 0 2rem; color: #e1e0dc; font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: .85rem 1.25rem; border: 1px solid transparent; text-decoration: none; font-weight: 700; transition: transform .2s ease, background-color .2s ease, color .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--black); }
.button-gold:hover, .button-gold:focus-visible { background: var(--gold-bright); }
.button-outline { border-color: rgba(255,255,255,.55); color: white; }
.button-outline:hover, .button-outline:focus-visible { border-color: white; background: white; color: var(--black); }
.button-dark { background: var(--black); color: white; }
.button-dark:hover, .button-dark:focus-visible { background: #333; }
.hero-note { margin: 1rem 0 0; color: #aaa; font-size: .84rem; }
.route-card { width: 100%; display: grid; grid-template-columns: auto auto minmax(260px, 1fr); align-items: center; gap: 1.5rem; padding: 1.15rem 1.4rem; border: 1px solid var(--line); background: rgba(10,10,11,.84); backdrop-filter: blur(10px); }
.route-card-label { display: block; color: var(--gold); font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; }
.route-card strong { display: block; margin: 0; font: 800 2.6rem/1 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.route-card p { margin: 0; color: #c6c4bf; font-size: .92rem; }
.route-line { display: flex; align-items: center; gap: 0; }
.route-line span { width: 9px; height: 9px; border: 2px solid var(--gold); border-radius: 50%; }
.route-line { min-width: 180px; }
.route-line i { flex: 1; height: 1px; background: var(--gold); }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--gold); }
.trust-strip div { padding: 1.25rem 1.5rem; border-right: 1px solid rgba(0,0,0,.2); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { font: 700 1.2rem/1.1 "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .05em; }
.trust-strip span { margin-top: .3rem; font-size: .78rem; }

.section { padding: 7rem max(1rem, calc((100vw - var(--max))/2)); }
.section-heading { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem 4rem; align-items: end; }
.section-heading .eyebrow { grid-column: 1/-1; margin-bottom: -1rem; }
h2 { margin-bottom: 0; font-size: clamp(3rem, 6vw, 5.25rem); letter-spacing: -.02em; }
.section-heading > p:last-child { margin: 0 0 .4rem; color: #5f5c55; font-size: 1.08rem; }
.opportunity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 4rem; background: #d8d3c6; border: 1px solid #d8d3c6; }
.opportunity-card { min-height: 330px; display: flex; flex-direction: column; padding: 2.2rem; background: var(--paper); }
.opportunity-card.featured { background: #f1e4bd; }
.card-number { color: #8a6519; font: 700 .8rem/1 Inter, sans-serif; letter-spacing: .12em; }
.opportunity-card h3 { margin: auto 0 1rem; font-size: 3.3rem; }
.opportunity-card p { color: #5f5c55; }
.opportunity-card a { margin-top: 1rem; color: #6f4d0f; font-weight: 700; text-decoration: none; }
.opportunity-card a:hover { text-decoration: underline; }

.dark-section { background: var(--black); color: white; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; }
.large-copy { max-width: 540px; color: #bcbab5; font-size: 1.1rem; }
.process-list { list-style: none; margin: 0; padding: 0; }
.process-list li { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; padding: 1.6rem 0; border-top: 1px solid rgba(255,255,255,.15); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.process-list li > span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--gold); color: var(--gold); font-weight: 700; }
.process-list strong { font: 700 1.35rem/1.1 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.process-list p { margin: .45rem 0 0; color: #aaa; }
.qualification-box { display: flex; align-items: center; justify-content: space-between; gap: 3rem; margin-top: 5rem; padding: 2.2rem; border-left: 5px solid var(--gold); background: var(--panel); }
.qualification-box h3 { margin-bottom: .55rem; font-size: 2.4rem; }
.qualification-box p:not(.eyebrow) { margin: 0; color: #aaa; }
.contact-actions { min-width: 235px; display: flex; flex-direction: column; align-items: stretch; gap: .8rem; text-align: center; }
.text-link { color: var(--gold-bright); font-weight: 700; text-decoration: none; }

.carrier-section { display: grid; grid-template-columns: 1.05fr .95fr; gap: 5rem; align-items: center; }
.carrier-copy > p:not(.eyebrow) { max-width: 610px; color: #5f5c55; font-size: 1.08rem; }
.check-list { list-style: none; margin: 2rem 0; padding: 0; }
.check-list li { position: relative; padding: .75rem 0 .75rem 2rem; border-bottom: 1px solid #ded9ce; font-weight: 600; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #8a6519; font-weight: 800; }
.mission-card { position: relative; padding: 3.2rem; background: var(--ink); color: white; border: 1px solid #2d2d30; box-shadow: 18px 18px 0 var(--gold); }
.mission-card .star { position: absolute; right: 2rem; top: 1.6rem; color: var(--gold); font-size: 1.6rem; }
.mission-card blockquote { margin: 1.8rem 0; color: var(--gold-bright); font: 700 2.4rem/1.05 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.mission-card > p:not(.eyebrow) { color: #c1c0bc; }
.founder-line { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.15); }
.founder-initials { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: var(--black); font-weight: 800; }
.founder-line strong, .founder-line small { display: block; }
.founder-line small { color: #aaa; }

.contact-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; padding: 5rem max(1rem, calc((100vw - var(--max))/2)); background: var(--gold); color: var(--black); }
.contact-section .eyebrow { color: #59400d; }
.contact-section h2 { font-size: clamp(3rem, 5vw, 4.8rem); }
.contact-details { display: grid; gap: 1rem; }
.contact-details a { padding: 1rem 0; border-bottom: 2px solid rgba(0,0,0,.35); font: 700 clamp(1rem, 2vw, 1.35rem)/1.2 Inter, sans-serif; text-decoration: none; overflow-wrap: anywhere; }
.contact-details span { display: block; margin-bottom: .35rem; font: 700 .7rem/1 Inter, sans-serif; letter-spacing: .14em; text-transform: uppercase; }

.legal-section { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; padding: 3rem 0; }
.legal-section details { border-top: 1px solid #d6d0c4; }
.legal-section details:last-child { border-bottom: 1px solid #d6d0c4; }
.legal-section summary { cursor: pointer; padding: 1.2rem 0; font-weight: 700; }
.legal-copy { max-width: 860px; padding: 0 0 1.3rem; color: #5e5a52; font-size: .9rem; }
.legal-copy p { margin: 0 0 1rem; }

footer { padding: 4rem max(1rem, calc((100vw - var(--max))/2)) 1.5rem; background: var(--black); color: white; }
.footer-main { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 3rem; align-items: center; }
.footer-main > p { color: #aaa; }
.footer-links { display: flex; gap: 1.3rem; }
.footer-links a { color: #ddd; font-size: .9rem; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.12); color: #777; font-size: .78rem; }

@media (max-width: 900px) {
  .menu-button { display: inline-block; }
  nav { display: none; position: absolute; left: 0; right: 0; top: 82px; flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 1rem 1.2rem; background: var(--black); border-bottom: 1px solid var(--line); }
  nav.open { display: flex; }
  nav a { padding: .9rem .5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-cta { margin-top: .6rem; text-align: center; }
  .hero { min-height: 760px; gap: 2rem; padding-top: 5rem; }
  h1 { white-space: normal; font-size: clamp(4rem, 13vw, 7rem); }
  .route-card { grid-template-columns: auto 1fr; max-width: 620px; }
  .route-card p { grid-column: 1/-1; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip div:nth-child(2) { border-right: 0; }
  .trust-strip div:nth-child(-n+2) { border-bottom: 1px solid rgba(0,0,0,.2); }
  .section-heading, .split-layout, .carrier-section, .contact-section { grid-template-columns: 1fr; }
  .split-layout, .carrier-section { gap: 3rem; }
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-wrap { min-height: 74px; }
  .brand-mark { width: 46px; height: 46px; }
  .brand-copy { font-size: .92rem; }
  .brand-copy small { font-size: .58rem; }
  nav { top: 74px; }
  .hero { min-height: auto; padding-top: 5rem; padding-bottom: 3.5rem; background-position: 64% center; }
  h1 { font-size: clamp(3.6rem, 18vw, 5.2rem); }
  .hero-actions .button { width: 100%; }
  .route-card { display: none; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.2); }
  .section { padding-top: 5rem; padding-bottom: 5rem; }
  .opportunity-grid { grid-template-columns: 1fr; }
  .opportunity-card { min-height: 280px; }
  .qualification-box { align-items: stretch; flex-direction: column; }
  .mission-card { padding: 2rem; box-shadow: 9px 9px 0 var(--gold); }
  .mission-card blockquote { font-size: 2rem; }
  .contact-section { gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
}

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