:root {
  --navy: #14293F;
  --navy-deep: #0E1D2E;
  --brass: #C8A24A;
  --brass-dark: #A8862F;
  --sand: #EDE7DA;
  --paper: #FBFAF7;
  --green: #2E6B5E;
  --ink: #1B2733;
  --slate: #46586B;
  --muted: #6E7A88;
  --rule: #DCD6C9;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 400;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.serif { font-family: 'Cormorant Garamond', Georgia, serif; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
a { color: var(--navy); }

/* ---------- Nav ---------- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
  padding: 12px 0;
}
nav .nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
nav .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
nav .brand img { height: 44px; width: auto; display: block; flex-shrink: 0; }
nav .brand .wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px; font-weight: 600; color: var(--navy);
  letter-spacing: 0.4px; line-height: 1.05;
}
nav .brand .wordmark small {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 9.5px; font-weight: 600; letter-spacing: 2.2px;
  text-transform: uppercase; color: var(--brass-dark); margin-top: 2px;
}
nav .nav-cta { display: flex; align-items: center; gap: 24px; }
nav .nav-links { display: flex; gap: 24px; }
nav .nav-links a {
  color: var(--slate); text-decoration: none; font-size: 13px;
  letter-spacing: 0.9px; text-transform: uppercase; font-weight: 600;
  padding-bottom: 2px; border-bottom: 2px solid transparent; transition: color 0.15s, border-color 0.15s;
}
nav .nav-links a:hover { color: var(--navy); }
nav .nav-links a.active { color: var(--navy); border-bottom-color: var(--brass); }
nav .nav-phone {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px; font-weight: 600; color: var(--navy);
  text-decoration: none; white-space: nowrap; letter-spacing: 0.3px; line-height: 1.1;
}
nav .nav-phone span {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 9.5px; font-weight: 600; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--muted); text-align: right;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; background: var(--navy); color: #fff;
  padding: 16px 34px; border: none; border-radius: 3px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  letter-spacing: 0.6px; text-decoration: none; cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  width: 100%;
}
.btn:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn-brass { background: var(--brass); color: var(--navy); }
.btn-brass:hover { background: var(--brass-dark); color: #fff; }

/* ---------- Hero ---------- */
.hero { background: var(--sand); border-bottom: 1px solid var(--rule); padding: 56px 0 62px; }
.hero-grid {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: start;
}
.hero .eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 2.6px;
  text-transform: uppercase; color: var(--brass-dark); margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 54px; line-height: 1.08; font-weight: 600;
  color: var(--navy); letter-spacing: -0.4px; margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--brass-dark); }
.hero .lead { font-size: 18px; color: var(--slate); margin-bottom: 26px; max-width: 30em; }
.hero ul { list-style: none; }
.hero ul li { position: relative; padding-left: 28px; margin-bottom: 10px; font-size: 16px; }
.hero ul li::before {
  content: ""; position: absolute; left: 1px; top: 8px;
  width: 15px; height: 8px; border-left: 2.5px solid var(--green);
  border-bottom: 2.5px solid var(--green); transform: rotate(-45deg);
}

/* ---------- Form card ---------- */
.form-card {
  background: #fff; border: 1px solid var(--rule); border-top: 4px solid var(--brass);
  border-radius: 5px; padding: 28px 28px 26px;
  box-shadow: 0 10px 34px rgba(20, 41, 63, 0.09);
}
.form-card h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px; font-weight: 600; color: var(--navy); line-height: 1.15; margin-bottom: 5px;
}
.form-card .sub { font-size: 14px; color: var(--muted); margin-bottom: 19px; }
.field { margin-bottom: 14px; }
.field label {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.9px;
  text-transform: uppercase; color: var(--slate); margin-bottom: 5px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 13px; border: 1px solid var(--rule); border-radius: 3px;
  font-family: 'Inter', sans-serif; font-size: 16px; color: var(--ink);
  background: var(--paper); transition: border-color 0.15s, background 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brass); background: #fff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 13px; line-height: 1.5; }
.form-success {
  display: none; background: #EAF4EC; border: 1px solid #CFE4D6;
  border-radius: 4px; padding: 26px; text-align: center; color: #24593A; font-size: 16px;
}
.form-success.show { display: block; }
.form-success strong { display: block; font-size: 20px; margin-bottom: 6px; color: #1C4A2F; }
.hidden { display: none !important; }

/* ---------- Sections ---------- */
section { padding: 66px 0; }
section.tint { background: var(--sand); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.sec-head { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.sec-head .eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 2.6px;
  text-transform: uppercase; color: var(--brass-dark); margin-bottom: 11px;
}
.sec-head h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 40px; font-weight: 600; color: var(--navy); line-height: 1.15; margin-bottom: 12px;
}
.sec-head p { color: var(--slate); font-size: 17px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.step { text-align: center; }
.step .n {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px; font-weight: 600; color: var(--brass); line-height: 1; margin-bottom: 8px;
}
.step h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 23px; font-weight: 600; color: var(--navy); margin-bottom: 7px;
}
.step p { font-size: 15.5px; color: var(--slate); }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 38px; font-weight: 600; color: var(--navy); line-height: 1.15; margin-bottom: 16px;
}
.reasons { list-style: none; }
.reasons li { position: relative; padding-left: 30px; margin-bottom: 17px; }
.reasons li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 16px; height: 9px; border-left: 2.5px solid var(--green);
  border-bottom: 2.5px solid var(--green); transform: rotate(-45deg);
}
.reasons strong { display: block; color: var(--navy); font-size: 16.5px; font-weight: 600; }
.reasons span { font-size: 15px; color: var(--slate); }

