:root {
  --navy: #073358;
  --navy-dark: #051f36;
  --navy-soft: #0d456f;
  --gold: #b8954a;
  --gold-light: #d2b568;
  --cream: #f7f4ee;
  --paper: #ffffff;
  --ink: #1f2933;
  --muted: #5f6b76;
  --line: rgba(7, 51, 88, 0.14);
  --shadow: 0 20px 60px rgba(7, 51, 88, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fbfaf7;
  font-family: "Inter", "Aptos", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 999;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.logo-link { display: inline-flex; align-items: center; }
.site-logo { width: min(245px, 54vw); height: auto; }
.site-nav { display: flex; align-items: center; gap: 10px; }
.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--navy);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { background: rgba(7, 51, 88, 0.08); color: var(--navy); }
.nav-cta { background: var(--navy) !important; color: white !important; }
.nav-cta:hover { background: var(--gold) !important; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  padding: 9px;
}
.menu-toggle span { display: block; height: 2px; background: var(--navy); margin: 6px 0; border-radius: 2px; }

h1, h2, h3, .eyebrow {
  margin-top: 0;
}
h1, h2, h3 {
  font-family: "Inter", "Aptos", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 800;
}
h1 { font-size: clamp(2.85rem, 6.4vw, 5.6rem); max-width: 900px; }
h2 { font-size: clamp(1.95rem, 3.8vw, 3.35rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1rem; }

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 0.78rem;
}
.eyebrow.light { color: var(--gold-light); }
.section-pad {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) 0;
}
.center { text-align: center; margin-inline: auto; }
.narrow { max-width: 760px; }
.section-heading { max-width: 830px; margin-bottom: 38px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 90px);
}
.hero-lede { max-width: 720px; font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: white; box-shadow: 0 16px 35px rgba(7, 51, 88, 0.18); }
.button-primary:hover { background: var(--gold); color: white; }
.button-secondary { color: var(--navy); border-color: var(--line); background: white; }
.button-secondary:hover { color: var(--navy); box-shadow: var(--shadow); }
.button-light { background: white; color: var(--navy); }
.button-light:hover { color: var(--navy); background: var(--gold-light); }
.text-link { font-weight: 800; border-bottom: 2px solid var(--gold); }

.hero-card {
  background: radial-gradient(circle at top right, rgba(210, 181, 104, 0.22), transparent 42%), linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-radius: 34px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 5vw, 56px);
  box-shadow: var(--shadow);
  color: white;
  overflow: hidden;
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  pointer-events: none;
}
.hero-card h2 {
  color: white;
  max-width: 560px;
  margin-bottom: 18px;
}
.hero-card p:not(.eyebrow) {
  color: rgba(255,255,255,0.82);
  max-width: 520px;
}
.hero-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-card-list span {
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  font-weight: 700;
}

.intro-band {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}
.intro-band::after {
  content: "";
  position: absolute;
  inset: auto -120px -210px auto;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  background: rgba(210,181,104,0.12);
}
.intro-inner {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 88px) 0;
  position: relative;
  z-index: 1;
}
.intro-inner h2 { color: white; }
.intro-inner p:not(.eyebrow) { font-size: 1.18rem; color: rgba(255,255,255,0.82); }

.two-column {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(28px, 6vw, 70px);
  border-bottom: 1px solid var(--line);
}
.rich-text { font-size: 1.08rem; color: var(--muted); }

.approach-grid-section { padding-top: clamp(70px, 8vw, 100px); }
.card-grid {
  display: grid;
  gap: 22px;
}
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.info-card, .mini-card, .testimonial-card, .contact-card, .contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(7, 51, 88, 0.06);
}
.info-card {
  padding: 30px;
  min-height: 280px;
}
.info-card p, .mini-card p { color: var(--muted); }
.card-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(184, 149, 74, 0.13);
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 24px;
}
.featured-card { background: var(--navy); color: white; transform: translateY(-12px); }
.featured-card h3 { color: white; }
.featured-card p { color: rgba(255,255,255,0.82); }
.featured-card .card-number { background: rgba(255,255,255,0.12); color: var(--gold-light); }

