:root {
  --navy: #0F2C4E;
  --navy-deep: #0F1820;
  --teal: #2C8B96;
  --teal-light: #4FA9B4;
  --teal-tint: rgba(44, 139, 150, 0.08);
  --gold: #C9A961;
  --cream: #F7F4ED;
  --cream-warm: #FBF8F1;
  --charcoal: #1A1A1A;
  --charcoal-muted: #4a5565;
  --mist: #E5E9EB;
  --sage: #A8B5A0;
  --error: #A85A4A;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* ====== HEADER / NAV ====== */
header.site {
  background: rgba(247, 244, 237, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--mist);
  position: sticky; top: 0; z-index: 100;
}
header.site .inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center;
  text-decoration: none;
  cursor: pointer;
}
.brand-img { height: 84px; width: auto; display: block; }
.brand-text { display: none; }

nav.primary {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
nav.primary a {
  padding: 10px 14px;
  color: var(--charcoal);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  transition: all 150ms ease;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
nav.primary a:focus { outline: none; }
nav.primary a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
nav.primary a:hover { color: var(--teal); background: var(--teal-tint); }
nav.primary a.active { color: var(--navy); font-weight: 600; }
nav.primary a.active::after {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  margin: 4px auto 0;
}

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 11px 20px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: all 200ms ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--navy); border-color: var(--navy); color: var(--cream); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--navy);
}

/* ====== SECTIONS GENERAL ====== */
main { flex: 1; }
.section { padding: 72px 24px; }
.section.alt { background: white; border-top: 1px solid var(--mist); border-bottom: 1px solid var(--mist); }
.section.navy { background: var(--navy); color: var(--cream); }
.section.cream-warm { background: var(--cream-warm); }
.container { max-width: 1080px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.eyebrow.left-only::after { display: none; }

h1.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  line-height: 1.12;
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.navy h1, .navy h2 { color: var(--cream); }
.lead {
  font-size: 18px;
  color: var(--charcoal-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 640px;
}
.lead.center { margin-left: auto; margin-right: auto; }
.navy .lead { color: rgba(247,244,237,0.85); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 5px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 200ms ease;
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.btn-primary:hover { background: var(--teal); border-color: var(--teal); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--cream); border-color: var(--cream); }
.btn-large { padding: 16px 36px; font-size: 15px; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }

/* ====== HOMEPAGE ====== */
.hero-home {
  padding: 88px 24px 64px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.hero-home .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-photo {
  aspect-ratio: 4/5;
  background: var(--cream-warm);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--mist);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-home .trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--mist);
  font-size: 13px;
  color: var(--charcoal-muted);
}
.hero-home .trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-home .trust-row .check { color: var(--teal); font-weight: 700; }

/* What we do - 3 pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.pillar {
  background: var(--cream);
  border-radius: 6px;
  padding: 28px 24px;
  border: 1px solid var(--mist);
  border-top: 3px solid var(--teal);
}
.pillar .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}
.pillar h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.pillar p {
  font-size: 14px;
  color: var(--charcoal-muted);
  line-height: 1.6;
}

/* Founder strip */
.founder-strip {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: center;
  background: white;
  border-radius: 6px;
  padding: 36px;
  border: 1px solid var(--mist);
}
.founder-photo {
  aspect-ratio: 1/1;
  background: var(--cream-warm);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--mist);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-strip h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}
.founder-strip .title {
  color: var(--teal);
  font-size: 13px;
  font-style: italic;
  margin-bottom: 14px;
  font-weight: 500;
}
.founder-strip p { color: var(--charcoal); font-size: 15px; line-height: 1.65; margin-bottom: 10px; }

/* CTA section */
.cta-section { text-align: center; }
.cta-section p.lead { margin-bottom: 32px; }

