@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-variable-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #0b1210;
  --ink-2: #101a17;
  --forest: #123f34;
  --forest-2: #1c5446;
  --bone: #f4f1ea;
  --paper: #fbfaf7;
  --sage: #b7c6bb;
  --mist: #dfe7e1;
  --copper: #b7794a;
  --copper-light: #c9946a;
  --white: #fff;
  --muted: #69736f;
  --line: rgba(11, 18, 16, 0.13);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 60px rgba(11, 18, 16, 0.12);
  --shadow-soft: 0 12px 34px rgba(11, 18, 16, 0.08);
  --radius: 3px;
  --radius-lg: 12px;
  --max: 1240px;
  --header: 88px;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --serif: "Newsreader", "Iowan Old Style", Baskerville, Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; }

button { cursor: pointer; }

::selection { background: var(--copper); color: var(--white); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 11px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.narrow { width: min(calc(100% - 48px), 850px); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; }

.display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.2vw, 6.3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

h1, h2, h3, p { text-wrap: pretty; }

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.2vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

h3 { margin: 0; font-size: 1.08rem; line-height: 1.4; }

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.section { padding: clamp(80px, 9vw, 132px) 0; }

.section--bone { background: var(--bone); }

.section--forest { background: var(--forest); color: var(--white); }

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

.section--line { border-top: 1px solid var(--line); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 56px;
}

.section-head > :first-child { max-width: 760px; }

.section-head .lead { max-width: 470px; }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-size: 0.81rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.15;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn:hover { transform: translateY(-2px); background: var(--forest-2); }

.btn--copper { background: var(--copper); }

.btn--copper:hover { background: var(--copper-light); }

.btn--outline { border-color: rgba(255, 255, 255, 0.45); background: transparent; }

.btn--outline:hover { border-color: var(--white); background: var(--white); color: var(--ink); }

.btn--ink-outline { border-color: var(--ink); background: transparent; color: var(--ink); }

.btn--ink-outline:hover { background: var(--ink); color: var(--white); }

.btn svg { width: 18px; height: 18px; fill: currentColor; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link::after { content: "\2197"; font-size: 1rem; }

/* Header */
.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header);
  border-bottom: 1px solid var(--line-light);
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.is-stuck {
  position: fixed;
  border-color: var(--line);
  background: rgba(251, 250, 247, 0.96);
  box-shadow: 0 8px 30px rgba(11, 18, 16, 0.07);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.site-header--solid { position: relative; border-color: var(--line); background: var(--paper); color: var(--ink); }

.header-inner { display: flex; height: 100%; align-items: center; justify-content: space-between; gap: 30px; }

.brand { display: inline-flex; align-items: center; }

.brand img { width: 238px; height: auto; }

.logo-dark { display: none; }

.site-header.is-stuck .logo-light,
.site-header--solid .logo-light { display: none; }

.site-header.is-stuck .logo-dark,
.site-header--solid .logo-dark { display: block; }

.site-nav { display: flex; align-items: center; gap: 29px; }

.nav-link {
  position: relative;
  padding: 34px 0 31px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }

.header-cta { min-height: 44px; padding: 10px 17px; background: var(--copper); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after { display: block; width: 19px; height: 1px; background: currentColor; content: ""; transition: transform 180ms ease; }

.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(5px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(1px) rotate(45deg); background: currentColor; }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(0) rotate(-45deg); background: currentColor; }

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media, .hero-media::after { position: absolute; inset: 0; }

.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }

.hero-media::after {
  background: linear-gradient(90deg, rgba(7, 13, 11, 0.94) 0%, rgba(7, 13, 11, 0.78) 34%, rgba(7, 13, 11, 0.22) 65%, rgba(7, 13, 11, 0.08) 100%);
  content: "";
}

.hero-content { position: relative; z-index: 2; padding-top: calc(var(--header) + 56px); padding-bottom: 70px; }

.hero-copy { max-width: 720px; }

.hero .display em { color: var(--copper-light); font-style: normal; }

.hero .lead { max-width: 620px; color: rgba(255, 255, 255, 0.78); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero-proof { display: flex; flex-wrap: wrap; gap: 24px 40px; margin-top: 62px; color: rgba(255, 255, 255, 0.7); font-size: 0.76rem; letter-spacing: 0.05em; }

.hero-proof span { display: inline-flex; align-items: center; gap: 9px; }
.hero-proof span::before { width: 5px; height: 5px; border-radius: 50%; background: var(--copper); content: ""; }

.intro-strip { border-bottom: 1px solid var(--line); background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); }
.intro-cell { min-height: 128px; padding: 28px 34px; border-left: 1px solid var(--line); }
.intro-cell:first-child { display: flex; align-items: center; padding-left: 0; border-left: 0; color: var(--forest); font-family: var(--serif); font-size: 1.45rem; line-height: 1.25; }
.intro-cell small { display: block; margin-bottom: 7px; color: var(--copper); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.intro-cell strong { display: block; font-size: 0.92rem; line-height: 1.45; }

/* Cards */
.concern-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.concern-card { position: relative; min-height: 248px; padding: 33px; background: var(--paper); transition: background 180ms ease, color 180ms ease; }
.concern-card:hover { background: var(--forest); color: var(--white); }
.concern-no { color: var(--copper); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.13em; }
.concern-card h3 { margin-top: 55px; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.concern-card p { margin: 12px 0 0; color: var(--muted); font-size: 0.9rem; line-height: 1.65; transition: color 180ms ease; }
.concern-card:hover p { color: rgba(255, 255, 255, 0.7); }
.concern-card::after { position: absolute; top: 29px; right: 29px; color: var(--copper); content: "\2197"; font-size: 1.2rem; }

.pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pillar-card { padding: clamp(34px, 5vw, 60px); border: 1px solid var(--line-light); background: rgba(255, 255, 255, 0.035); }
.pillar-label { display: flex; align-items: center; gap: 12px; color: var(--copper-light); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.pillar-card h3 { margin-top: 34px; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 400; }
.pillar-card > p { max-width: 540px; margin: 19px 0 31px; color: rgba(255, 255, 255, 0.67); }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 26px; margin: 0 0 34px; padding: 0; list-style: none; }
.service-list li { padding: 11px 0; border-bottom: 1px solid var(--line-light); font-size: 0.88rem; }

/* Split content */
.split { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); align-items: center; gap: clamp(48px, 8vw, 118px); }
.split--reverse > :first-child { order: 2; }
.split-image { position: relative; }
.split-image img { width: 100%; aspect-ratio: 0.82; object-fit: cover; object-position: top center; }
.split-image--landscape img { aspect-ratio: 1.25; object-position: center; }
.split-image::after { position: absolute; right: -18px; bottom: -18px; width: 45%; height: 34%; border-right: 1px solid var(--copper); border-bottom: 1px solid var(--copper); content: ""; pointer-events: none; }
.split-copy p { color: var(--muted); }
.split-copy .lead { margin-bottom: 23px; }
.credential-list { display: grid; gap: 0; margin: 30px 0 38px; padding: 0; list-style: none; }
.credential-list li { display: flex; gap: 16px; padding: 13px 0; border-top: 1px solid var(--line); font-size: 0.9rem; }
.credential-list li::before { color: var(--copper); content: "—"; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 56px; }
.process-step { position: relative; padding: 36px 40px 34px 0; border-top: 1px solid var(--line); }
.process-step:not(:first-child) { padding-left: 40px; border-left: 1px solid var(--line); }
.process-no { display: inline-grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--copper); border-radius: 50%; color: var(--copper); font-size: 0.74rem; }
.process-step h3 { margin-top: 26px; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.process-step p { margin-bottom: 0; color: var(--muted); font-size: 0.9rem; }

/* CTA */
.cta-panel { position: relative; display: grid; min-height: 520px; align-items: center; overflow: hidden; background: var(--ink); color: var(--white); }
.cta-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.32; filter: contrast(1.1); }
.cta-panel::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11, 18, 16, 0.96), rgba(11, 18, 16, 0.55)); content: ""; }
.cta-panel .container { position: relative; z-index: 2; }
.cta-copy { max-width: 720px; padding: 82px 0; }
.cta-copy p { max-width: 580px; color: rgba(255, 255, 255, 0.72); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }

/* Inner pages */
.page-hero { position: relative; overflow: hidden; padding: clamp(86px, 11vw, 150px) 0; background: var(--ink); color: var(--white); }
.page-hero::before { position: absolute; top: -50%; right: -10%; width: 620px; height: 620px; border: 1px solid rgba(183, 121, 74, 0.2); border-radius: 50%; content: ""; }
.page-hero::after { position: absolute; right: 8%; bottom: -85%; width: 420px; height: 420px; border: 1px solid rgba(183, 198, 187, 0.15); border-radius: 50%; content: ""; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .display { max-width: 970px; }
.page-hero .lead { color: rgba(255, 255, 255, 0.68); }
.breadcrumbs { margin-bottom: 42px; color: rgba(255, 255, 255, 0.55); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs span { margin: 0 8px; }

.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(60px, 8vw, 120px); }
.prose h2 { margin: 65px 0 20px; font-size: clamp(2.1rem, 3.5vw, 3.45rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 33px 0 10px; font-size: 1.1rem; }
.prose p, .prose li { color: #4f5c57; }
.prose ul { padding-left: 20px; }
.prose .note { margin: 33px 0; padding: 24px 27px; border-left: 2px solid var(--copper); background: var(--bone); color: var(--ink); font-size: 0.9rem; }
.sidebar { position: sticky; top: calc(var(--header) + 30px); align-self: start; padding: 30px; background: var(--bone); }
.sidebar h3 { font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.sidebar p { color: var(--muted); font-size: 0.88rem; }
.sidebar .btn { width: 100%; margin-top: 12px; }
.sidebar-links { margin: 24px 0; padding: 0; list-style: none; }
.sidebar-links li { border-top: 1px solid var(--line); }
.sidebar-links a { display: flex; justify-content: space-between; padding: 12px 0; font-size: 0.82rem; }
.sidebar-links a::after { content: "\2197"; color: var(--copper); }

.treatment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.treatment-card { display: flex; min-height: 290px; flex-direction: column; justify-content: space-between; padding: 31px; border: 1px solid var(--line); background: var(--paper); transition: transform 180ms ease, box-shadow 180ms ease; }
.treatment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.treatment-card h3 { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; }
.treatment-card p { color: var(--muted); font-size: 0.88rem; }
.treatment-card .text-link { align-self: flex-start; }

.faq-list { max-width: 900px; margin-top: 50px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: flex; width: 100%; justify-content: space-between; gap: 24px; padding: 24px 0; border: 0; background: transparent; color: var(--ink); text-align: left; }
.faq-question span:first-child { font-weight: 600; }
.faq-icon { color: var(--copper); font-size: 1.35rem; transition: transform 180ms ease; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 220ms ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 760px; margin: 0 0 24px; color: var(--muted); }
.faq-question[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(50px, 7vw, 100px); }
.contact-details { padding-top: 10px; }
.contact-details h2 { font-size: clamp(2.4rem, 4vw, 3.8rem); }
.contact-details > p { color: var(--muted); }
.contact-list { margin: 36px 0 0; padding: 0; list-style: none; }
.contact-list li { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-list small { display: block; margin-bottom: 4px; color: var(--copper); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-list a:hover { color: var(--copper); }
.contact-form { padding: clamp(28px, 5vw, 52px); background: var(--bone); }
.form-head { margin-bottom: 30px; }
.form-head h2 { font-size: clamp(2.2rem, 3.5vw, 3.3rem); }
.form-head p { margin-bottom: 0; color: var(--muted); font-size: 0.9rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 21px; }
.form-group { display: grid; gap: 7px; }
.form-group--wide { grid-column: 1 / -1; }
.form-group label { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.045em; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; min-height: 52px; padding: 13px 14px; border: 1px solid rgba(11, 18, 16, 0.22); border-radius: var(--radius); outline: 0; background: var(--white); color: var(--ink); transition: border 160ms ease, box-shadow 160ms ease; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(18, 63, 52, 0.1); }
.checkbox { display: flex; align-items: flex-start; gap: 10px; }
.checkbox input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 3px; accent-color: var(--forest); }
.checkbox label { color: var(--muted); font-size: 0.78rem; line-height: 1.5; }
.checkbox a { text-decoration: underline; }
.form-note { color: var(--muted); font-size: 0.74rem; line-height: 1.55; }
.form-status { display: none; margin: 0 0 20px; padding: 13px 15px; border-left: 3px solid var(--forest); background: rgba(18, 63, 52, 0.1); font-size: 0.85rem; }
.form-status.is-error { display: block; border-color: #8d3d32; background: rgba(141, 61, 50, 0.1); }
.form-status.is-success { display: block; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

.map-card { min-height: 320px; padding: 50px; background: var(--forest); color: var(--white); }
.map-card h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 2.2rem; font-weight: 400; }
.map-card p { max-width: 500px; color: rgba(255, 255, 255, 0.68); }

/* Legal */
.legal { max-width: 850px; }
.legal h1 { margin: 0 0 30px; font-family: var(--serif); font-size: clamp(3rem, 5vw, 5rem); font-weight: 400; line-height: 1; }
.legal h2 { margin: 52px 0 15px; font-size: 2rem; }
.legal h3 { margin-top: 30px; }
.legal p, .legal li { color: var(--muted); }
.legal a { color: var(--forest); text-decoration: underline; }

/* Footer */
.site-footer { background: #080d0b; color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1.45fr repeat(3, 0.75fr); gap: 50px; padding: 78px 0 62px; }
.footer-brand img { width: 260px; }
.footer-brand p { max-width: 370px; margin: 22px 0 28px; color: rgba(255, 255, 255, 0.56); font-size: 0.87rem; }
.footer-title { margin: 5px 0 19px; color: var(--copper-light); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: rgba(255, 255, 255, 0.68); font-size: 0.82rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 25px 0 30px; border-top: 1px solid var(--line-light); color: rgba(255, 255, 255, 0.45); font-size: 0.7rem; line-height: 1.55; }
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }

.whatsapp-float {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: #1f8d5a;
  box-shadow: 0 10px 28px rgba(11, 18, 16, 0.26);
  color: var(--white);
  transition: transform 180ms ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
.whatsapp-float svg { width: 27px; height: 27px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  :root { --header: 76px; }
  .site-nav { gap: 19px; }
  .nav-link { padding-block: 29px 27px; font-size: 0.7rem; }
  .brand img { width: 210px; }
  .header-cta { display: none; }
  .intro-grid { grid-template-columns: repeat(3, 1fr); }
  .intro-cell:first-child { display: none; }
  .intro-cell:nth-child(2) { border-left: 0; padding-left: 0; }
  .footer-main { grid-template-columns: 1.3fr repeat(2, 0.7fr); }
  .footer-main > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
  .container, .narrow { width: min(calc(100% - 36px), var(--max)); }
  .section { padding: 78px 0; }
  .section-head { display: block; margin-bottom: 38px; }
  .section-head .lead { margin-top: 20px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    z-index: 49;
    top: var(--header);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 26px 18px 50px;
    overflow-y: auto;
    background: var(--paper);
    color: var(--ink);
    transform: translateX(102%);
    transition: transform 240ms ease;
  }
  .site-nav.is-open { transform: translateX(0); }
  .nav-link { padding: 18px 5px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.65rem; font-weight: 400; letter-spacing: -0.02em; text-transform: none; }
  .nav-link::after { display: none; }
  .hero { min-height: 760px; }
  .hero-media::after { background: linear-gradient(90deg, rgba(7, 13, 11, 0.91), rgba(7, 13, 11, 0.52)); }
  .hero-copy { max-width: 590px; }
  .hero-proof { margin-top: 45px; }
  .concern-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: initial; }
  .split-image { width: min(100%, 640px); }
  .split-image img { aspect-ratio: 1; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { padding: 28px 0; }
  .process-step:not(:first-child) { padding-left: 0; border-left: 0; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.4fr 1fr; }
  .footer-main > :last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .display { font-size: clamp(3.1rem, 14vw, 4.65rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.2rem); }
  .brand img { width: 190px; }
  .hero { min-height: 760px; align-items: end; }
  .hero-media img { content: url('../images/dr-luhard-hero-mobile.webp'); object-position: center top; }
  .hero-media::after { background: linear-gradient(0deg, rgba(7, 13, 11, 0.98) 0%, rgba(7, 13, 11, 0.82) 42%, rgba(7, 13, 11, 0.18) 86%); }
  .hero-content { padding-top: 260px; padding-bottom: 42px; }
  .hero .eyebrow { margin-bottom: 13px; }
  .hero .lead { margin-top: 18px; font-size: 0.95rem; line-height: 1.6; }
  .hero-actions { margin-top: 24px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-proof { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 27px; font-size: 0.67rem; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-cell { min-height: 0; padding: 19px 0; border-top: 1px solid var(--line); border-left: 0; }
  .intro-cell:nth-child(2) { border-top: 0; }
  .concern-grid { grid-template-columns: 1fr; }
  .concern-card { min-height: 210px; }
  .concern-card h3 { margin-top: 38px; }
  .pillar-grid { gap: 12px; }
  .service-list { grid-template-columns: 1fr; }
  .process-step h3 { font-size: 1.55rem; }
  .cta-copy { padding: 62px 0; }
  .cta-actions .btn { flex: 1 1 100%; }
  .page-hero { padding: 78px 0; }
  .breadcrumbs { margin-bottom: 28px; }
  .treatment-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group--wide { grid-column: auto; }
  .map-card { padding: 34px 28px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 25px; padding-top: 60px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-float { right: 15px; bottom: 15px; width: 54px; height: 54px; }
}

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

@media print {
  .site-header, .site-footer, .whatsapp-float, .cta-panel { display: none !important; }
  .section { padding: 30px 0; }
  body { background: white; color: black; }
}
