:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --surface-soft: #f4eee6;
  --surface-strong: #faf6f0;
  --ink: #1f1a19;
  --muted: #625a56;
  --line: rgba(31, 26, 25, 0.12);
  --line-strong: rgba(31, 26, 25, 0.2);
  --red: #d51e28;
  --red-dark: #b41821;
  --green-top: #181515;
  --badge: #c59430;
  --shadow-sm: 0 8px 18px rgba(24, 21, 21, 0.05);
  --shadow-md: 0 18px 44px rgba(24, 21, 21, 0.08);
  --container: 1320px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.56;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .18s ease, border-color .18s ease, background-color .18s ease, opacity .18s ease;
}
a:hover { color: var(--red); }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(31, 26, 25, 0.18);
  background: #fff;
  border-radius: 0;
  padding: 14px 14px;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(213, 30, 40, 0.55);
  box-shadow: 0 0 0 3px rgba(213, 30, 40, 0.08);
}
.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }
.narrow { width: min(calc(100% - 48px), 980px); margin: 0 auto; }
.section { padding: 84px 0; }
.section-soft { background: var(--surface-soft); }
.section-plain { background: #fff; }
.section-tight { padding: 36px 0 8px; }

.utility-inner,
.utility-nav,
.utility-actions,
.main-header-inner,
.section-nav,
.header-actions,
.subnav-inner,
.anchor-inner,
.hero-card ul,
.cookie-actions,
.process-grid,
.topic-grid,
.metrics,
.card-list,
.service-grid,
.detail-grid,
.benefit-grid,
.faq-grid,
.action-grid,
.footer-grid,
.footer-legal,
.field-grid,
.form-actions,
.step-tabs,
.quick-times,
.appointment-layout,
.quote-band,
.hero-highlights,
.key-points,
.gallery-row,
.contact-grid {
  display: flex;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--red);
  transform: rotate(45deg);
  border-radius: 1px;
}
.section-head {
  margin-bottom: 28px;
}
.section-head h2,
.content-copy h2,
.detail-panel h2,
.contact-hero h1,
.cta-copy h2 {
  margin: 12px 0 14px;
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.03em;
}
.section-head h2,
.content-copy h2,
.detail-panel h2,
.cta-copy h2 { font-size: clamp(2.7rem, 4vw, 4.35rem); }
.section-head p,
.content-copy p,
.detail-panel p,
.lead-copy p,
.cta-copy p,
.contact-hero p,
.info-panel p,
.metric-card p,
.side-card p,
.process-card p,
.topic-card p,
.service-card p,
.benefit-card p,
.faq-card p,
.action-card p,
.form-status {
  color: var(--muted);
}

.utility-bar {
  background: #faf7f2;
  border-top: 6px solid var(--green-top);
  border-bottom: 1px solid var(--line);
}
.utility-inner {
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 46px;
  font-size: .9rem;
}
.utility-nav, .utility-actions {
  gap: 18px 24px;
  flex-wrap: wrap;
}
.utility-nav a, .utility-actions a { color: var(--muted); }
.utility-nav .is-active-top { color: var(--ink); font-weight: 600; }

.main-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.main-header-inner {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 78px;
}
.section-nav {
  gap: 22px 26px;
  flex-wrap: wrap;
  align-items: center;
}
.section-nav a {
  color: var(--muted);
  position: relative;
  font-size: .97rem;
}
.section-nav .is-active {
  color: var(--ink);
  font-weight: 600;
}
.section-nav .is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  height: 2px;
  background: var(--red);
}
.header-actions {
  gap: 18px;
  align-items: center;
  font-size: .95rem;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  width: min(300px, 38vw);
  height: auto;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}
.subnav-strip {
  border-top: 1px solid rgba(31,26,25,.05);
  background: #fff;
}
.subnav-inner {
  gap: 16px 24px;
  min-height: 52px;
  align-items: center;
  flex-wrap: wrap;
}
.subnav-inner a {
  color: var(--muted);
  font-size: .93rem;
}
.mobile-menu {
  display: grid;
  gap: 12px;
  background: #fff;
  padding: 0 24px 24px;
  border-top: 1px solid var(--line);
}

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

