* { box-sizing: border-box; }

:root {
  --ink: #181510;
  --ink-soft: #625d54;
  --paper: #fbfaf7;
  --paper-deep: #f2eee6;
  --white: #ffffff;
  --charcoal: #151515;
  --charcoal-soft: #22201d;
  --gold: #b8933f;
  --gold-light: #e3cb89;
  --red: #8d1722;
  --red-dark: #6f111a;
  --line: #ddd5c6;
  --background: #ffffff;
  --foreground: #181510;
  --card: #ffffff;
  --card-foreground: #181510;
  --popover: #ffffff;
  --popover-foreground: #181510;
  --primary: #181510;
  --primary-foreground: #ffffff;
  --secondary: #f2eee6;
  --secondary-foreground: #181510;
  --muted-foreground: #6b655c;
  --accent: #f2eee6;
  --accent-foreground: #181510;
  --destructive: #b42331;
  --border: #ddd5c6;
  --input: #cfc6b5;
  --ring: #b8933f;
  --radius: 0.65rem;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  padding-bottom: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
.container { width: min(1180px, 92%); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(184, 147, 63, 0.28);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #38342e;
  font-size: 0.89rem;
  font-weight: 700;
}

.main-nav a { transition: color 160ms ease; }
.main-nav a:hover { color: var(--red); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle .icon { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.nav-cta {
  padding: 10px 17px;
  color: var(--white) !important;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 3px;
}

.nav-cta:hover { background: var(--red); border-color: var(--red); }

.brand-wordmark {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  line-height: 1;
  text-align: right;
}

.brand-wordmark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-wordmark small {
  margin-top: 7px;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f8f5ef;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 1) 0%, rgba(251, 250, 247, 0.98) 33%, rgba(251, 250, 247, 0.78) 52%, rgba(251, 250, 247, 0.08) 76%),
    linear-gradient(0deg, rgba(251, 250, 247, 0.18), rgba(251, 250, 247, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 92px 0;
}

.hero-content > * { max-width: 650px; }

.hero-kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1, h2, h3, blockquote { font-family: Georgia, "Times New Roman", serif; }

h1 {
  margin: 0;
  font-size: clamp(3rem, 4.5vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.hero-copy {
  margin: 28px 0 0;
  max-width: 640px;
  color: #4f4a42;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.89rem;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn-primary { color: #fff; background: var(--red); border-color: var(--red); }
.btn-primary:hover { background: #6f111a; border-color: #6f111a; }
.btn-secondary { color: var(--ink); background: rgba(255, 255, 255, 0.75); border-color: #bdb4a3; }
.btn-secondary:hover { background: #fff; border-color: var(--gold); }

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
  color: #48443d;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-assurances span { display: inline-flex; align-items: center; gap: 7px; }
.hero-assurances svg { width: 15px; height: 15px; color: var(--gold); stroke-width: 3; }

.section { padding: 104px 0; }

.services-section { background: var(--paper); }

.services-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 64px;
  align-items: center;
  margin-bottom: 46px;
}

.services-brand-visual {
  display: flex;
  min-height: 300px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: #0b0a09;
  border: 1px solid rgba(184, 147, 63, 0.48);
  box-shadow: 0 20px 50px rgba(39, 32, 20, 0.13);
}

.services-brand-visual img {
  width: min(100%, 320px);
  height: auto;
}

.section-heading {
  display: grid;
  max-width: 820px;
  margin: 0;
}

.section-heading h2,
.value-intro h2,
.founder-copy h2,
.consultation h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 12px 36px rgba(39, 32, 20, 0.05);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #c7b178;
  box-shadow: 0 22px 48px rgba(39, 32, 20, 0.1);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--red);
  background: #f8f1e3;
  border: 1px solid #eadbb8;
  border-radius: 50%;
}

.service-icon svg { width: 22px; height: 22px; }
.icon { display: block; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0; font-size: 1.38rem; line-height: 1.18; }
.service-card p { margin: 16px 0 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.7; }

.value-section {
  color: #f8f4eb;
  background:
    radial-gradient(circle at 88% 0%, rgba(184, 147, 63, 0.19), transparent 31%),
    linear-gradient(145deg, #12110f, #1d1a16);
}

.eyebrow-light { color: var(--gold-light); }

.value-intro {
  display: block;
  text-align: center;
}

.value-intro h2 {
  max-width: 980px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(3.6rem, 7vw, 6.8rem);
  line-height: 0.94;
}

.value-lede { max-width: 850px; margin: 36px auto 0; }
.value-lede p { margin: 0 0 18px; color: #c9c2b6; font-size: 1rem; line-height: 1.75; }

.guidance-models {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 62px;
}

.guidance-panel {
  padding: 38px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.guidance-panel.c-squires-model {
  background: linear-gradient(145deg, rgba(184, 147, 63, 0.19), rgba(255, 255, 255, 0.055));
  border-color: rgba(227, 203, 137, 0.48);
}

.model-label {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.guidance-panel h3 {
  margin: 16px 0 30px;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.guidance-panel > p:not(.model-label),
.model-copy-block p {
  margin: 0 0 20px;
  color: #cec7bc;
  font-size: 0.93rem;
  line-height: 1.72;
}

.model-copy-block {
  margin-bottom: 24px;
  padding-left: 19px;
  border-left: 2px solid rgba(227, 203, 137, 0.55);
}

.model-copy-block strong { display: block; margin-bottom: 8px; color: #fff; font-size: 0.9rem; }
.model-copy-block p { margin-bottom: 0; }

.guidance-panel .service-pricing {
  margin: 26px 0;
  padding: 20px;
  color: #fff;
  background: rgba(8, 7, 6, 0.35);
  border: 1px solid rgba(227, 203, 137, 0.45);
  font-weight: 800;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.value-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.035);
  border-left: 3px solid var(--gold);
}

.value-card > svg { width: 24px; height: 24px; color: var(--gold-light); }
.value-card h3 { margin: 20px 0 0; font-size: 1.3rem; }
.value-card p { margin: 12px 0 0; color: #bdb6aa; font-size: 0.88rem; line-height: 1.65; }

.about-section { background: #fff; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: 80px;
  align-items: start;
}

.founder-card {
  position: sticky;
  top: 118px;
  padding: 14px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(32, 25, 16, 0.12);
}

.founder-portrait {
  position: relative;
  aspect-ratio: 1122 / 1402;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(184, 147, 63, 0.45);
}

.founder-portrait::after {
  position: absolute;
  inset: 9px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(227, 203, 137, 0.34);
}

.founder-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-credentials {
  display: flex;
  padding: 22px 8px 8px;
  flex-direction: column;
  gap: 3px;
}

.founder-credentials strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.founder-credentials span { color: var(--ink-soft); font-size: 0.83rem; }

.founder-copy h2 { max-width: 750px; font-size: clamp(2.2rem, 3.6vw, 3.4rem); }
.founder-title { width: 100%; font-weight: 900; text-align: center; }

.founder-story { margin-top: 30px; }
.founder-story h3 { margin: 0 0 24px; color: var(--red); font-size: clamp(1.6rem, 2.6vw, 2.25rem); }
.founder-story p { margin: 0 0 20px; color: #514c44; font-size: 1rem; line-height: 1.78; }

.founder-copy blockquote {
  margin: 32px 0 0;
  padding: 26px 0 26px 28px;
  color: var(--ink);
  border-left: 4px solid var(--gold);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.35;
}

.bio-note {
  margin: 27px 0 0;
  color: var(--red);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.consultation {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(107, 12, 24, 0.96), rgba(27, 18, 16, 0.98)),
    #5f0d18;
}

.consultation-box {
  padding: 50px;
  background: rgba(0, 0, 0, 0.13);
  border: 1px solid rgba(227, 203, 137, 0.42);
}

.consultation-copy { max-width: 830px; }
.consultation-copy h2 { max-width: 720px; }
.consultation-copy > p:last-child { max-width: 760px; margin: 22px 0 0; color: #e5dcd5; font-size: 1.03rem; }

.booking-options {
  display: grid;
  max-width: 980px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.booking-card {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 28px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 160ms ease, transform 160ms ease;
}

.booking-card:hover { background: rgba(255, 255, 255, 0.11); transform: translateY(-3px); }
.booking-card-paid { border-color: rgba(227, 203, 137, 0.6); }
.booking-type { color: var(--gold-light); font-size: 0.69rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.booking-card h3 { margin: 12px 0 0; color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 2vw, 1.9rem); line-height: 1.15; }
.booking-card p { margin: 16px 0 24px; color: #e5dcd5; font-size: 0.96rem; line-height: 1.65; }
.booking-btn { width: 100%; margin-top: auto; }
.booking-btn-primary { color: #fff; background: var(--red); }
.booking-btn-primary:hover { background: var(--red-dark); }
.booking-btn-secondary { color: #1a1309; background: var(--gold-light); }
.booking-btn-secondary:hover { background: #ead290; }
.booking-note { margin: 18px 0 0; color: #cdbfba; font-size: 0.75rem; }

footer {
  padding: 58px 0 28px;
  color: #f7f1e8;
  background: #0d0c0b;
  border-top: 1px solid rgba(184, 147, 63, 0.35);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.55fr 0.9fr;
  gap: 55px;
  align-items: start;
}

.footer-brand { display: flex; align-items: center; justify-content: center; }
.footer-brand img { width: clamp(150px, 17vw, 190px); height: auto; filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.5)); }

.footer-links,
.footer-contact { display: flex; flex-direction: column; gap: 7px; }
.footer-links strong,
.footer-contact strong { margin-bottom: 7px; color: var(--gold-light); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-links a,
.footer-contact a,
.footer-contact p { margin: 0; color: #bfb8ac; font-size: 0.83rem; }
.footer-links a:hover,
.footer-contact a:hover { color: #fff; }

.disclaimer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 42px;
  padding-top: 24px;
  color: #777168;
  border-top: 1px solid #26231f;
}

.disclaimer p { max-width: 870px; margin: 0; font-size: 0.66rem; line-height: 1.55; }
.disclaimer span { flex: 0 0 auto; font-size: 0.64rem; }

/* Interactive advisor fee calculator */
.fee-calculator-section {
  margin-top: 54px;
  color: #122540;
  background: #fff;
  border: 1px solid rgba(227, 203, 137, 0.45);
}

.fee-calculator-heading {
  padding: 28px 30px 0;
  text-align: center;
}

.fee-calculator-heading .model-label { color: var(--red); }
.fee-calculator-heading h3 { margin: 10px 0 8px; color: var(--ink); font-size: clamp(1.8rem, 3vw, 2.7rem); }
.fee-calculator-heading p { max-width: 760px; margin: 0 auto 28px; color: var(--ink-soft); }

#afc-root {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #e4e7ec;
}

.afc-rail {
  width: 320px;
  flex: 1 1 320px;
  padding: 36px 28px;
  color: #fff;
  background: linear-gradient(180deg, #151515 0%, #29241d 100%);
}

.afc-rail h4 { margin: 0 0 2px; font-family: Georgia, "Times New Roman", serif; font-size: 1rem; font-weight: normal; }
.afc-sub { margin-bottom: 20px; color: rgba(255,255,255,.55); font-size: .75rem; }
.afc-presets { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.afc-preset-btn {
  padding: 7px 12px;
  color: rgba(255,255,255,.75);
  font-size: .74rem;
  font-weight: 600;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.afc-preset-btn:hover { border-color: var(--gold); color: #fff; }
.afc-preset-btn.active {
  color: var(--charcoal);
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.afc-slider-row { margin-bottom: 26px; }
.afc-slider-label { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 8px; font-size: .82rem; }
.afc-slider-label span:first-child { color: rgba(255,255,255,.68); }
.afc-slider-label span:last-child { color: var(--gold-light); font-family: Georgia, "Times New Roman", serif; font-size: 1.1rem; font-variant-numeric: tabular-nums; }
.afc-rail input[type="range"] { width: 100%; height: 4px; accent-color: var(--gold); cursor: pointer; }
.afc-footnote { margin-top: 36px; padding-top: 20px; color: rgba(255,255,255,.52); border-top: 1px solid rgba(255,255,255,.12); font-size: .72rem; line-height: 1.5; }

.afc-main { min-width: 320px; flex: 3 1 600px; padding: 36px 40px; }
.afc-title { margin: 0 0 6px; font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; }
.afc-title-sub { margin-bottom: 28px; color: #64748b; font-size: .85rem; }
.afc-stats { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.afc-card { min-width: 180px; flex: 1; padding: 20px 22px; border: 1px solid #e4e7ec; }
.afc-card.accent { border-left: 3px solid var(--red); }
.afc-card-label { margin-bottom: 6px; color: #64748b; font-size: .75rem; }
.afc-card-value { font-family: Georgia, "Times New Roman", serif; font-size: 1.75rem; line-height: 1.1; }
.afc-card.accent .afc-card-value { color: var(--red); }
.afc-card-sub { margin-top: 6px; color: #64748b; font-size: .78rem; }
.afc-card-callback {
  margin-top: 12px;
  padding-top: 12px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 600;
  border-top: 1px dashed #e4e7ec;
}

.afc-detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid #e4e7ec;
}
.afc-detail-item { color: #64748b; font-size: .82rem; }
.afc-detail-label { margin-right: 6px; }
.afc-detail-value { font-weight: 700; color: var(--ink); }
.afc-chart-wrap { position: relative; margin-bottom: 24px; padding: 18px 18px 10px 4px; border: 1px solid #e4e7ec; }
.afc-legend { display: flex; gap: 20px; margin-top: 4px; padding-left: 44px; color: #64748b; font-size: .75rem; }
.afc-legend span { display: inline-flex; align-items: center; }
.afc-swatch { display: inline-block; width: 10px; height: 10px; margin-right: 6px; }
#afc-tooltip { position: absolute; z-index: 5; display: none; padding: 8px 12px; color: #fff; background: #181510; border: 1px solid var(--gold); font-size: .75rem; pointer-events: none; white-space: nowrap; }
#afc-tooltip .afc-t-year { margin-bottom: 3px; color: rgba(255,255,255,.6); }
#afc-tooltip .afc-t-good { color: var(--gold-light); }
#afc-tooltip .afc-t-bad { color: #e08a90; }

@media (max-width: 700px) {
  .afc-rail, .afc-main { flex: 1 1 100%; }
  .afc-rail { padding: 28px 22px; }
  .afc-main { min-width: 0; padding: 28px 20px; }
  .afc-title { font-size: 1.3rem; }
  .afc-card { min-width: 140px; padding: 16px; }
  .afc-card-value { font-size: 1.4rem; }
  .afc-stats, .afc-bottom-stats { gap: 12px; }
  .afc-legend { padding-left: 10px; }
  .afc-chart-wrap { padding: 14px 10px 8px 2px; }
  #afc-svg { height: 220px; }
}

@media (max-width: 420px) {
  .fee-calculator-heading { padding: 24px 18px 0; }
  .afc-rail { padding: 24px 18px; }
  .afc-main { padding: 24px 16px; }
  .afc-title { font-size: 1.18rem; }
  .afc-slider-label { font-size: .75rem; }
  .afc-slider-label span:last-child { font-size: 1rem; }
  .afc-card { flex: 1 1 100%; }
}


@media (max-width: 1020px) {
  .hero { min-height: 690px; }
  .hero-wash { background: linear-gradient(90deg, rgba(251, 250, 247, 1) 0%, rgba(251, 250, 247, 0.96) 48%, rgba(251, 250, 247, 0.34) 82%); }
  .services-intro { gap: 40px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .guidance-models { grid-template-columns: 1fr; }
  .about-grid { gap: 48px; }
  .booking-options { grid-template-columns: 1fr; }
  .booking-card { min-height: auto; }
}

@media (max-width: 760px) {
  .nav { min-height: 76px; gap: 14px; flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; }
  .main-nav { order: 1; }
  .main-nav a:not(.nav-cta) { display: none; }
  .main-nav.nav-open {
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }
  .main-nav.nav-open a:not(.nav-cta) {
    display: block;
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }
  .main-nav.nav-open .nav-cta { margin-top: 12px; text-align: center; }
  .nav-cta { padding: 9px 12px; font-size: 0.73rem; }
  .brand-wordmark { order: 2; }
  .brand-wordmark span { font-size: 1.08rem; }
  .brand-wordmark small { font-size: 0.52rem; }
  .hero { min-height: 760px; align-items: flex-start; }
  .hero-image { object-position: 62% center; opacity: 0.34; }
  .hero-wash { background: linear-gradient(180deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.91) 58%, rgba(251, 250, 247, 0.68) 100%); }
  .hero-content { padding: 72px 0 180px; }
  .hero-content > * { max-width: 100%; }
  h1 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-assurances { flex-direction: column; gap: 8px; }
  .section { padding: 76px 0; }
  .services-intro { grid-template-columns: 1fr; gap: 32px; }
  .services-brand-visual { width: min(100%, 430px); min-height: auto; margin: 0 auto; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .value-grid { grid-template-columns: 1fr; }
  .guidance-panel { padding: 26px; }
  .about-grid { grid-template-columns: 1fr; }
  .founder-card { position: static; }
  .founder-portrait { max-height: 700px; }
  .consultation-box { padding: 30px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .disclaimer { align-items: flex-start; flex-direction: column; gap: 15px; }
}

@media (max-width: 520px) {
  body { padding-bottom: 0; }
  .container { width: min(100% - 30px, 1180px); }
  .hero-kicker, .eyebrow { letter-spacing: 0.14em; }
}