/* ====== ABOUT PAGE ====== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.about-grid .photo {
  aspect-ratio: 3/4;
  background: var(--cream-warm);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--mist);
}
.about-grid .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-grid .story h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.about-grid .story .title {
  color: var(--teal);
  font-size: 14px;
  font-style: italic;
  margin-bottom: 24px;
  font-weight: 500;
}
.about-grid .story p {
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.chip {
  padding: 7px 14px;
  background: var(--cream);
  border: 1px solid var(--navy);
  color: var(--teal);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.mission-block {
  text-align: center;
  padding: 16px 24px 28px;
  position: relative;
}
.mission-block .mission-statement {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(28px, 4.5vw, 40px);
  color: var(--navy);
  line-height: 1.3;
  max-width: 720px;
  margin: 0 auto;
  letter-spacing: -0.01em;
  position: relative;
}
.mission-block .mission-statement::before,
.mission-block .mission-statement::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 14px auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.value-card {
  background: white;
  border-radius: 6px;
  padding: 28px;
  border: 1px solid var(--mist);
  text-align: left;
}
.value-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 14px;
  color: var(--charcoal-muted);
  line-height: 1.6;
}

/* Comparison table for About */
.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 32px;
  border: 1px solid var(--mist);
  border-radius: 6px;
  overflow: hidden;
}
.compare-table .col {
  padding: 28px 24px;
}
.compare-table .col.bad {
  background: var(--cream);
  border-right: 1px solid var(--mist);
}
.compare-table .col.good {
  background: white;
}
.compare-table h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--mist);
}
.compare-table .col.bad h4 { color: var(--charcoal-muted); }
.compare-table .col.good h4 { color: var(--teal); }
.compare-table ul { list-style: none; padding: 0; }
.compare-table li {
  font-size: 14px;
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 1.55;
  color: var(--charcoal);
}
.compare-table .col.bad li::before {
  content: '✕';
  position: absolute; left: 0; top: 8px;
  color: var(--sage);
  font-weight: 700;
}
.compare-table .col.good li::before {
  content: '✓';
  position: absolute; left: 0; top: 8px;
  color: var(--teal);
  font-weight: 700;
}

/* ====== SERVICES PAGE ====== */
.service-card {
  background: white;
  border-radius: 6px;
  padding: 36px;
  border: 1px solid var(--mist);
  border-left: 4px solid var(--teal);
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card .desc {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card .included {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.service-card ol {
  list-style: none;
  counter-reset: srv;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}
.service-card ol li {
  counter-increment: srv;
  padding-left: 28px;
  position: relative;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.55;
  padding-top: 4px;
  padding-bottom: 4px;
}
.service-card ol li::before {
  content: counter(srv, decimal-leading-zero);
  position: absolute; left: 0; top: 4px;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 14px;
}

.pricing-block {
  background: white;
  border-radius: 6px;
  border: 1px solid var(--mist);
  border-top: 3px solid var(--gold);
  padding: 40px;
  text-align: center;
  margin-top: 16px;
}
.pricing-block .price-hero {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-block .price-hero small {
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--charcoal-muted);
  margin-left: 6px;
}
.pricing-block .price-tag {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.pricing-block p {
  color: var(--charcoal-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 24px;
}
.pricing-includes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  text-align: left;
  margin: 24px auto;
  max-width: 600px;
  padding-top: 24px;
  border-top: 1px solid var(--mist);
}
.pricing-includes li {
  list-style: none;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.5;
}
.pricing-includes li::before {
  content: '✓';
  position: absolute; left: 0; color: var(--teal); font-weight: 700;
}

.not-scope {
  background: var(--cream-warm);
  border: 1px solid var(--mist);
  border-radius: 6px;
  padding: 32px;
  margin-top: 24px;
}
.not-scope h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  font-weight: 700;
  margin-bottom: 16px;
}
.not-scope ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 24px;
}
.not-scope li {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: var(--charcoal-muted);
  font-style: italic;
  line-height: 1.55;
}
.not-scope li::before {
  content: '-';
  position: absolute; left: 0; color: var(--sage); font-weight: 700;
}

/* ====== FAQ PAGE ====== */
.faq-section {
  margin-bottom: 36px;
}
.faq-section .section-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--mist);
}
.faq-item {
  background: white;
  border-radius: 5px;
  border: 1px solid var(--mist);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 150ms ease;
}
.faq-item:hover { border-color: var(--teal); }
.faq-question {
  width: 100%;
  background: white;
  border: none;
  text-align: left;
  padding: 18px 22px;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 150ms ease;
}
.faq-question:hover { background: var(--cream-warm); }
.faq-question::before {
  content: 'Q.';
  color: var(--teal);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  margin-right: 6px;
  font-weight: 600;
  flex-shrink: 0;
}
.faq-question .chevron {
  width: 16px; height: 16px;
  color: var(--charcoal-muted);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), color 200ms ease;
  flex-shrink: 0;
}
.faq-question:hover .chevron { color: var(--teal); }
.faq-item.open .chevron { transform: rotate(180deg); color: var(--teal); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 22px 20px 50px;
  font-size: 14px;
  color: var(--charcoal-muted);
  line-height: 1.65;
}