.split-feature {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(32px, 7vw, 88px);
  align-items: start;
}
.feature-copy {
  position: sticky;
  top: 130px;
}
.feature-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.mini-card { padding: 26px; }
.mini-card h3 { margin-bottom: 10px; }

.process-section {
  background: linear-gradient(180deg, transparent 0, transparent 80px, rgba(7, 51, 88, 0.045) 80px, rgba(7, 51, 88, 0.045) 100%);
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  padding-right: max(20px, calc((100% - var(--max)) / 2));
}
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.timeline article {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
}
.timeline span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-weight: 900;
}
.timeline p { color: var(--muted); }

.cta-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto clamp(60px, 7vw, 96px);
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: white;
  border-radius: 34px;
  padding: clamp(34px, 6vw, 68px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow);
}
.cta-section h2 { color: white; margin-bottom: 12px; }
.cta-section p:not(.eyebrow) { color: rgba(255,255,255,0.82); max-width: 720px; }

.page-hero {
  background: linear-gradient(135deg, rgba(7, 51, 88, 0.96), rgba(5, 31, 54, 0.94)), radial-gradient(circle at top right, rgba(210,181,104,0.42), transparent 42%);
  color: white;
  padding: clamp(70px, 11vw, 132px) max(20px, calc((100% - var(--max)) / 2));
}
.page-hero h1 { color: white; margin-bottom: 20px; }
.page-hero p:not(.eyebrow) { max-width: 760px; font-size: 1.18rem; color: rgba(255,255,255,0.82); }
.testimonials-hero, .contact-hero { min-height: 380px; display: flex; align-items: center; }

.featured-testimonial {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: 0.78;
  color: var(--gold);
}
blockquote { margin: 0; }
blockquote p {
  font-family: "Inter", "Aptos", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  font-size: clamp(1.3rem, 2.55vw, 2.25rem);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.025em;
}
blockquote cite { display: block; margin-top: 22px; color: var(--muted); font-style: normal; font-weight: 800; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card p { color: var(--muted); }
.testimonial-card footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(26px, 5vw, 60px);
  align-items: start;
}
.contact-card, .contact-form { padding: clamp(24px, 4vw, 38px); }
.contact-card { position: sticky; top: 130px; }
.contact-card hr { border: 0; border-top: 1px solid var(--line); margin: 26px 0; }
.contact-line { margin-bottom: 0.7rem; }
.small-note { font-size: 0.93rem; color: var(--muted); }
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 800;
}
.two-inputs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(7, 51, 88, 0.22);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(184, 149, 74, 0.28);
  border-color: var(--gold);
}
.hidden-field { display: none; }
.form-status { margin-top: 14px; color: var(--muted); }

.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.78);
  padding: 48px max(20px, calc((100% - var(--max)) / 2)) 28px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  padding-bottom: 30px;
}
.footer-logo { width: 220px; margin-bottom: 16px; }
.site-footer a { color: white; }
.site-footer a:hover { color: var(--gold-light); }
.footer-contact { min-width: 220px; }
.footer-bottom {
  padding-top: 24px;
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
}
.disclaimer { color: rgba(255,255,255,0.58); max-width: 980px; }

@media (max-width: 980px) {
  .hero, .two-column, .split-feature, .contact-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 54px; }
  .hero-card { min-height: 340px; }
  .feature-copy, .contact-card { position: static; }
  .card-grid.three, .timeline, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .featured-card { transform: none; }
  .cta-section { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  .site-header { padding: 14px 20px; }
  .menu-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { text-align: center; }
  .hero-actions, .button { width: 100%; }
  .card-grid.three, .timeline, .feature-list, .testimonial-grid, .two-inputs { grid-template-columns: 1fr; }
  .featured-testimonial { grid-template-columns: 1fr; }
  .quote-mark { font-size: 5rem; }
  .footer-inner { flex-direction: column; }
}
