:root {
  --navy: #1A2E3D;
  --navy-l: #2A4054;
  --bronze: #B88E52;
  --sand: #F7F5F2;
  --white: #FFFFFF;
  --text: #2C3E50;
  --muted: #6C7A86;
  --line: #EBEAE8;
  --soft: #FDFCFB;
  --shadow: 0 18px 42px rgba(26, 46, 61, .08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
h1, h2, h3, h4, .brand-text { font-family: "Outfit", sans-serif; font-weight: 500; line-height: 1.12; color: var(--navy); }
h1, h2, h3, h4, p { margin-top: 0; }
p { color: var(--muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }
.narrow { width: min(860px, calc(100% - 48px)); margin: 0 auto; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .5px;
  border: 2px solid transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; background: var(--bronze); border-color: var(--bronze); }
.btn-primary:hover { color: var(--bronze); background: transparent; }
.btn-outline { color: #fff; background: transparent; border-color: rgba(255,255,255,.88); }
.btn-outline:hover { color: var(--navy); background: #fff; }
.btn-dark { color: #fff; background: var(--navy); border-color: var(--navy); }
.btn-dark:hover { color: var(--navy); background: transparent; }
.btn-light { color: var(--navy); background: #fff; border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--bronze);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(0,0,0,.06);
  backdrop-filter: blur(10px);
}
.nav {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 215px; }
.brand img { width: 172px; height: auto; }
.brand-text { font-size: 22px; letter-spacing: .5px; }
.brand-text span { color: var(--bronze); }
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; padding: 0; margin: 0; }
.nav-links a, .drop-toggle {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  border: 0;
  background: transparent;
  padding: 10px 0;
  font-family: inherit;
  cursor: pointer;
}
.nav-links a:hover, .drop-toggle:hover, .nav-links a.active { color: var(--bronze); }
.drop { position: relative; }
.drop::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 16px;
}
.drop-menu {
  position: absolute;
  top: 100%;
  margin-top: 10px;
  left: 0;
  min-width: 290px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
.drop:hover .drop-menu, .drop:focus-within .drop-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.drop-menu a { display: block; padding: 10px 18px; color: var(--muted); }
.drop-menu a:hover { color: var(--navy); background: var(--sand); }
.menu-toggle { display: none; }
.hero, .page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.hero::before, .page-hero::before {
  content: "";
  position: absolute;
  right: -220px;
  top: -260px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,142,82,.18) 0%, rgba(184,142,82,.08) 36%, rgba(26,46,61,0) 72%);
}
.hero { padding: 96px 0; }
.page-hero { padding: 96px 0 88px; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .72fr);
  gap: clamp(38px, 6vw, 74px);
  align-items: center;
}
.hero-content, .page-hero .hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero h1, .page-hero h1 { color: #fff; font-size: clamp(40px, 6vw, 54px); margin-bottom: 24px; }
.hero p, .page-hero p { color: #C0C8CF; font-size: 18px; max-width: 620px; margin-bottom: 34px; }
.referral-note { display: block; margin-top: 16px; color: var(--bronze); font-size: 14px; font-weight: 500; }
.hero-media {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  filter: saturate(.95) contrast(1.02);
}
.hero-media figcaption {
  padding: 16px 18px;
  color: #D8DFE5;
  background: rgba(26,46,61,.94);
  font-size: 14px;
}
.trust-banner { background: var(--sand); padding: 38px 0; text-align: center; }
.trust-banner p { max-width: 860px; margin: 0 auto; color: var(--navy); font-size: 19px; font-weight: 300; }
.award-band {
  padding: 40px 0;
  background: var(--navy);
  border-top: 1px solid rgba(184,142,82,.22);
}
.award-band-inner {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, .82fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}
.award-band .eyebrow { margin-bottom: 12px; color: var(--bronze); }
.award-band h2 { color: #fff; font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 10px; }
.award-band p { color: #D8DFE5; margin-bottom: 0; }
.award-band img {
  width: 100%;
  border: 1px solid rgba(184,142,82,.46);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(0,0,0,.2);
}
.section { padding: 96px 0; }
.section.compact { padding: 66px 0; }
.section.sand { background: var(--sand); }
.section.sand.compact {
  background: linear-gradient(135deg, #EFE4D4 0%, #F8F1E8 48%, #ECE0CF 100%);
  border-top: 1px solid rgba(184, 142, 82, .24);
  border-bottom: 1px solid rgba(26, 46, 61, .08);
}
.section.sand.compact .eyebrow { color: #8F642E; }
.section.dark { background: var(--navy); color: #fff; }
.section.dark h2, .section.dark h3, .section.dark h4 { color: #fff; }
.section.dark p, .section.dark li { color: #C0C8CF; }
.section-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: clamp(30px, 4vw, 40px); margin-bottom: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: 54px; align-items: center; }
.grid-2 > *, .grid-3 > *, .split > *, .contact-grid > * { min-width: 0; }
.card, .panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px 30px;
}
.card { transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { font-size: 22px; margin-bottom: 12px; }
.card p:last-child, .panel p:last-child { margin-bottom: 0; }
.card-link { color: var(--bronze); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.feature-img {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}
.feature-img img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; }
.media-caption { padding: 16px 18px; color: var(--muted); font-size: 13px; background: #fff; }
.list { padding-left: 20px; color: var(--muted); }
.list li { margin: 8px 0; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 28px; margin: 12px 0; color: var(--muted); }
.check-list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 10px; height: 10px; border-radius: 50%; background: var(--bronze); }
.timeline { display: grid; gap: 16px; counter-reset: step; }
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.step::before {
  content: counter(step);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--bronze);
  font-family: "Outfit", sans-serif;
  font-size: 18px;
}
.step h3 { margin-bottom: 6px; font-size: 20px; }
.fee-wrap, .dark-panel {
  background: var(--navy-l);
  color: #fff;
  border-radius: 8px;
  padding: 38px;
}
.fee-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.fee-row:last-child { border-bottom: 0; }
.fee-row h3, .fee-row h4 { color: #fff; margin-bottom: 4px; }
.fee-row p { color: #C0C8CF; margin: 0; font-size: 14px; }
.fee-price { color: var(--bronze); font-family: "Outfit", sans-serif; font-size: 22px; white-space: nowrap; text-align: right; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
.contact-grid table { min-width: 0; }
th, td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--navy); background: var(--sand); font-family: "Outfit", sans-serif; font-weight: 500; }
td { color: var(--muted); }
tr:last-child td { border-bottom: 0; }
.note { border-left: 4px solid var(--bronze); padding: 20px 22px; background: var(--sand); border-radius: 4px; color: var(--navy); }
.team-card { overflow: hidden; padding: 0; }
.team-card img { width: 100%; aspect-ratio: 1 / .86; object-fit: cover; object-position: center top; background: var(--sand); }
.team-card .team-copy { padding: 28px; }
.team-card h3 { margin-bottom: 6px; }
.team-card .role { color: var(--bronze); font-weight: 600; margin-bottom: 12px; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: start; }
.contact-list { display: grid; gap: 16px; }
.contact-list a, .contact-list span { color: var(--muted); }
form { display: grid; gap: 16px; }
label { color: var(--navy); font-size: 13px; font-weight: 600; }
input, textarea, select {
  width: 100%;
  margin-top: 8px;
  padding: 14px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
textarea { min-height: 132px; resize: vertical; }
.form-status { min-height: 22px; color: var(--navy); font-size: 14px; }
.site-footer { border-top: 1px solid var(--line); padding: 58px 0 30px; background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 36px; margin-bottom: 38px; }
.footer-grid h4 { margin-bottom: 16px; font-size: 18px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li, .footer-grid a, .footer-grid p { color: var(--muted); font-size: 14px; margin-bottom: 9px; }
.footer-grid a:hover { color: var(--bronze); }
.copy { border-top: 1px solid var(--line); padding-top: 24px; color: var(--muted); font-size: 13px; text-align: center; }
@media (max-width: 980px) {
  .nav { height: 78px; }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #fff;
    color: var(--navy);
    font-size: 20px;
  }
  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    max-height: calc(100vh - 78px);
    overflow: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 28px;
    box-shadow: var(--shadow);
  }
  body.menu-open .nav-links { display: flex; }
  .drop::after { display: none; }
  .drop-menu { position: static; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; border: 0; padding: 0 0 10px 14px; min-width: 0; }
  .drop-toggle { width: 100%; text-align: left; padding: 14px 0 6px; }
  .nav-links > li > a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 640px; }
  .award-band-inner { grid-template-columns: 1fr; }
  .award-band img { max-width: 640px; }
  .split, .contact-grid, .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .container, .narrow { width: min(100% - 32px, 1200px); }
  .hero { padding: 82px 0; }
  .hero-media img { aspect-ratio: 16 / 10; }
  .page-hero { padding: 72px 0; }
  .section { padding: 68px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .fee-row { grid-template-columns: 1fr; }
  .fee-price { text-align: left; }
  .btn { width: 100%; }
  .brand img { width: 148px; }
}