.hero-stage,
.detail-hero {
  position: relative;
  min-height: min(780px, calc(100vh - 124px));
  background: #fff;
  overflow: clip;
}
.hero-media,
.detail-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}
.hero-media::after,
.detail-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.14) 0%, rgba(10,10,10,.58) 100%),
    linear-gradient(90deg, rgba(8,8,8,.22) 0%, rgba(8,8,8,.05) 42%, rgba(8,8,8,.08) 100%);
}
.hero-media { background-image: url('./assets/hero-consultation.jpg'); background-position: center 34%; }
.hero-shell,
.detail-hero-shell {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
}
.crumbs {
  color: rgba(255,255,255,.88);
  font-size: .92rem;
  padding-top: 16px;
}
.crumbs span { margin: 0 8px; opacity: .7; }
.hero-card-wrap {
  position: relative;
  width: min(600px, calc(100vw - 56px));
  margin-top: auto;
  margin-bottom: 24px;
}
.hero-kicker,
.detail-eyebrow {
  margin-bottom: 12px;
  color: rgba(255,255,255,.95);
  font-size: .98rem;
  font-weight: 700;
}
.hero-card,
.detail-card,
.contact-panel,
.info-panel,
.service-card,
.process-card,
.topic-card,
.metric-card,
.benefit-card,
.faq-card,
.action-card,
.form-shell,
.quote-band,
.detail-panel,
.lead-copy,
.contact-hero,
.side-card {
  background: #fff;
  border: 1px solid rgba(31, 26, 25, 0.08);
  box-shadow: var(--shadow-sm);
}
.hero-card,
.detail-card {
  position: relative;
  padding: 34px 36px 34px;
  background: rgba(246, 240, 232, .98);
  border: 0;
  box-shadow: var(--shadow-md);
}
.hero-card h1,
.detail-card h1,
.contact-hero h1 {
  margin: 0 0 18px;
  font-family: 'Source Serif 4', serif;
  font-size: clamp(3.2rem, 4.8vw, 5.1rem);
  line-height: .94;
  letter-spacing: -.04em;
  font-weight: 600;
}
.hero-card ul,
.detail-card ul,
.hero-highlights {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex-direction: column;
  gap: 12px;
}
.hero-card li,
.detail-card li,
.hero-highlights li {
  position: relative;
  padding-left: 24px;
  color: #564e49;
}
.hero-card li::before,
.detail-card li::before,
.hero-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  background: var(--red);
  transform: rotate(45deg);
  border-radius: 1px;
}
.hero-badge {
  position: absolute;
  top: 42px;
  right: -48px;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d3a548, #b78424);
  color: #fff;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 1.28rem;
  line-height: .9;
  box-shadow: 0 14px 28px rgba(24,21,21,.16);
}
.cookie-notice {
  position: absolute;
  left: 50%;
  top: 86px;
  transform: translateX(-12%);
  z-index: 5;
  width: min(500px, calc(100vw - 44px));
  background: rgba(54, 51, 51, .97);
  color: #f6f4f0;
  padding: 22px 24px;
  box-shadow: var(--shadow-md);
}
.cookie-title { font-size: 1.04rem; font-weight: 700; margin-bottom: 10px; }
.cookie-notice p { margin: 0 0 18px; color: rgba(246,244,240,.86); }
.cookie-actions { gap: 10px 12px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--red); color: #fff; }
.button-primary:hover { background: var(--red-dark); color: #fff; }
.button-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.32);
}
.button-outline {
  background: transparent;
  color: var(--red);
  border-color: rgba(213,30,40,.26);
}
.button-wide { min-width: 280px; }

