/* ==========================================================================
   Designer Dental · Brilliance, made gentle
   Two-colour system: deep ink blue + warm ivory, muted teal micro-accent
   ========================================================================== */

:root {
  --ink: #17252D;
  --ink-soft: #1E3038;
  --ivory: #F3EADF;
  --ivory-deep: #EDE1D2;
  --teal: #4D8D88;
  --ink-on-ivory: #17252D;
  --ivory-muted: rgba(243, 234, 223, 0.72);
  --ink-muted: rgba(23, 37, 45, 0.68);
  --rule-on-ivory: rgba(23, 37, 45, 0.14);
  --rule-on-ink: rgba(243, 234, 223, 0.16);

  --font-serif: "Newsreader", Georgia, serif;
  --font-sans: "Inter", -apple-system, "Segoe UI", sans-serif;

  --container: 1420px;
  --pad-x: clamp(20px, 5vw, 88px);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.66;
  letter-spacing: -0.005em;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, p, dl, dd, figure, blockquote, address, ol, ul { margin: 0; padding: 0; }
address { font-style: normal; }
ol, ul { list-style: none; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--ivory);
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 12px; }

/* ---------- Shared ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section {
  padding-top: clamp(84px, 11vw, 180px);
  padding-bottom: clamp(84px, 11vw, 180px);
}

section[id] { scroll-margin-top: 84px; }

.section-dark {
  background: var(--ink);
  color: var(--ivory);
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: clamp(18px, 2.4vw, 30px);
  display: flex;
  align-items: center;
  gap: 12px;
}
/* The short rule is reserved for the hero eyebrow alone */
.hero .eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--teal);
  flex: none;
}
.eyebrow-light { color: var(--ivory-muted); }

.section-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
  max-width: 20ch;
}