/* ====== CONTACT PAGE ====== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 340px) 1fr;
  gap: 32px;
  align-items: start;
}
.contact-card {
  background: white;
  border-radius: 6px;
  padding: 32px;
  border: 1px solid var(--mist);
  border-top: 3px solid var(--teal);
}
.contact-card.cal-card {
  padding: 20px;
}
.contact-card.cal-card h3 { margin-bottom: 6px; }
.contact-card.cal-card .cal-sub {
  font-size: 13px;
  color: var(--charcoal-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 18px;
}
.contact-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--mist);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
}
.contact-row:last-child { border-bottom: none; }
.contact-row .ico {
  width: 28px; height: 28px;
  flex-shrink: 0;
  background: var(--teal-tint);
  color: var(--teal);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.contact-row .meta {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-row a, .contact-row span.value {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}
.contact-row a:hover { color: var(--teal); }

.cal-embed {
  background: var(--cream);
  border-radius: 5px;
  padding: 0;
  min-height: 620px;
  overflow: hidden;
}
.cal-embed iframe {
  width: 100%;
  height: 620px;
  min-height: 620px;
  border: none;
  display: block;
  border-radius: 5px;
  background: var(--cream);
}
@media (max-width: 900px) {
  .cal-embed { min-height: 720px; }
  .cal-embed iframe { height: 720px; min-height: 720px; }
}
@media (max-width: 640px) {
  .cal-embed { min-height: 900px; }
  .cal-embed iframe { height: 900px; min-height: 900px; }
}

.contact-form .field {
  margin-bottom: 14px;
}
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--mist);
  border-radius: 5px;
  font-family: inherit;
  font-size: 14px;
  color: var(--charcoal);
  background: white;
  transition: border-color 150ms ease;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: var(--teal);
}
.contact-form textarea { resize: vertical; min-height: 90px; }
.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-area-note {
  text-align: center;
  margin-top: 56px;
  padding: 32px 28px;
  background: var(--cream);
  border-radius: 6px;
  border: 1px solid var(--mist);
  border-top: 3px solid var(--gold);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.service-area-note .pin-ico {
  font-size: 22px;
  margin-bottom: 8px;
  display: block;
}
.service-area-note h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-area-note p {
  font-size: 14px;
  color: var(--charcoal-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ====== FOOTER ====== */
footer.site {
  background: var(--navy-deep);
  color: rgba(247,244,237,0.7);
  padding: 56px 24px 28px;
  margin-top: auto;
}
footer.site .inner {
  max-width: 1180px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; font-size: 14px; }
.footer-col a {
  color: rgba(247,244,237,0.7);
  text-decoration: none;
  transition: color 150ms ease;
  cursor: pointer;
}
.footer-col a:hover { color: var(--teal-light); }
.footer-brand .brand-img-footer {
  height: 56px;
  width: auto;
  margin-bottom: 14px;
  display: block;
  /* Invert the dark-navy logo to cream/white so it reads on the dark footer bg.
     Only applies to the footer mark - header logo is untouched. */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(247,244,237,0.6);
}

.compliance {
  border-top: 1px solid rgba(247,244,237,0.1);
  padding-top: 28px;
}
.compliance h6 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,244,237,0.55);
  margin-bottom: 12px;
}
.compliance p {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(247,244,237,0.55);
  font-style: italic;
  margin-bottom: 10px;
}
.copyright {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(247,244,237,0.08);
  font-style: normal;
  font-size: 12px;
  color: rgba(247,244,237,0.4);
}