.anchor-bar {
  position: sticky;
  top: 78px;
  z-index: 18;
  background: rgba(255,255,255,.97);
  border-top: 1px solid rgba(31,26,25,.06);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.anchor-inner {
  gap: 18px 34px;
  align-items: center;
  flex-wrap: wrap;
  min-height: 56px;
}
.anchor-inner a {
  color: #554d49;
  font-size: .95rem;
  padding: 4px 0;
}

.lead-copy {
  padding: 24px 28px;
  background: #fff;
  border-left: 4px solid var(--red);
  box-shadow: none;
}
.lead-copy p {
  margin: 0;
  font-size: 1.04rem;
}
.quote-band {
  gap: 0;
  margin-top: 26px;
  padding: 24px 28px;
  border-left: 4px solid var(--red);
  background: #fff;
  box-shadow: none;
}
.quote-band p {
  margin: 0;
  color: #4e4641;
  font-size: 1.05rem;
}

.process-grid,
.topic-grid,
.service-grid,
.detail-grid,
.benefit-grid,
.faq-grid,
.action-grid,
.metrics,
.gallery-row {
  gap: 18px;
  flex-wrap: wrap;
}
.process-card,
.topic-card,
.service-card,
.detail-panel,
.benefit-card,
.faq-card,
.metric-card,
.side-card,
.contact-panel,
.info-panel,
.action-card {
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}
.process-card {
  flex: 1 1 250px;
  padding: 22px 22px 20px;
  border-top: 3px solid transparent;
}
.process-card:hover { border-top-color: var(--red); }
.process-step {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #f5e8ea;
  color: var(--red);
  font-weight: 800;
}
.process-card h3,
.topic-card h3,
.service-card h3,
.detail-panel h3,
.faq-card h3,
.benefit-card h3,
.action-card strong,
.info-panel h3,
.contact-panel h2,
.form-shell h2,
.side-card h3 {
  margin: 0 0 10px;
}
.topic-card {
  flex: 1 1 calc(33.333% - 12px);
  min-width: 260px;
  padding: 22px;
}
.topic-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 0;
  background: #f5e8ea;
  color: var(--red);
  font-weight: 800;
  font-size: 1rem;
}
.content-layout,
.appointment-layout,
.contact-grid {
  gap: 30px;
  align-items: stretch;
}
.content-copy,
.content-visual,
.cta-copy,
.form-shell,
.contact-hero,
.side-rail,
.contact-panel { flex: 1 1 0; }
.content-visual img,
.gallery-card img {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid rgba(31,26,25,.08);
}
.card-list {
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
.side-card {
  padding: 18px 20px;
}
.metrics { margin-top: 18px; }
.metric-card {
  flex: 1 1 220px;
  min-height: 132px;
  padding: 18px 18px 16px;
}
.metric-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.gallery-card {
  flex: 1 1 260px;
  padding: 12px;
  border: 1px solid rgba(31,26,25,.08);
  background: #fff;
}
.service-card {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 260px;
  overflow: hidden;
}
.service-thumb {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.service-copy {
  padding: 20px 20px 22px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
  margin-top: 14px;
}
.cta-copy,
.contact-hero {
  padding: 28px 30px 30px;
  background: var(--surface-soft);
  border-radius: 0;
  box-shadow: none;
  border: 1px solid rgba(31,26,25,.08);
}
.form-shell {
  padding: 28px;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}
.form-shell h2 { font-size: 1.95rem; font-family: 'Source Serif 4', serif; }
label span,
.legend {
  display: block;
  margin-bottom: 8px;
  color: #4f4743;
  font-size: .92rem;
  font-weight: 600;
}
.field-grid { gap: 16px; }
.field-grid.two-up > * { flex: 1 1 0; }
.check-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 12px;
}
.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}
.form-actions {
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.detail-hero-shell {
  position: relative;
}
.detail-hero .detail-card {
  width: min(620px, calc(100vw - 56px));
  margin-top: auto;
  margin-bottom: 24px;
  padding: 34px 36px 34px;
}
.detail-grid,
.benefit-grid,
.faq-grid,
.key-points {
  gap: 18px;
  flex-wrap: wrap;
}
.detail-panel,
.benefit-card,
.faq-card,
.info-panel {
  flex: 1 1 280px;
  padding: 22px;
}
.detail-panel p + p { margin-top: 12px; }
.key-points { margin-top: 18px; }
.key-pill {
  flex: 1 1 220px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(31,26,25,.08);
  color: #4d433d;
}
.contact-hero-wrap { padding-top: 48px; }
.contact-grid { align-items: start; }
.contact-hero h1 { font-size: clamp(2.8rem, 4.4vw, 4.5rem); }
.contact-panel {
  padding: 22px;
}
.step-tabs {
  gap: 8px;
  flex-wrap: wrap;
  margin: 22px 0;
}
.step-tab {
  padding: 10px 14px;
  border: 1px solid rgba(31,26,25,.12);
  background: #fff;
  color: #504844;
  border-radius: 0;
  font-weight: 600;
}
.step-tab.is-current {
  border-color: rgba(213,30,40,.26);
  background: #f9ebee;
  color: var(--red);
}
.quick-times { gap: 10px; flex-wrap: wrap; }
.quick-time {
  border: 1px solid rgba(31,26,25,.12);
  background: #fff;
  color: #4e4641;
  padding: 10px 14px;
  border-radius: 0;
}
.quick-time.is-selected {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.service-actions {
  padding-top: 36px;
  background: #fff;
}
.action-card {
  flex: 1 1 260px;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
}
.action-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: #f5e8ea;
  color: var(--red);
  font-weight: 800;
}
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 36px 0 42px;
}
.footer-grid {
  gap: 28px;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-grid > div {
  min-width: 220px;
  display: grid;
  gap: 8px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}
.footer-brand img {
  width: 280px;
  max-width: 100%;
  height: auto;
}
.footer-title {
  color: var(--ink);
  font-weight: 700;
}
.footer-grid a,
.footer-grid p,
.footer-legal a { color: var(--muted); }
.footer-grid p { margin: 0; }
.footer-legal {
  gap: 16px 26px;
  margin-top: 28px;
  flex-wrap: wrap;
  font-size: .94rem;
  padding-top: 22px;
  border-top: 1px solid rgba(31,26,25,.08);
}
.hide-mobile { display: block; }

@media (max-width: 1100px) {
  .section-nav, .header-actions, .subnav-strip { display: none; }
  .menu-toggle { display: inline-block; }
  .hero-badge { right: -18px; top: 18px; }
}
@media (max-width: 900px) {
  .hero-card-wrap,
  .detail-hero .detail-card { width: min(100%, calc(100vw - 40px)); }
  .hero-card,
  .detail-card { padding: 28px 24px 26px; }
  .hero-badge { width: 96px; height: 96px; font-size: 1.08rem; }
  .content-layout,
  .appointment-layout,
  .contact-grid { flex-direction: column; }
  .topic-card,
  .service-card { min-width: 100%; }
  .utility-inner { padding: 8px 0; }
}
@media (max-width: 680px) {
  .container,
  .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .section-tight { padding: 28px 0 4px; }
  .hero-stage,
  .detail-hero { min-height: auto; }
  .hero-shell,
  .detail-hero-shell { padding-bottom: 20px; }
  .hero-card-wrap { margin-top: 260px; }
  .cookie-notice {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: auto;
    margin: 16px 14px 0;
  }
  .anchor-bar { position: static; }
  .utility-inner,
  .utility-nav,
  .utility-actions { gap: 10px 14px; }
  .hero-card h1,
  .detail-card h1,
  .contact-hero h1 { font-size: clamp(2.6rem, 10vw, 4rem); }
  .hero-badge {
    position: static;
    margin-top: 14px;
  }
  .field-grid { flex-direction: column; }
  .button-wide { width: 100%; min-width: 0; }
}

@media (max-width: 980px) {
  .brand-logo { width: min(280px, 44vw); }
}
@media (max-width: 720px) {
  .brand-logo { width: min(220px, 52vw); }
}


/* v8 refinement: closer corporate rhythm inspired by Swiss Life consultation page */
:root {
  --bg: #f7f5f1;
  --surface-soft: #f5f2ed;
  --surface-strong: #fbfaf8;
  --ink: #1b1716;
  --muted: #615854;
  --line: rgba(27, 23, 22, 0.12);
  --line-strong: rgba(27, 23, 22, 0.22);
  --red: #d8232a;
  --red-dark: #b81921;
  --green-top: #1a1717;
  --shadow-sm: 0 8px 20px rgba(18, 14, 13, 0.04);
  --shadow-md: 0 22px 56px rgba(18, 14, 13, 0.10);
  --container: 1360px;
}

body {
  background: #fff;
  color: var(--ink);
}

a:hover { color: var(--red); }
.container { width: min(calc(100% - 56px), var(--container)); }
.narrow { width: min(calc(100% - 56px), 980px); }
.section { padding: 92px 0; }
.section-tight { padding: 28px 0 4px; }
.section-soft { background: var(--surface-soft); }

.utility-bar {
  background: #fff;
  border-top: 5px solid var(--green-top);
  border-bottom: 1px solid rgba(27,23,22,.09);
}
.utility-inner {
  min-height: 44px;
  font-size: .88rem;
}
.utility-nav a, .utility-actions a { color: #6a615d; }
.utility-nav .is-active-top { color: var(--ink); font-weight: 700; }

.main-header {
  background: rgba(255,255,255,.985);
  backdrop-filter: blur(14px);
}
.main-header-inner {
  min-height: 72px;
  gap: 24px;
}
.section-nav { gap: 18px 24px; }
.section-nav a {
  font-size: .95rem;
  color: #5f5753;
}
.section-nav .is-active::after { bottom: -25px; }
.header-actions { gap: 16px; font-size: .93rem; }
.brand-logo { width: min(250px, 32vw); }
.subnav-strip { border-top: 1px solid rgba(27,23,22,.05); }
.subnav-inner {
  min-height: 50px;
  gap: 12px 22px;
}
.subnav-inner a, .anchor-inner a {
  font-size: .92rem;
}

.hero-stage, .detail-hero {
  min-height: min(760px, calc(100vh - 116px));
  background: #f1ece6;
}
.hero-media::after,
.detail-hero-media::after {
  background: linear-gradient(180deg, rgba(8,8,8,.08) 0%, rgba(8,8,8,.52) 100%),
              linear-gradient(90deg, rgba(8,8,8,.24) 0%, rgba(8,8,8,.10) 38%, rgba(8,8,8,.06) 100%);
}
.crumbs {
  padding-top: 18px;
  font-size: .88rem;
  color: rgba(255,255,255,.92);
}
.hero-card-wrap {
  width: min(640px, calc(100vw - 56px));
  margin-bottom: 34px;
}
.hero-kicker, .detail-eyebrow {
  margin-bottom: 10px;
  font-size: .9rem;
  letter-spacing: .01em;
  text-transform: none;
}
.hero-card, .detail-card {
  padding: 36px 38px 38px;
  background: rgba(245, 239, 230, .98);
  border: 1px solid rgba(27,23,22,.05);
  box-shadow: var(--shadow-md);
}
.hero-card h1, .detail-card h1, .contact-hero h1 {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(3rem, 4.6vw, 4.75rem);
  line-height: .95;
  letter-spacing: -.03em;
  font-weight: 600;
}
.hero-card ul, .detail-card ul, .hero-highlights {
  gap: 10px;
  margin: 0 0 30px;
}
.hero-card li, .detail-card li, .hero-highlights li {
  color: #594f4a;
  padding-left: 22px;
  font-size: .98rem;
}
.hero-card li::before, .detail-card li::before, .hero-highlights li::before {
  width: 7px;
  height: 7px;
  top: .6em;
}
.hero-badge {
  top: -18px;
  right: -18px;
  width: auto;
  height: auto;
  min-width: 188px;
  border-radius: 0;
  padding: 14px 16px;
  background: rgba(27,23,22,.88);
  color: #fff;
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-style: normal;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  letter-spacing: .01em;
  box-shadow: 0 10px 24px rgba(18,14,13,.16);
}
.cookie-notice {
  top: 92px;
  transform: translateX(-8%);
  width: min(520px, calc(100vw - 44px));
  background: rgba(49, 45, 45, .96);
  padding: 20px 22px;
}
.button {
  min-height: 50px;
  padding: 0 24px;
  font-weight: 700;
}
.button-wide { min-width: 310px; }
.anchor-bar {
  top: 72px;
  background: rgba(255,255,255,.985);
}
.anchor-inner {
  min-height: 54px;
  gap: 16px 30px;
}
.anchor-inner a { color: #574f4a; }

.eyebrow {
  gap: 8px;
  font-size: .77rem;
  letter-spacing: .12em;
}
.eyebrow::before { width: 10px; height: 10px; }
.section-head { margin-bottom: 30px; }
.section-head h2, .content-copy h2, .detail-panel h2, .cta-copy h2 {
  font-size: clamp(2.55rem, 3.8vw, 4rem);
  line-height: .98;
}
.section-head p, .content-copy p, .detail-panel p, .lead-copy p, .cta-copy p, .contact-hero p {
  font-size: 1rem;
}

.lead-copy {
  background: #fff;
  border-left: 3px solid var(--red);
  padding: 20px 24px;
}
.quote-band {
  margin-top: 22px;
  padding: 20px 24px;
  border-left: 3px solid var(--red);
}

.process-grid, .topic-grid, .service-grid, .action-grid, .metrics, .gallery-row { gap: 16px; }
.process-card, .topic-card, .service-card, .detail-panel, .benefit-card, .faq-card, .metric-card, .side-card, .contact-panel, .info-panel, .action-card, .form-shell {
  border: 1px solid rgba(27,23,22,.08);
}
.process-card {
  padding: 22px 22px 18px;
  border-top: 3px solid #e7ddd5;
}
.process-card:hover { border-top-color: var(--red); }
.process-step {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  background: #f8ecee;
  color: var(--red);
  font-size: 1rem;
}
.topic-card {
  flex: 1 1 calc(25% - 12px);
  min-width: 240px;
  padding: 20px 20px 18px;
}
.topic-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  background: #f8ecee;
  font-size: .94rem;
}
.topic-card h3 { font-size: 1.08rem; }
.service-card { background: #fff; }
.service-thumb { aspect-ratio: 16/9; }
.service-copy { padding: 18px 18px 20px; }
.service-link { margin-top: 12px; }

.content-layout, .appointment-layout, .contact-grid { gap: 26px; }
.side-card { padding: 16px 18px; }
.metric-card { min-height: 124px; padding: 16px 16px 14px; }
.metric-card strong { font-size: 1rem; }
.contact-hero, .cta-copy {
  background: #f6f2eb;
  padding: 26px 28px 28px;
}
.form-shell {
  padding: 28px 28px 30px;
}
.form-shell h2 {
  font-family: 'Source Serif 4', serif;
  font-size: 1.78rem;
  line-height: 1.06;
}
label span, .legend {
  color: #4f4743;
  font-size: .9rem;
}
input, select, textarea {
  min-height: 48px;
  border-color: rgba(27,23,22,.18);
}
textarea { min-height: 132px; }
.step-tabs { gap: 6px; margin: 22px 0 20px; }
.step-tab {
  padding: 10px 12px;
  font-size: .9rem;
  background: #fff;
}
.step-tab.is-current { background: #f9ecee; }
.quick-time {
  min-width: 82px;
  padding: 11px 12px;
  font-weight: 600;
}
.quick-time.is-selected { background: var(--red); color: #fff; }

.service-actions {
  padding-top: 22px;
  background: #fff;
}
.action-card {
  gap: 14px;
  padding: 22px 20px;
  background: #f6f2eb;
}
.action-icon {
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid rgba(27,23,22,.09);
}
.site-footer {
  background: #fff;
  padding: 34px 0 40px;
}
.footer-grid { gap: 26px; }
.footer-brand img { width: 250px; }
.footer-title {
  font-size: .95rem;
  letter-spacing: .01em;
}

@media (max-width: 1100px) {
  .brand-logo { width: min(220px, 44vw); }
  .hero-badge { right: 0; }
}
@media (max-width: 900px) {
  .hero-card, .detail-card { padding: 30px 24px 28px; }
  .topic-card { min-width: calc(50% - 8px); }
}
@media (max-width: 680px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 66px 0; }
  .hero-card-wrap, .detail-hero .detail-card { width: min(100%, calc(100vw - 28px)); }
  .hero-card-wrap { margin-top: 250px; margin-bottom: 18px; }
  .hero-badge {
    position: static;
    margin-top: 10px;
    min-width: 0;
    width: 100%;
  }
  .topic-card { min-width: 100%; }
  .button-wide { width: 100%; min-width: 0; }
}


/* v9 photographic assets */
.detail-hero-media {
  background-position: center 42%;
}
.service-thumb {
  position: relative;
  background-position: center;
}
.service-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,14,14,0) 0%, rgba(17,14,14,0.08) 100%);
}
.content-visual img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
@media (max-width: 680px) {
  .hero-media { background-position: center 24%; }
  .detail-hero-media { background-position: center 34%; }
}


.service-card-link,
.search-result-card {
  display: block;
}
.service-card-link .service-copy,
.search-result-card h3,
.search-result-card p {
  color: inherit;
}
.search-shell {
  align-self: start;
}
.search-result-card p strong {
  color: var(--red);
}


/* v12 mobile navigation improvements */
.mobile-menu {
  gap: 18px;
  padding: 18px 24px 24px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.mobile-menu-group {
  display: grid;
  gap: 9px;
}
.mobile-menu-group + .mobile-menu-group {
  padding-top: 16px;
  border-top: 1px solid rgba(27,23,22,.08);
}
.mobile-menu-title {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.mobile-menu a {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.35;
}
.mobile-menu a:hover {
  color: var(--red);
}