/* ---------- People ---------- */
.people { display: flex; gap: 20px; margin-bottom: 24px; }
.person { text-align: center; }
.person img {
  width: 110px; height: 110px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--sand); display: block; margin-bottom: 9px;
}
.person .pname { font-size: 14.5px; font-weight: 600; color: var(--navy); }
.person .prole { font-size: 11px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--muted); }
.quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 25px; line-height: 1.4; color: var(--navy); font-style: italic;
  border-left: 3px solid var(--brass); padding-left: 20px; margin-bottom: 16px;
}

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--rule); padding: 17px 0; }
.faq summary {
  cursor: pointer; list-style: none; font-size: 17.5px; font-weight: 600;
  color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: 'Cormorant Garamond', serif; font-size: 28px;
  color: var(--brass); line-height: 1; flex-shrink: 0;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin-top: 11px; color: var(--slate); font-size: 16px; }

/* ---------- CTA strip ---------- */
.cta-strip { background: var(--navy); color: #fff; text-align: center; padding: 66px 24px; }
.cta-strip h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 40px; font-weight: 600; margin-bottom: 12px; line-height: 1.15;
}
.cta-strip p { color: #B9C8D8; font-size: 17px; margin-bottom: 26px; max-width: 34em; margin-left: auto; margin-right: auto; }
.cta-strip .btn { width: auto; }
.cta-phone {
  display: block; margin-top: 22px; color: var(--brass);
  font-family: 'Cormorant Garamond', serif; font-size: 32px;
  text-decoration: none; font-weight: 600;
}

/* ---------- Footer ---------- */
footer { background: var(--navy-deep); color: #8FA2B5; padding: 44px 24px 34px; text-align: center; font-size: 13.5px; }
footer img { height: 110px; width: auto; margin-bottom: 14px; opacity: 0.95; }
footer a { color: var(--brass); text-decoration: none; }
footer .fline { margin-bottom: 7px; }
footer .legal { margin-top: 18px; font-size: 11.5px; color: #5E7085; line-height: 1.7; max-width: 46em; margin-left: auto; margin-right: auto; }

/* ---------- Home: two paths ---------- */
.home-hero { background: var(--sand); border-bottom: 1px solid var(--rule); padding: 62px 0 12px; text-align: center; }
.home-hero .eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 2.6px;
  text-transform: uppercase; color: var(--brass-dark); margin-bottom: 14px;
}
.home-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 52px; line-height: 1.1; font-weight: 600; color: var(--navy);
  margin-bottom: 16px; letter-spacing: -0.4px;
}
.home-hero h1 em { font-style: italic; color: var(--brass-dark); }
.home-hero .lead {
  font-size: 18.5px; color: var(--slate); max-width: 33em; margin: 0 auto 42px;
}

.paths {
  display: grid; grid-template-columns: 1fr 1fr; gap: 26px;
  max-width: 1080px; margin: 0 auto; padding: 0 24px 62px;
}
.path {
  background: #fff; border: 1px solid var(--rule); border-top: 4px solid var(--brass);
  border-radius: 5px; padding: 30px 30px 28px; text-align: left;
  display: flex; flex-direction: column;
  box-shadow: 0 10px 34px rgba(20, 41, 63, 0.08);
  transition: transform 0.18s, box-shadow 0.18s;
  text-decoration: none; color: inherit;
}
.path, .path * { text-decoration: none; }
.path:hover { transform: translateY(-3px); box-shadow: 0 16px 42px rgba(20, 41, 63, 0.13); }
.path .ptag {
  font-size: 10.5px; font-weight: 700; letter-spacing: 2.2px;
  text-transform: uppercase; color: var(--brass-dark); margin-bottom: 10px;
}
.path h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 31px; font-weight: 600; color: var(--navy);
  line-height: 1.14; margin-bottom: 10px;
}
.path > p { font-size: 15.5px; color: var(--slate); margin-bottom: 16px; }
.path ul { list-style: none; margin-bottom: 24px; flex-grow: 1; }
.path ul li { position: relative; padding-left: 26px; margin-bottom: 8px; font-size: 15px; color: var(--ink); }
.path ul li::before {
  content: ""; position: absolute; left: 1px; top: 8px;
  width: 14px; height: 7px; border-left: 2.5px solid var(--green);
  border-bottom: 2.5px solid var(--green); transform: rotate(-45deg);
}
.path .btn { text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .paths { grid-template-columns: 1fr; gap: 20px; padding-bottom: 46px; }
  .home-hero h1 { font-size: 38px; }
  .home-hero { padding-top: 44px; }
  nav .nav-links { display: none; }
  .hero-grid, .split { grid-template-columns: 1fr; gap: 34px; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .hero h1 { font-size: 42px; }
  .sec-head h2, .cta-strip h2, .split h2 { font-size: 32px; }
  nav .brand img { height: 38px; }
  nav .brand .wordmark { font-size: 21px; }
  nav .nav-phone { font-size: 21px; }
  section { padding: 48px 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding: 34px 0 42px; }
  .hero h1 { font-size: 33px; }
  .form-row { grid-template-columns: 1fr; }
  nav .nav-phone span { display: none; }
  nav .nav-phone { font-size: 19px; }
  nav .brand .wordmark { display: none; }
  .people { justify-content: center; }
  .form-card { padding: 22px 20px; }
}
