:root {
  --site-zoom: .9;
  --site-zoom-fill: 1.111111;
  --bg: #f4efe6;
  --bg-warm: #ece5d6;
  --surface: #faf6ee;
  --ink: #1c201c;
  --ink-soft: #3a3f3a;
  --muted: #6b6f65;
  --line: #d9d2c2;
  --accent: #2d5440;
  --accent-light: #56896b;
  --highlight: #b8593a;
  --highlight-2: #d8794f;
  --dark: #1a1f1b;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --border-radius-lg: 4px;
  --primary-green: var(--accent);
  --secondary-green: var(--accent-light);
  --light-green: #dfeade;
  --background-light: var(--bg);
  --text-dark: var(--ink);
  --text-light: var(--muted);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  zoom: var(--site-zoom);
  width: calc(100% * var(--site-zoom-fill));
  min-height: calc(100vh * var(--site-zoom-fill));
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; background: none; border: 0; cursor: pointer; }
main { overflow: hidden; }
.wrap, .container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
::selection { background: var(--accent); color: var(--bg); }

.display, .h2, .section-title, .service-hero h1, .services-hero h1 {
  font-family: var(--font-display);
  font-weight: 350;
  letter-spacing: 0;
  font-variation-settings: "opsz" 120, "SOFT" 35;
}
.display { line-height: .9; }
.display .it, .h2 .it, .section-title em, .footer-brand-col span { font-style: italic; font-weight: 300; }
.h2, .section-title {
  margin: 0;
  font-size: 5.25rem;
  line-height: .98;
}
.lede, .section-subtitle {
  max-width: 64ch;
  color: var(--ink-soft);
  font-size: 1.2rem;
}
.eyebrow, .label, .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.label::before, .section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.section-header {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(42px, 7vw, 86px);
}

.page-loader { display: none; }
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: var(--bg);
}
.loader-text {
  overflow: hidden;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 4rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}
.loader-text span {
  display: inline-block;
  transform: translateY(110%);
  animation: loaderUp .9s var(--ease) forwards;
}
.loader-text .loader-van {
  color: var(--accent);
  font-style: italic;
  font-weight: 300;
}
@keyframes loaderUp { to { transform: translateY(0); } }
.loader.done { transform: translateY(-100%); transition: transform 1s var(--ease); }
.loader.skip { display: none; }
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
}
.site-header.sticky {
  padding: 12px 0;
  border-bottom-color: var(--line);
  background: rgba(244,239,230,.84);
  backdrop-filter: saturate(140%) blur(14px);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}