.section-support {
  margin-top: clamp(20px, 2.4vw, 30px);
  font-size: 18px;
  line-height: 1.7;
  max-width: 56ch;
  color: var(--ink-muted);
}
.section-dark .section-support { color: var(--ivory-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.btn-ivory {
  background: var(--ivory);
  color: var(--ink);
}
.btn-ivory:hover { background: #FBF5EC; }
.btn-primary {
  background: var(--ink);
  color: var(--ivory);
}
.btn-primary:hover { background: var(--ink-soft); }
.btn-ghost-light {
  border: 1px solid var(--rule-on-ink);
  color: var(--ivory);
}
.btn-ghost-light:hover { border-color: rgba(243, 234, 223, 0.44); }
.btn-ghost-dark {
  border: 1px solid var(--rule-on-ivory);
  color: var(--ink);
}
.btn-ghost-dark:hover { border-color: rgba(23, 37, 45, 0.4); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: var(--ivory);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}
.site-header.is-scrolled {
  background: var(--ink);
  border-bottom-color: var(--rule-on-ink);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.wordmark {
  text-decoration: none;
  line-height: 1.2;
  margin-right: auto;
}
.wordmark-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 21px;
  letter-spacing: -0.01em;
}
.wordmark-sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  margin-top: 2px;
}
.site-nav {
  display: flex;
  gap: clamp(18px, 2.2vw, 34px);
}
.site-nav a {
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ivory-muted);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.site-nav a:hover { color: var(--ivory); border-bottom-color: var(--teal); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-call {
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ivory-muted);
  display: none;
}
.header-call:hover { color: var(--ivory); }
.btn-header {
  background: var(--ivory);
  color: var(--ink);
  min-height: 42px;
  padding: 9px 20px;
  font-size: 14px;
}
.btn-header:hover { background: #FBF5EC; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  align-items: center;
}
.menu-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ivory);
  transition: transform 0.3s var(--ease-out);
}
.menu-toggle[aria-expanded="true"] .menu-line:first-child { transform: translateY(3.75px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-line:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu {
  background: var(--ink);
  border-bottom: 1px solid var(--rule-on-ink);
  padding: 12px var(--pad-x) 28px;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
}
.mobile-menu nav a {
  padding: 14px 0;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ivory);
  border-bottom: 1px solid var(--rule-on-ink);
}
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}
.mobile-menu-actions .btn-primary {
  background: var(--ivory);
  color: var(--ink);
}
.mobile-menu-actions .btn-ghost-dark {
  border-color: var(--rule-on-ink);
  color: var(--ivory);
}

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  color: var(--ivory);
  min-height: 92svh;
  display: flex;
  align-items: stretch;
  padding-top: 76px;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(40px, 6vh, 72px) var(--pad-x) 0;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(36px, 5vw, 88px);
  align-items: end;
}
.hero-copy {
  padding-bottom: clamp(48px, 8vh, 96px);
  animation: hero-copy-in 1s var(--ease-out) both;
}
.hero .eyebrow { margin-bottom: clamp(24px, 3.4vh, 40px); }
.hero-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(56px, 6.6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.hero-support {
  margin-top: clamp(24px, 3.2vh, 36px);
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.68;
  max-width: 46ch;
  color: var(--ivory-muted);
}
.hero-ctas {
  margin-top: clamp(30px, 4.4vh, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-portrait {
  align-self: end;
  animation: hero-portrait-in 1.25s var(--ease-out) both;
}
.hero-portrait img {
  width: 92%;
  margin-inline: auto;
  max-height: calc(92svh - 76px - clamp(40px, 6vh, 72px));
  object-fit: cover;
  object-position: top;
  border-radius: 22px 22px 0 0;
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-portrait-in {
  from { opacity: 0; transform: scale(1.015); }
  to { opacity: 1; transform: scale(1); }
}

/* ---------- Proof strip ---------- */
.proof-strip {
  background: var(--ivory);
  padding: clamp(44px, 5.4vw, 76px) 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3.4vw, 56px);
}
.proof-item {
  border-left: 1px solid var(--teal);
  padding-left: clamp(16px, 1.8vw, 26px);
}
.proof-item dt {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.proof-item dd {
  margin-top: 6px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-muted);
}

/* ---------- Philosophy ---------- */
.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(48px, 6vw, 110px);
  align-items: start;
}
.principles {
  counter-reset: principle;
  margin-top: clamp(24px, 3vw, 36px);
}
.principle {
  display: flex;
  gap: clamp(20px, 2.4vw, 34px);
  padding: clamp(26px, 3vw, 38px) 0;
}
.principle:not(:last-child) {
  border-bottom: 1px solid var(--rule-on-ivory);
}
.principle-index {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--teal);
  padding-top: 5px;
  flex: none;
}
.principle h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.principle p {
  margin-top: 8px;
  font-size: 15.5px;
  color: var(--ink-muted);
}

/* ---------- Profile (editorial, no second portrait) ---------- */
.profile { padding-top: 0; }
.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(48px, 6.4vw, 120px);
  align-items: center;
}
.profile-quote {
  border-left: 1px solid var(--teal);
  padding-left: clamp(26px, 3vw, 44px);
}
.profile-quote blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 43px);
  line-height: 1.38;
  letter-spacing: -0.015em;
  text-wrap: pretty;
  max-width: 26ch;
}
.profile-quote figcaption {
  margin-top: clamp(20px, 2.4vw, 30px);
  font-size: 15px;
  font-weight: 600;
}
.profile-role {
  margin-top: clamp(16px, 2vw, 24px);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 40ch;
}
.profile-bio {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 50ch;
}
.credentials {
  margin-top: clamp(32px, 4vw, 52px);
}
.credential-row {
  display: grid;
  grid-template-columns: minmax(150px, 220px) 1fr;
  gap: 20px;
  padding: 17px 0;
}
.credential-row:not(:last-child) {
  border-bottom: 1px solid var(--rule-on-ivory);
}
.credential-row dt {
  font-weight: 600;
  font-size: 15px;
}
.credential-row dd {
  font-size: 15px;
  color: var(--ink-muted);
}

/* ---------- Expertise ---------- */
.expertise-head { margin-bottom: clamp(44px, 5.6vw, 84px); }
.treatment-list {
  border-top: 1px solid var(--rule-on-ink);
  max-width: 1040px;
}
.treatment { border-bottom: 1px solid var(--rule-on-ink); }
.treatment-toggle {
  display: flex;
  align-items: baseline;
  gap: clamp(20px, 3vw, 44px);
  width: 100%;
  padding: clamp(22px, 2.6vw, 32px) 0;
  text-align: left;
  min-height: 44px;
}
.treatment-index {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--teal);
  flex: none;
}
.treatment-name {
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 500;
  letter-spacing: -0.018em;
  flex: 1;
  transition: color 0.25s var(--ease-out);
}
.treatment-toggle:hover .treatment-name { color: rgba(243, 234, 223, 0.75); }
.treatment-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: none;
  align-self: center;
}
.treatment-icon::before,
.treatment-icon::after {
  content: "";
  position: absolute;
  background: var(--ivory-muted);
  transition: transform 0.3s var(--ease-out);
}
.treatment-icon::before {
  left: 0; right: 0; top: 6.5px; height: 1px;
}
.treatment-icon::after {
  top: 0; bottom: 0; left: 6.5px; width: 1px;
}
.treatment-toggle[aria-expanded="true"] .treatment-icon::after { transform: scaleY(0); }
.treatment-panel {
  overflow: hidden;
}
.treatment-panel p {
  padding: 0 0 clamp(24px, 2.8vw, 34px);
  margin-left: calc(13px + clamp(20px, 3vw, 44px));
  max-width: 52ch;
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--ivory-muted);
}