/* ====== MOBILE ====== */
@media (max-width: 900px) {
  .hero-home .container { grid-template-columns: 1fr; gap: 32px; }
  .hero-photo { max-width: 480px; aspect-ratio: 4/3; }
  .pillars, .values-grid { grid-template-columns: 1fr; }
  .founder-strip { grid-template-columns: 1fr; }
  .founder-photo { max-width: 320px; aspect-ratio: 1/1; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-grid .photo { max-width: 320px; aspect-ratio: 1/1; }
  .compare-table { grid-template-columns: 1fr; }
  .compare-table .col.bad { border-right: none; border-bottom: 1px solid var(--mist); }
  .service-card ol { grid-template-columns: 1fr; }
  .pricing-includes { grid-template-columns: 1fr; }
  .not-scope ul { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav.primary { display: none; }
  .menu-toggle { display: block; }
  .menu-toggle.open + nav.primary { display: flex; }
  nav.primary {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 16px;
    border-bottom: 1px solid var(--mist);
    box-shadow: 0 8px 16px rgba(0,0,0,0.04);
    gap: 4px;
  }
  nav.primary a { padding: 12px 14px; font-size: 15px; }
  nav.primary a.active::after { display: none; }
  nav.primary a.active { background: var(--teal-tint); }
  .brand-img { height: 64px; }
  .nav-cta { padding: 10px 14px; font-size: 12px; }
  header.site .inner { padding: 12px 16px; gap: 12px; }
  .section { padding: 48px 16px; }
  .contact-form .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ====== UTILITIES ====== */
.page { display: none; }
.page.active { display: block; animation: pageFade 280ms ease-out; }
@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* ===== Auto Financing Estimator (calculator) ===== */
.calc-wrap { max-width: 1080px; margin: 0 auto; }
.calc-card { background:#fff; border:1px solid var(--mist); border-radius:10px; overflow:hidden; display:grid; grid-template-columns:1.05fr 0.95fr; }
@media (max-width:900px){ .calc-card { grid-template-columns:1fr; } }
.calc-controls { padding:32px; border-right:1px solid var(--mist); }
@media (max-width:900px){ .calc-controls { border-right:none; border-bottom:1px solid var(--mist); } }
.calc-panel { padding:32px; background:var(--cream-warm); }
.calc-tabs { display:inline-flex; background:var(--cream); border:1px solid var(--mist); border-radius:999px; padding:4px; margin-bottom:28px; }
.calc-tab { border:0; background:transparent; cursor:pointer; font-family:'Inter',sans-serif; font-weight:600; font-size:13px; color:var(--charcoal-muted); padding:8px 16px; border-radius:999px; }
.calc-tab.active { background:var(--navy); color:var(--cream); }
.calc-field { margin-bottom:22px; }
.calc-field .row { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:8px; }
.calc-field label { font-family:'Inter',sans-serif; font-weight:600; font-size:13px; color:var(--navy); letter-spacing:.02em; }
.calc-num { font-family:'Inter',sans-serif; font-weight:600; font-size:15px; color:var(--navy); border:1px solid var(--mist); border-radius:6px; padding:6px 10px; width:130px; text-align:right; background:#fff; }
.calc-num:focus { outline:none; border-color:var(--teal); box-shadow:0 0 0 3px var(--teal-tint); }
.calc-range { -webkit-appearance:none; appearance:none; width:100%; height:4px; border-radius:4px; background:var(--mist); outline:none; }
.calc-range::-webkit-slider-thumb { -webkit-appearance:none; appearance:none; width:18px; height:18px; border-radius:50%; background:var(--teal); cursor:pointer; border:2px solid #fff; box-shadow:0 1px 4px rgba(15,44,78,.25); }
.calc-range::-moz-range-thumb { width:18px; height:18px; border:2px solid #fff; border-radius:50%; background:var(--teal); cursor:pointer; }
.calc-hint { font-size:12px; color:var(--charcoal-muted); margin-top:6px; }
.calc-terms { display:flex; gap:8px; flex-wrap:wrap; }
.calc-term { flex:1; min-width:60px; border:1px solid var(--mist); background:#fff; border-radius:6px; padding:10px 0; font-family:'Inter',sans-serif; font-weight:600; font-size:14px; color:var(--navy); cursor:pointer; text-align:center; }
.calc-term.active { background:var(--navy); color:var(--cream); border-color:var(--navy); }
.calc-result-label { font-family:'Inter',sans-serif; font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--teal); font-weight:600; margin-bottom:8px; }
.calc-result-big { font-family:'Cormorant Garamond',serif; font-weight:600; font-size:52px; line-height:1; color:var(--navy); }
.calc-result-big span { font-size:22px; color:var(--charcoal-muted); }
.calc-breakdown { margin-top:24px; border-top:1px solid var(--mist); }
.calc-line { display:flex; justify-content:space-between; padding:12px 0; border-bottom:1px solid var(--mist); font-family:'Inter',sans-serif; font-size:14px; color:var(--charcoal); }
.calc-line strong { color:var(--navy); font-weight:600; }
.calc-impact { margin-top:22px; background:#fff; border:1px solid var(--mist); border-left:3px solid var(--gold); border-radius:6px; padding:16px 18px; }
.calc-impact .h { font-family:'Inter',sans-serif; font-weight:700; font-size:13px; color:var(--navy); margin-bottom:6px; }
.calc-impact p { font-size:13px; color:var(--charcoal-muted); line-height:1.55; margin:0; }
.calc-impact b { color:var(--teal); }
.calc-impact .cmp { display:flex; align-items:center; gap:8px; margin-top:10px; font-size:12px; color:var(--charcoal-muted); }
.calc-impact .cmp input { width:64px; }
.calc-disclaimer { font-family:'Inter',sans-serif; font-style:italic; font-size:12px; color:var(--charcoal-muted); line-height:1.55; margin-top:20px; }