.brand span span:not(.brand-dot) { color: var(--accent); font-style: italic; font-weight: 300; }
.brand-dot {
  color: var(--highlight-2);
  font-style: normal;
  font-weight: 400;
  transition: color .3s, transform .3s;
}
.brand:hover .brand-dot { color: var(--highlight-2); transform: scale(1.2); }
.site-header nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  color: var(--ink-soft);
  transition: color .3s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: var(--accent);
  transition: right .4s var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.lang-switch:hover {
  border-color: var(--accent);
  background: rgba(43,83,67,.06);
  color: var(--accent);
}
.nav-cta, .btn, .submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .01em;
  overflow: hidden;
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.nav-cta, .btn, .submit-btn { isolation: isolate; }
.nav-cta::before, .btn::before, .submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .55s var(--ease-out);
}
.nav-cta > *, .btn > *, .submit-btn > * {
  position: relative;
  z-index: 1;
}
.btn:hover, .nav-cta:hover, .submit-btn:hover { transform: translateY(-1px); border-color: var(--accent); color: var(--bg) !important; }
.btn-appointment {
  border-color: var(--accent);
  background: var(--accent);
}
.btn-appointment::before {
  background: var(--highlight);
}
.btn-appointment:hover {
  border-color: var(--highlight);
}
.btn:hover::before, .nav-cta:hover::before, .submit-btn:hover::before { transform: scaleY(1); }
.btn-secondary, .btn.btn-secondary, .btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover, .btn.btn-secondary:hover, .btn-ghost:hover {
  background: transparent;
  color: var(--bg);
  border-color: var(--accent);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 18px;
}
.dropdown-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: .65;
  transform: translateY(1px);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: 260px;
  transform: translate(-50%, 8px);
  display: grid !important;
  gap: 0 !important;
  padding: 8px !important;
  border: 1px solid var(--line);
  background: rgba(250,246,238,.96);
  box-shadow: 0 24px 70px rgba(28,32,28,.14);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.dropdown-menu a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 9px 12px;
  color: var(--ink-soft);
  font-size: 13px;
  border-left: 2px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), padding .25s var(--ease);
}
.dropdown-menu a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transform: scale(.6);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.dropdown-menu a:hover {
  padding-left: 15px;
  border-left-color: var(--accent);
  background: var(--bg-warm);
  color: var(--accent);
}
.dropdown-menu a:hover::after {
  opacity: 1;
  transform: scale(1);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.mobile-menu-btn { display: none; width: 38px; height: 38px; padding: 8px; }
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
  transform-origin: center;
  transition: transform .25s, opacity .25s;
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(.4);
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh * var(--site-zoom-fill));
  min-height: calc(100svh * var(--site-zoom-fill));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 104px 0;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .4;
  will-change: transform;
}
.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #5A8A6D 0%, transparent 70%);
  top: -150px;
  right: -100px;
  animation: float-1 18s ease-in-out infinite;
}
.blob-2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, #D8794F 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  opacity: .25;
  animation: float-2 22s ease-in-out infinite;
}
@keyframes float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 60px) scale(1.1); }
}
@keyframes float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(.9); }
}
.orbit {
  position: absolute;
  right: -105px;
  top: 50%;
  z-index: 1;
  width: 600px;
  height: 600px;
  opacity: .38;
  pointer-events: none;
  transform: translateY(-50%);
}
.orbit svg { width: 100%; height: 100%; animation: rotate 60s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
.hero-inner { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}
.hero-tag .pulse {
  display: none;
}
.hero-tag .pulse::after { content: none; }
.hero-tag em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.45em;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero-headline {
  max-width: 980px;
  margin: 0 0 28px;
  font-size: clamp(5.7rem, 7.4vw, 6.7rem);
  line-height: .94;
}
.hero-headline .line {
  display: block;
  overflow: hidden;
  margin-bottom: -.04em;
  padding: .01em 0 .1em;
}
.hero-headline .line:first-child,
.hero-headline .line:nth-child(2) {
  display: inline-block;
  vertical-align: bottom;
}
.hero-headline .line:first-child {
  margin-right: .16em;
}
.hero-headline .line:last-child {
  display: block;
  margin-top: -.08em;
  margin-bottom: -.06em;
  padding-bottom: .1em;
}
.hero-word {
  display: inline-block;
  line-height: 1.12;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-out);
}
.ready .hero-word { transform: translateY(0); }
.ready .hero-word.d1 { transition-delay: .1s; }
.ready .hero-word.d2 { transition-delay: .22s; }
.ready .hero-word.d3 { transition-delay: .34s; }
.hero-headline .it { color: var(--accent); }
.hero-underline-target {
  position: relative;
  display: inline-block;
}
.hero-underline-target::after {
  content: "";
  position: absolute;
  left: .02em;
  right: .03em;
  bottom: .065em;
  height: .035em;
  background: var(--highlight-2);
  border-radius: 999px;
  opacity: .9;
  transform: scaleX(0);
  transform-origin: left center;
}
.ready .hero-underline-target::after {
  animation: heroTitleUnderline .7s var(--ease-out) 1.5s forwards;
}
@keyframes heroTitleUnderline {
  to { transform: scaleX(1); }
}
.hero-dot {
  display: inline-block;
  color: var(--highlight-2);
  opacity: 0;
  transform: translateY(-1.4em);
}
.ready .hero-dot {
  animation: heroDotDrop .75s cubic-bezier(.2, .9, .24, 1.18) 2.22s forwards;
}
@keyframes heroDotDrop {
  0% { opacity: 0; transform: translateY(-1.4em); }
  70% { opacity: 1; transform: translateY(.08em); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-meta {
  display: grid;
  grid-template-columns: minmax(0, 520px) auto;
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
}
.hero .lede {
  font-size: 1rem;
  line-height: 1.55;
}
.hero-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.ready .hero-fade { opacity: 1; transform: translateY(0); transition-delay: .8s; }
.ready .hero-fade.late { transition-delay: 1s; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note {
  display: inline-block;
  position: relative;
  margin-top: 22px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .3s var(--ease);
}
.hero-note::after {
  content: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
}
.hero-note:hover { color: var(--highlight); }
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  transform: none;
}
@media (min-width: 601px) {
  .scroll-cue { display: none; }
  .scroll-cue .bar { animation: none; }
}
.scroll-cue > span:first-child {
  letter-spacing: .25em;
  padding-left: .25em;
}
.scroll-cue .bar {
  position: relative;
  width: 1px;
  height: 36px;
  overflow: hidden;
  background: linear-gradient(to bottom, transparent, var(--ink-soft), transparent);
  background-size: 100% 200%;
  animation: scroll-bar 2.4s ease-in-out infinite;
}
@keyframes scroll-bar {
  0% { background-position: 0 -100%; }
  100% { background-position: 0 100%; }
}

.insurance-info, .services, .faq-section, .experience-stats, .contact, .service-details {
  padding: clamp(84px, 10vw, 140px) 0;
}
.insurance-info { background: var(--dark); color: var(--bg); }
.insurance-info .section-subtitle, .insurance-info .lede { color: rgba(244,239,230,.72); }
.insurance-info .section-title em { color: var(--highlight-2); }
.waiting-times-container {
  margin-top: 44px;
  border: 1px solid rgba(244,239,230,.16);
  background: rgba(244,239,230,.05);
}
.waiting-time-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(244,239,230,.16);
}
.tab-btn {
  padding: 18px 14px;
  color: rgba(244,239,230,.65);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.tab-btn.active { color: var(--highlight-2); }
.tab-indicator {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 33.333%;
  height: 2px;
  background: var(--highlight-2);
  transition: transform .35s var(--ease);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.waiting-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
}
.waiting-icon { width: 12px; height: 12px; border-radius: 50%; color: transparent; }
.urgent .waiting-icon { background: #c95b47; }
.fast .waiting-icon { background: #d8a54f; }
.regular .waiting-icon { background: #76a87d; }
.waiting-card h3 { margin: 0; font-family: var(--font-display); font-size: 3.375rem; font-weight: 350; }
.waiting-date { display: grid; gap: 4px; text-align: right; }
.date-label { color: rgba(244,239,230,.6); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.date { color: var(--highlight-2); font-family: var(--font-display); font-size: 4rem; line-height: 1; }
.progress-bar { grid-column: 1 / -1; height: 2px; background: rgba(244,239,230,.16); }
.progress { height: 100%; background: var(--highlight-2); }
.insurance-note {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(244,239,230,.16);
}
.insurance-details p { margin: 0 0 8px; color: rgba(244,239,230,.72); }
.insurance-details p:last-child { margin-bottom: 0; }

.waits {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg);
}
.wait-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.wait-card {
  position: relative;
  overflow: hidden;
  padding: 40px 32px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .5s var(--ease);
}
.wait-card:first-child { border-left: 1px solid var(--line); }
.wait-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--c, var(--accent));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .55s var(--ease-out);
}
.wait-card:hover::before { transform: scaleY(1); }
.wait-card:hover { color: var(--bg); }
.wait-card > * { position: relative; z-index: 1; }
.wait-card:hover .wait-num,
.wait-card:hover .wait-desc,
.wait-card:hover .wait-priority,
.wait-card:hover .wait-date,
.wait-card:hover .wait-divider {
  color: var(--bg);
  border-color: rgba(244,239,230,.3);
}
.wait-priority {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 80px;
  transition: color .5s var(--ease);
}
.wait-priority .marker {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c);
}
.wait-priority .name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.wait-num {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
}
.wait-divider {
  height: 1px;
  margin: 24px 0 16px;
  background: var(--line);
  transition: background .5s;
}
.wait-desc {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .5s;
}
.wait-date {
  margin-top: 4px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  transition: color .5s;
}
.wait-note {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.wait-note > div { flex: 1; min-width: 240px; }
.wait-note strong { color: var(--ink); font-weight: 600; }
.waits .legal-accordion {
  max-width: none;
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.waits .accordion-toggle {
  min-height: 0;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: normal;
  line-height: 1.2;
}
.waits .accordion-toggle small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.waits .toggle-icon {
  flex-basis: 24px;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 0;
  color: var(--ink);
}
.waits .legal-content {
  max-width: none;
  padding: 0 0 22px;
  columns: 2;
  column-gap: 42px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}
.waits .legal-content p {
  break-inside: avoid;
  margin: 0 0 14px;
}

.about { padding: clamp(84px, 10vw, 140px) 0; background: var(--bg-warm); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}
.about-copy {
  font-family: var(--font-display);
  font-size: 4.25rem;
  line-height: 1.05;
  letter-spacing: 0;
}
.about-copy em { color: var(--accent); font-style: italic; font-weight: 300; }
.about-side { display: grid; gap: 18px; }
.value-card {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.value-num {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.value-title { margin-bottom: 8px; font-family: var(--font-display); font-size: 28px; }
.value-desc { color: var(--muted); }

.services { background: var(--bg); }
.services .service-grid, .services-container, .services-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: transparent;
}
.service, .service-item, .service-summary-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 2.6vw, 34px);
  overflow: hidden;
  background: var(--surface);
  color: var(--ink);
  isolation: isolate;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service::before, .service-item::before, .service-summary-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
}
.service:hover::before, .service-item:hover::before, .service-summary-card:hover::before { transform: translateY(0); }
.service:hover, .service-item:hover, .service-summary-card:hover { color: var(--bg); }
.service-top { display: flex; justify-content: space-between; align-items: flex-start; }
.service-num {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}
.service-icon, .service-card-bg { display: none !important; }
.service-name, .service-item h3, .service-summary-card h3 {
  margin: 44px 0 18px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 370;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.service-desc, .service-summary-card p {
  color: var(--muted);
  font-size: 14px;
  transition: color .35s;
}
.service:hover .service-desc, .service-summary-card:hover p { color: rgba(244,239,230,.72); }
.service-cta, .service-link, .service-summary-card a {
  margin-top: auto;
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .35s, transform .35s;
}
.service:hover .service-cta, .service-item:hover .service-link, .service-summary-card:hover a { color: var(--highlight-2); transform: translateY(-2px); }
.service-new-badge {
  align-self: flex-start;
  margin-bottom: 10px;
  color: var(--highlight-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.service-top .service-new-badge { margin-bottom: 0; }

.faq-section { background: var(--bg-warm); }
.faq-accordion, .faq__list, .legal-accordion {
  max-width: 920px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.faq__item, .faq-item { border-top: 1px solid var(--line); }
.accordion-toggle, .faq__btn, .faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  text-align: left;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.48rem;
  font-style: italic;
  font-weight: 350;
  line-height: 1.2;
  letter-spacing: 0;
  transition: color .35s var(--ease);
}
.accordion-toggle:hover, .faq__btn:hover, .faq-q:hover { color: var(--accent); }
.toggle-icon, .faq__icon, .faq-icon {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: currentColor;
}
.toggle-icon { font-size: 0; }
.toggle-icon::before, .toggle-icon::after, .faq__icon::before, .faq__icon::after, .faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.toggle-icon::before, .faq__icon::before, .faq-icon::before {
  left: 50%;
  top: 50%;
  width: 20px;
  height: 1px;
}
.toggle-icon::after, .faq__icon::after, .faq-icon::after {
  left: 50%;
  top: 50%;
  width: 1px;
  height: 20px;
}
.accordion-toggle.active .toggle-icon::before, .faq__item.is-open .faq__icon::before, .faq-item[open] .faq-icon::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.accordion-toggle.active .toggle-icon::after, .faq__item.is-open .faq__icon::after, .faq-item[open] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-icon svg { display: none; }
.accordion-content, .faq__panel, .faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .5s var(--ease);
}
.legal-content, .faq__panel-inner, .faq-a-inner {
  max-width: 760px;
  padding: 0 0 30px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}
.legal-content p { margin-top: 0; }

.intro {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--bg-warm);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.intro-text { max-width: 560px; }
.intro-text .h2 { margin: 16px 0 28px; }
.intro-text p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}
.intro-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.stat:last-child { border-bottom: 1px solid var(--line); }
.stat-num {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 300;
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.stat-num .plus {
  display: inline-block;
  margin-left: .12em;
  color: var(--highlight);
  font-size: .56em;
  font-style: normal;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  transform: translateY(-.24em);
}
.stat-label {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact { background: var(--bg); }
.contact-card-container { display: none; }
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info-column, .contact aside { display: grid; gap: 22px; align-content: start; }
.info-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.info-block:last-child { border-bottom: none; }
.info-block .eyebrow { margin-bottom: 12px; }
.info-block .v {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
}
.info-block .vv {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 15px;
}
.info-block a:hover { color: var(--accent); }
.office-hours, .contact-card, .contact-form, .form {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: clamp(28px, 3vw, 44px);
  border-radius: 4px;
}
.office-hours h3, .contact-form h3 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 370;
}
.hours-grid, .hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
  margin-top: 12px;
  font-size: 14px;
}
.office-hours-block .eyebrow {
  margin-bottom: 14px;
  font-size: 14px;
  letter-spacing: .12em;
}
.office-hours-block .hours {
  gap: 10px 26px;
  font-size: 16px;
}
.office-hours-block .hours dt {
  font-size: 13px;
}
.office-hours-block .hours dd {
  font-size: 18px;
  line-height: 1.35;
}
.day-item, .hours dt, .hours dd { padding: 2px 0; border-bottom: 0; }
.day, .hours dt { color: var(--muted); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.time, .hours dd { margin: 0; color: var(--ink); text-align: left; font-family: var(--font-display); }
.hours .closed { color: var(--muted); font-style: italic; }
.office-note, .responsible-person { color: var(--muted); font-size: 14px; }
.map {
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map iframe { width: 100%; height: 100%; min-height: 300px; }
.form-group, .form-row { margin-bottom: 24px; }
.form-row.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form label, label, .floating-label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.form input, .form select, .form textarea,
input, select, textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 10px 0;
  font-size: 16px;
  outline: none;
  transition: border-color .3s;
}
textarea { min-height: 118px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 0; border-bottom-color: var(--accent); }
.form select {
  appearance: none;
  padding-right: 32px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%231C201C' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
}
.form .btn-primary { width: 100%; justify-content: center; margin-top: 8px; }
.field-error { margin-top: 6px; color: #a7432d; font-size: 13px; }
.error { border-bottom-color: #a7432d; }
.submit-btn.loading { opacity: .72; cursor: progress; }

.service-hero, .services-hero {
  padding: 150px 0 78px;
  background: var(--bg-warm);
}
.breadcrumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.breadcrumb a:hover { color: var(--accent); }
.service-hero h1, .services-hero h1 {
  margin: 0;
  font-size: 8rem;
  line-height: .92;
}
.service-media {
  margin-bottom: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.service-media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}
.service-details .service-grid, .service-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card, .meta-item {
  padding: clamp(24px, 3.5vw, 44px);
  background: var(--surface);
}
.service-card h2, .meta-item h3, .service-cta h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 370;
  line-height: 1.05;
}
.service-card p, .meta-item p, .service-card li, .meta-item li { color: var(--ink-soft); }
.service-card ul, .meta-item ul { padding-left: 20px; }
.service-meta { grid-template-columns: 1fr 1fr; margin-top: 1px; }
.service-details .service-cta, .section-cta, .cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 44px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  background: var(--surface);
}
.cta-actions, .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.services-list .service-summary-card { min-height: 250px; }

.site-footer {
  padding: 76px 0 28px;
  background: var(--dark);
  color: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  margin-bottom: 54px;
}
.footer-col h4 {
  margin: 0 0 18px;
  color: var(--highlight-2);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer-brand-col h4 {
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 4.625rem;
  font-weight: 330;
  letter-spacing: 0;
  text-transform: none;
}
.footer-col p, .footer-col a {
  color: rgba(244,239,230,.68);
  transition: color .3s;
}
.footer-col a:hover { color: var(--highlight-2); }
.footer-col ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.copyright {
  padding-top: 22px;
  border-top: 1px solid rgba(244,239,230,.14);
  color: rgba(244,239,230,.48);
  font-size: 13px;
}
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

[data-reveal], .reveal, .reveal-stagger {
  --reveal-y: 26px;
  opacity: 0;
  transform: translateY(var(--reveal-y));
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
[data-reveal].in, [data-reveal].revealed, [data-reveal-stagger].in, [data-reveal-stagger].revealed,
.reveal.visible, .reveal.in, .reveal.revealed, .reveal-stagger.visible, .reveal-stagger.in, .reveal-stagger.revealed {
  --reveal-y: 0px;
  opacity: 1;
  transform: translateY(var(--reveal-y));
}

.cursor-title-motion {
  transform:
    translateY(var(--reveal-y, 0px))
    perspective(900px)
    rotateX(var(--title-rotate-x, 0deg))
    rotateY(var(--title-rotate-y, 0deg))
    translate3d(var(--title-shift-x, 0px), var(--title-shift-y, 0px), 0);
  transform-origin: 50% 55%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
}
.cursor-title-motion.in,
.cursor-title-motion.visible,
.cursor-title-motion.revealed {
  transform:
    translateY(var(--reveal-y, 0px))
    perspective(900px)
    rotateX(var(--title-rotate-x, 0deg))
    rotateY(var(--title-rotate-y, 0deg))
    translate3d(var(--title-shift-x, 0px), var(--title-shift-y, 0px), 0);
  transition: opacity .8s var(--ease-out), transform .18s var(--ease-out);
}

.cookie-consent, .cookie-modal-content {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 20px 70px rgba(28,32,28,.14);
}
.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9990;
  padding: 20px;
}
.cookie-content { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9991;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(28,32,28,.4);
  padding: 20px;
}
.cookie-modal.show { display: flex; }
.cookie-modal-content { max-width: 680px; padding: 26px; }
.cookie-settings-btn { position: fixed; left: 18px; bottom: 18px; z-index: 9990; }

/* ── Service page v2 ── */
.service-hero-inner { padding-top: 8px; }
.service-hero-inner .label { margin-bottom: 28px; }
.service-hero-inner .lede { margin-top: 24px; }

.service-intro {
  padding: clamp(70px, 9vw, 110px) 0;
  border-bottom: 1px solid var(--line);
}
.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}
.service-intro-text .label { margin-bottom: 32px; }
.service-intro-text p, .service-intro-text ul {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.7;
}
.service-intro-text p + p,
.service-intro-text p + ul { margin-top: 14px; }
.service-intro-text ul { padding-left: 20px; }
.service-intro-text li + li { margin-top: 6px; }
.service-intro-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.service-page-section {
  padding: clamp(70px, 9vw, 110px) 0;
  border-bottom: 1px solid var(--line);
}
.service-page-section:last-of-type { border-bottom: none; }
.service-page-section .section-header { margin-bottom: clamp(28px, 4vw, 56px); }
.service-page-section .service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-page-section .service-meta { margin-top: 0; }
.service-page-section .section-cta,
.service-page-section .service-cta { margin-top: 0; }

@media (max-width: 1100px) {
  .h2, .section-title { font-size: 4.25rem; }
  .hero-headline { font-size: 7rem; }
  .about-copy { font-size: 3.5rem; }
  .stat-number, .stat-num { font-size: 6.5rem; }
  .service-hero h1, .services-hero h1 { font-size: 6.5rem; }
  .site-header nav ul { gap: 18px; }
  .nav-cta { display: none; }
  .lang-switch { margin-left: auto; }
  .services .service-grid, .services-container, .services-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .orbit { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 881px) {
  .hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 180px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(244,239,230,0), var(--bg));
  }
  .waits {
    margin-top: -1px;
    padding-top: clamp(28px, 4vw, 58px);
  }
}
@media (max-width: 880px) {
  body {
    zoom: 1;
    width: 100%;
    min-height: 100vh;
  }
  .h2, .section-title { font-size: 3.35rem; }
  .loader-text { font-size: 3rem; }
  .hero-headline { font-size: 5.9rem; }
  .waiting-card h3, .date { font-size: 3rem; }
  .wait-num { font-size: 3rem; }
  .about-copy { font-size: 3rem; }
  .stat-number, .stat-num { font-size: 5.5rem; }
  .service-hero h1, .services-hero h1 { font-size: 5rem; }
  .site-header { padding: 12px 0; }
  .nav-container { justify-content: flex-start; gap: 8px; }
  .brand { margin-right: auto; }
  .nav-cta {
    order: 2;
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 40px;
    padding: 9px 10px;
    border-color: var(--line);
    background: transparent;
    color: var(--ink);
    font-size: 12px;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .nav-cta::before { content: none; }
  .nav-cta:hover {
    border-color: var(--accent);
    background: rgba(43,83,67,.06);
    color: var(--accent) !important;
    transform: none;
  }
  .lang-switch { order: 3; flex: 0 0 auto; margin-left: 0; min-width: 40px; min-height: 40px; }
  .mobile-menu-btn { display: block; order: 4; }
  .site-header nav {
    position: fixed;
    inset: 66px 0 auto 0;
    max-height: calc(100svh - 66px);
    overflow-y: auto;
    padding: 14px var(--gutter) 16px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(250,246,238,.98);
    overscroll-behavior: contain;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s var(--ease), opacity .35s var(--ease);
  }
  .nav-container.mobile-active nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-header nav ul { display: grid; gap: 2px; align-items: stretch; }
  .nav-link { padding: 9px 0; }
  .dropdown-menu { position: static; width: auto; transform: none; opacity: 1; pointer-events: auto; box-shadow: none; background: transparent; border: 0; padding: 0 0 0 16px !important; }
  .dropdown-menu a { min-height: 30px; padding: 5px 10px; font-size: 12px; }
  .section-header, .hero-meta, .about-grid, .intro-grid, .contact-grid, .service-details .service-grid, .service-meta, .service-details .service-cta, .section-cta, .cta, .insurance-note, .service-intro-grid, .service-page-section .service-grid { grid-template-columns: 1fr; }
  .service-intro-media { order: -1; }
  .wait-grid { grid-template-columns: 1fr; }
  .wait-card { border-left: 1px solid var(--line); }
  .wait-priority { margin-bottom: 40px; }
  .waits .legal-content { columns: 1; }
  .waiting-card { grid-template-columns: 1fr; text-align: left; }
  .waiting-date { text-align: left; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    justify-content: center;
    padding: 96px 0 78px;
  }
  .hero-inner { display: flex; flex-direction: column; justify-content: center; }
  .scroll-cue { display: none; }
  .h2, .section-title { font-size: 2.65rem; }
  .lede, .section-subtitle { font-size: 1.05rem; }
  .loader-text { font-size: 2.4rem; }
  .hero-tag { margin-bottom: 24px; }
  .hero-headline {
    margin-bottom: 30px;
    font-size: clamp(3.35rem, 16.4vw, 3.95rem);
  }
  .hero-headline .line,
  .hero-headline .line:first-child,
  .hero-headline .line:nth-child(2) {
    display: block;
    margin-right: 0;
  }
  .hero-headline .line {
    overflow: hidden;
    margin-bottom: -.08em;
    padding: .015em 0 .22em;
  }
  .hero-headline .line:last-child {
    margin-top: 0;
    margin-bottom: -.12em;
    padding-bottom: .24em;
  }
  .hero .lede {
    font-size: .9rem;
    line-height: 1.5;
  }
  .hero-note { margin-top: 16px; }
  .hero-meta { gap: 16px; }
  .waiting-card h3, .date { font-size: 2.5rem; }
  .wait-num { font-size: 2.7rem; }
  .about-copy { font-size: 2.5rem; }
  .stat-number, .stat-num { font-size: 4.5rem; }
  .service-hero h1, .services-hero h1 { font-size: 4rem; }
  .service-card h2, .meta-item h3, .service-cta h3 { font-size: 2rem; }
  .footer-brand-col h4 { font-size: 3.4rem; }
  .waits .accordion-toggle { font-size: 1.05rem; }
  .faq-section .accordion-toggle, .faq-section .faq__btn, .faq-section .faq-q { font-size: 1.25rem; }
  .waits .legal-content { padding-bottom: 20px; }
  .hero-actions .btn, .hero-actions { width: 100%; }
  .services .service-grid, .services-container, .services-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service, .service-item, .service-summary-card { min-height: 210px; padding: 18px; }
  .service-name, .service-item h3, .service-summary-card h3 {
    margin-top: 26px;
    font-size: clamp(.96rem, 4.55vw, 1.12rem);
    line-height: 1.08;
  }
  .service-desc, .service-summary-card p { display: none; }
  .form-row.split { grid-template-columns: 1fr; }
  .waiting-time-tabs { grid-template-columns: 1fr; }
  .tab-indicator { display: none; }
  .cookie-content { display: grid; }
}

@media (max-width: 380px) {
  .hero {
    padding-top: 88px;
    padding-bottom: 64px;
  }
  .hero-tag { margin-bottom: 18px; }
  .hero-headline {
    margin-bottom: 24px;
    font-size: clamp(3.05rem, 15.8vw, 3.5rem);
  }
  .hero-actions .btn { min-height: 42px; padding-block: 10px; }
  .service, .service-item, .service-summary-card {
    min-height: 196px;
    padding: 16px 14px;
  }
  .service-name, .service-item h3, .service-summary-card h3 {
    margin-top: 22px;
    font-size: clamp(.9rem, 4.35vw, 1rem);
  }
  .service-cta, .service-link, .service-summary-card a { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-word, .hero-fade, .hero-dot, [data-reveal], .reveal, .reveal-stagger, .cursor-title-motion { opacity: 1; transform: none; animation: none; }
}