/* ---------- Conservative-care interlude (the Practice, concluded) ---------- */
.conservative-interlude {
  margin-top: clamp(64px, 8.6vw, 128px);
  display: grid;
  grid-template-columns: 45fr 55fr;
  border-radius: 22px;
  overflow: hidden;
}
.interlude-panel {
  background: var(--ink);
  color: var(--ivory);
  min-height: 600px;
  padding: clamp(44px, 5vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.statement-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 3.1vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.interlude-support {
  margin-top: clamp(20px, 2.4vw, 28px);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ivory-muted);
  max-width: 48ch;
}
.interlude-image {
  min-height: 600px;
}
.interlude-image picture,
.interlude-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.point-list {
  margin-top: clamp(30px, 3.6vw, 48px);
}
.point-list li {
  padding: clamp(18px, 2.2vw, 26px) 0;
}
.point-list li:not(:last-child) {
  border-bottom: 1px solid var(--rule-on-ivory);
}
.point-list h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.012em;
}
.point-list p {
  margin-top: 6px;
  font-size: 15.5px;
  color: var(--ink-muted);
}

/* ---------- Environment ---------- */
.environment {
  background: var(--ivory-deep);
  /* tighter hand-off to Patient Experience: same-tone neighbour */
  padding-bottom: clamp(64px, 7.5vw, 108px);
}
.environment-head { margin-bottom: clamp(40px, 4.8vw, 70px); }
.environment-figure {
  /* let the architecture breathe beyond the text column */
  margin-inline: calc(16px - var(--pad-x));
}
.environment-figure img {
  width: 100%;
  border-radius: 22px;
}

/* ---------- Experience ---------- */
.experience {
  /* connected to the clinic above and the stories below */
  padding-top: clamp(64px, 8vw, 120px);
  padding-bottom: clamp(64px, 8vw, 120px);
}
.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(44px, 5.6vw, 100px);
  align-items: center;
}
.experience-image img {
  border-radius: 22px;
  width: 100%;
}
.experience-copy .point-list { max-width: 560px; }

/* ---------- Stories ---------- */
.stories {
  background: var(--ivory-deep);
  padding-top: clamp(72px, 9vw, 132px);
}
.stories-head { margin-bottom: clamp(44px, 5.4vw, 76px); }
.featured-quote {
  max-width: 1000px;
}
.featured-quote blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2.9vw, 40px);
  line-height: 1.32;
  letter-spacing: -0.015em;
  text-wrap: pretty;
}
.featured-quote figcaption,
.supporting-quote figcaption {
  margin-top: clamp(20px, 2.4vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.quote-name {
  font-size: 15px;
  font-weight: 600;
}
.quote-meta {
  font-size: 13.5px;
  color: var(--ink-muted);
}
.supporting-quotes {
  margin-top: clamp(48px, 6vw, 88px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 72px);
  max-width: 1120px;
}
.supporting-quote {
  padding-top: clamp(10px, 1.4vw, 18px);
}
.supporting-quote blockquote p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 50ch;
}
.supporting-quote figcaption { margin-top: 18px; }
.stories-note {
  margin-top: clamp(36px, 4.4vw, 60px);
  font-size: 13px;
  color: var(--ink-muted);
}

/* ---------- Visit ---------- */
.visit {
  /* the footer continues the same ink field; no long blank run-out */
  padding-bottom: clamp(72px, 9vw, 132px);
}
.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(48px, 6vw, 110px);
  align-items: start;
}
.visit-ctas {
  margin-top: clamp(30px, 3.8vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.visit-row {
  padding: clamp(20px, 2.4vw, 28px) 0;
}
.visit-row:not(:last-child) {
  border-bottom: 1px solid var(--rule-on-ink);
}
.visit-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  margin-bottom: 10px;
}
.visit-row address,
.visit-row p {
  font-size: 16px;
  line-height: 1.66;
  color: var(--ivory);
}
.visit-row a {
  color: var(--ivory);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-on-ink);
  transition: border-color 0.2s var(--ease-out);
  padding-bottom: 1px;
}
.visit-row a:hover { border-bottom-color: var(--teal); }
.visit-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
}
.visit-links a {
  font-size: 15px;
  font-weight: 500;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: none;
  border-bottom: 1px solid var(--rule-on-ink);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--ivory);
  border-top: 1px solid var(--rule-on-ink);
  padding: clamp(44px, 5vw, 68px) 0 clamp(30px, 3.4vw, 44px);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
.footer-name {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.footer-doctor {
  margin-top: 4px;
  font-size: 13.5px;
  color: var(--ivory-muted);
}
.footer-location {
  font-size: 14.5px;
  color: var(--ivory-muted);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}
.footer-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ivory-muted);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s var(--ease-out);
}
.footer-links a:hover { color: var(--ivory); }
.footer-bottom {
  margin-top: clamp(36px, 4vw, 56px);
  padding-top: 22px;
  border-top: 1px solid var(--rule-on-ink);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px 24px;
  font-size: 13px;
  color: var(--ivory-muted);
}

/* Authorship signature: quiet, unboxed, removable as one block */
.footer-signature {
  text-align: right;
  color: var(--ivory);
}
.signature-by {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.6;
}
.signature-name {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  opacity: 0.95;
}
.signature-role {
  margin-top: 7px;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0.58;
}

/* ---------- Mobile action bar ---------- */
.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  background: var(--ink);
  border-top: 1px solid var(--rule-on-ink);
  padding-bottom: env(safe-area-inset-bottom, 0);
  transform: translateY(102%);
  transition: transform 0.4s var(--ease-out);
}
.mobile-action-bar.is-visible { transform: translateY(0); }
.mobile-action-bar a {
  flex: 1;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ivory);
  text-decoration: none;
}
.mobile-action-bar a + a { border-left: 1px solid var(--rule-on-ink); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.no-js .reveal,
html.reduced-motion .reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-copy, .hero-portrait { animation: none; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1100px) {
  .site-nav { display: none; }
  .header-call { display: inline-flex; }
}

@media (min-width: 1101px) {
  .mobile-menu { display: none !important; }
}

@media (max-width: 900px) {
  body { font-size: 16.5px; }

  .btn-header { display: none; }
  .menu-toggle { display: flex; }

  /* Hero: portrait-led stack */
  .hero {
    min-height: auto;
    padding-top: 76px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: clamp(28px, 5vh, 48px);
    align-items: start;
  }
  .hero-copy { padding-bottom: clamp(32px, 5vh, 48px); }
  .hero-headline {
    font-size: clamp(50px, 13vw, 68px);
    line-height: 0.95;
    letter-spacing: -0.025em;
  }
  .hero-support { font-size: 16.5px; }
  .hero-ctas .btn { flex: 1 1 auto; }
  .hero-portrait img {
    max-height: 82svh;
    border-radius: 20px 20px 0 0;
  }

  .proof-grid { grid-template-columns: 1fr 1fr; }

  .philosophy-grid,
  .profile-grid,
  .experience-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: clamp(36px, 6vw, 56px);
  }
  .supporting-quotes { grid-template-columns: 1fr; }

  .experience-image { order: 2; max-width: 480px; }
  .experience-copy { order: 1; }

  /* interlude stacks: image above ink panel */
  .conservative-interlude {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }
  .interlude-image {
    order: 1;
    min-height: 0;
    height: clamp(240px, 62vw, 420px);
  }
  .interlude-panel {
    order: 2;
    min-height: 0;
    padding: 36px 22px 44px;
  }
  .statement-headline { font-size: clamp(34px, 9vw, 44px); }

  .credential-row { grid-template-columns: minmax(120px, 160px) 1fr; }

  .footer-grid { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-signature {
    text-align: left;
    margin-top: 28px;
  }

  .mobile-action-bar { display: flex; }
  .site-footer { padding-bottom: calc(clamp(30px, 3.4vw, 44px) + 62px); }
}

@media (max-width: 480px) {
  .proof-grid { grid-template-columns: 1fr; gap: 22px; }
  .credential-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .visit-ctas { flex-direction: column; }
  .visit-ctas .btn { width: 100%; }
}
