/* ==========================================================================
   MKG Berlin — Praxis für Mund-, Kiefer- und Gesichtschirurgie
   V2 · Dark Luxury Editorial · 2026
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400;1,9..144,500&family=Outfit:wght@300;400;500;600&family=Barlow+Condensed:wght@400;500&display=swap');

/* ---------- Design tokens ---------- */
:root {
  --night:      #0e120e;   /* tiefes Nachtgrün — Basis */
  --night-2:    #141a14;
  --night-3:    #1c231c;
  --bone:       #f2eee4;   /* warmes Knochenweiß */
  --bone-2:     #eae5d8;
  --ink:        #171c17;
  --ink-soft:   #47503f;
  --gold:       #c9b06b;   /* Champagner-Gold */
  --gold-soft:  #dcc98f;
  --gold-deep:  #a68d4a;
  --sage:       #8a967f;
  --line-dark:  rgba(242, 238, 228, .14);
  --line-gold:  rgba(201, 176, 107, .35);
  --line-light: rgba(23, 28, 23, .14);

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Outfit', 'Segoe UI', sans-serif;

  --container: 1360px;
  --container-narrow: 880px;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --ease: cubic-bezier(.22, .8, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--bone);
  background: var(--night);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Feines Korn über allem — Editorial-Textur */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .35s var(--ease); }
ul, ol { padding-left: 1.3em; }
strong { font-weight: 500; color: currentColor; }
::selection { background: var(--gold); color: var(--night); }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.015em;
  color: inherit;
}
h1 { font-size: clamp(2.9rem, 7.2vw, 6rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.7rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
h4 { font-size: 1.15rem; }
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.kicker {
  display: inline-flex;
  align-items: baseline;
  gap: 1rem;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.kicker .no { font-family: var(--serif); font-style: italic; letter-spacing: 0; font-size: .95rem; opacity: .9; }
.kicker::after { content: ""; width: 56px; height: 1px; background: var(--line-gold); align-self: center; }
.kicker.-centered { justify-content: center; }
.kicker.-centered::before { content: ""; width: 56px; height: 1px; background: var(--line-gold); align-self: center; }

.lead { font-size: 1.25rem; line-height: 1.75; font-weight: 300; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.container.-narrow { max-width: var(--container-narrow); }
.section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; background: var(--bone); color: var(--ink); }
.section p { color: var(--ink-soft); }
.section.-dark { background: var(--night); color: var(--bone); }
.section.-dark p { color: rgba(242, 238, 228, .68); }
.section.-dark2 { background: var(--night-2); color: var(--bone); }
.section.-dark2 p { color: rgba(242, 238, 228, .68); }
.section.-tint { background: var(--bone-2); color: var(--ink); }
.section.-flush-top { padding-top: 0; }

.section-head { max-width: 780px; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-head.-centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 1.4rem; max-width: 620px; }
.section-head.-centered p { margin-left: auto; margin-right: auto; }

/* Hairline-Trenner */
.hairline { border: 0; border-top: 1px solid var(--line-light); }
.section.-dark .hairline, .section.-dark2 .hairline { border-color: var(--line-dark); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: 1.05rem 2.4rem;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: all .45s var(--ease);
}
.btn svg { width: 15px; height: 15px; flex: none; transition: transform .45s var(--ease); }
.btn:hover svg { transform: translateX(5px); }
.btn.-gold { background: var(--gold); color: var(--night); }
.btn.-gold:hover { background: var(--gold-soft); box-shadow: 0 12px 40px rgba(201, 176, 107, .25); transform: translateY(-2px); }
.btn.-outline { border-color: var(--line-gold); color: var(--gold); background: transparent; }
.btn.-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--night); }
.btn.-outline-dark { border-color: var(--line-light); color: var(--ink); background: transparent; }
.btn.-outline-dark:hover { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.btn.-ink { background: var(--ink); color: var(--bone); }
.btn.-ink:hover { background: var(--night-3); transform: translateY(-2px); }

/* Text-Link mit Pfeil-Kreis */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.arrow-link .circ {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  display: grid;
  place-items: center;
  transition: all .45s var(--ease);
}
.arrow-link .circ svg { width: 16px; height: 16px; }
.arrow-link:hover .circ { background: var(--gold); color: var(--night); border-color: var(--gold); transform: rotate(-45deg); }

/* ==========================================================================
   Header — schwebend, transparent → Glas
   ========================================================================== */
.topbar {
  position: relative;
  z-index: 101;
  background: transparent;
  border-bottom: 1px solid var(--line-dark);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: rgba(242, 238, 228, .65);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .7rem 0;
}
.topbar a { display: inline-flex; align-items: center; gap: .5rem; color: rgba(242, 238, 228, .65); }
.topbar a:hover { color: var(--gold); }
.topbar svg { width: 13px; height: 13px; flex: none; opacity: .7; }
.topbar-group { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.topbar .-accent { color: var(--gold); }
.topbar .-accent:hover { color: var(--gold-soft); }
.tel-short { display: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), transform .5s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(14, 18, 14, .82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line-dark);
}
.site-header.is-scrolled .topbar { display: none; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.3rem 0;
  transition: padding .5s var(--ease);
}
.site-header.is-scrolled .header-inner { padding: .85rem 0; }
.brand { display: flex; flex-direction: row; align-items: center; gap: .95rem; }
.brand-mark { height: 76px; width: auto; flex: none; transition: height .5s var(--ease); }
.site-header.is-scrolled .brand-mark { height: 56px; }
.brand-text { display: flex; flex-direction: column; gap: .35rem; }
.brand-text img { height: 26px; width: auto; }
.brand-sub {
  font-family: 'Barlow Condensed', var(--sans);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.main-nav > ul { display: flex; align-items: center; gap: .4rem; list-style: none; padding: 0; }
.main-nav a.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.05rem;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(242, 238, 228, .8);
}
.main-nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 1.05rem;
  right: 100%;
  bottom: .25rem;
  height: 1px;
  background: var(--gold);
  transition: right .45s var(--ease);
}
.main-nav a.nav-link:hover, .main-nav li.is-active > a.nav-link { color: var(--gold); }
.main-nav a.nav-link:hover::after, .main-nav li.is-active > a.nav-link::after { right: 1.05rem; }
.main-nav a.nav-link svg { width: 11px; height: 11px; opacity: .6; transition: transform .35s var(--ease); }
.main-nav li.has-sub:hover a.nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.main-nav li { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 340px;
  background: rgba(20, 26, 20, .96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-dark);
  border-top: 2px solid var(--gold);
  padding: .9rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .35s var(--ease);
  z-index: 60;
}
.main-nav li.has-sub:hover .dropdown,
.main-nav li.has-sub:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex;
  align-items: baseline;
  gap: .85rem;
  padding: .6rem 1.6rem;
  font-size: .86rem;
  font-weight: 300;
  letter-spacing: .04em;
  color: rgba(242, 238, 228, .75);
  transition: all .3s var(--ease);
}
.dropdown a i {
  font-family: var(--serif);
  font-style: italic;
  font-size: .72rem;
  color: var(--gold-deep);
  flex: none;
  width: 1.4em;
}
.dropdown a:hover { color: var(--gold); padding-left: 2rem; background: rgba(201, 176, 107, .06); }

.header-cta { display: inline-flex; align-items: center; gap: 1rem; }
.header-cta .btn { padding: .75rem 1.7rem; font-size: .7rem; }

/* Burger */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 210;
}
.nav-toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 1.5px;
  background: var(--bone);
  border-radius: 2px;
  transition: all .4s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle.is-open span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* Mobile: Fullscreen-Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--night);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 6.5rem var(--pad) 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav ul { list-style: none; padding: 0; }
.mobile-nav > ul > li { border-bottom: 1px solid var(--line-dark); }
.mobile-nav > ul > li > a {
  display: block;
  padding: 1.05rem 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  color: var(--bone);
  transition: color .3s, padding-left .3s;
}
.mobile-nav > ul > li > a:hover { color: var(--gold); padding-left: .5rem; }

/* Schließen-Button im Overlay */
.mobile-nav-close {
  position: absolute;
  top: 1.4rem;
  right: var(--pad);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  background: none;
  cursor: pointer;
}
.mobile-nav-close span {
  position: absolute;
  left: 13px;
  right: 13px;
  top: 21px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
}
.mobile-nav-close span:first-child { transform: rotate(45deg); }
.mobile-nav-close span:last-child { transform: rotate(-45deg); }

/* Ausklappbares Untermenü (+ / ×) */
.mobile-nav li.has-sub > a {
  position: relative;
  padding-right: 3rem;
}
.mobile-nav li.has-sub > a::after {
  content: "+";
  position: absolute;
  right: .3rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--gold);
  transition: transform .35s var(--ease);
}
.mobile-nav li.has-sub.is-expanded > a::after { transform: translateY(-50%) rotate(45deg); }
.mobile-nav .mobile-sub { display: none; padding: 0 0 1rem .2rem; columns: 2; column-gap: 2rem; }
.mobile-nav li.is-expanded > .mobile-sub { display: block; }
.mobile-nav .mobile-sub a {
  display: block;
  padding: .3rem 0;
  font-size: .88rem;
  font-weight: 300;
  color: rgba(242, 238, 228, .6);
}
.mobile-nav .mobile-sub a:hover { color: var(--gold); }
.mobile-nav .btn { margin-top: 2rem; align-self: flex-start; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--night);
  padding-top: 130px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; transform: scale(1.05); animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }

/* Hero-Hintergrund als Slideshow (Crossfade, Bilder der Original-Website) */
.hero-bg.-slideshow img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  animation: none;
  transition: opacity 2s var(--ease), transform 7.5s var(--ease);
}
.hero-bg.-slideshow img.is-active { opacity: .5; transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .hero-bg.-slideshow img { transition: opacity .5s; transform: none; }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 70% at 20% 30%, rgba(14, 18, 14, .42) 0%, transparent 60%),
    linear-gradient(to top, var(--night) 4%, rgba(14, 18, 14, .45) 40%, rgba(14, 18, 14, .25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(6rem, 11vh, 9rem);
}
.hero-content h1 { max-width: 20ch; margin-bottom: 2rem; }
.hero-sub {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-sub p { max-width: 480px; font-size: 1.08rem; color: rgba(242, 238, 228, .7); }
.hero-actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }

/* Zeilenweiser Reveal im Hero */
.line-reveal { display: block; overflow: hidden; }
.line-reveal > span { display: block; transform: translateY(110%); animation: lineUp 1.1s var(--ease) forwards; }
.line-reveal:nth-child(2) > span { animation-delay: .12s; }
.line-reveal:nth-child(3) > span { animation-delay: .24s; }
@keyframes lineUp { to { transform: translateY(0); } }

/* Scroll-Hinweis */
.hero-scroll {
  position: absolute;
  right: var(--pad);
  bottom: 2.4rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  font-size: .62rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(242, 238, 228, .5);
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }

/* ==========================================================================
   Marquee — laufendes Band
   ========================================================================== */
.marquee {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--night);
  overflow: hidden;
  padding: 1.15rem 0;
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(242, 238, 228, .55);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}
.marquee span::after { content: "✦"; font-size: .7rem; color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ==========================================================================
   Editorial Service-Liste (statt Karten)
   ========================================================================== */
.service-list { list-style: none; padding: 0; border-top: 1px solid var(--line-light); }
.section.-dark .service-list, .section.-dark2 .service-list { border-color: var(--line-dark); }
.service-row {
  display: grid;
  grid-template-columns: 80px 1.15fr 1.6fr 60px;
  align-items: center;
  gap: 2rem;
  padding: 1.9rem 1rem;
  border-bottom: 1px solid var(--line-light);
  color: inherit;
  transition: background .4s var(--ease), padding-left .4s var(--ease);
}
.section.-dark .service-row, .section.-dark2 .service-row { border-color: var(--line-dark); }
.service-row .no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-deep);
}
.service-row h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); transition: color .35s var(--ease); }
.service-row p { font-size: .93rem; line-height: 1.65; margin: 0; }
.service-row .go {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  display: grid;
  place-items: center;
  justify-self: end;
  transition: all .45s var(--ease);
}
.section.-dark .service-row .go, .section.-dark2 .service-row .go { border-color: var(--line-dark); }
.service-row .go svg { width: 17px; height: 17px; }
.service-row:hover { background: rgba(201, 176, 107, .07); padding-left: 1.6rem; }
.service-row:hover h3 { color: var(--gold-deep); }
.section.-dark .service-row:hover h3, .section.-dark2 .service-row:hover h3 { color: var(--gold); }
.service-row:hover .go { background: var(--gold); border-color: var(--gold); color: var(--night); transform: rotate(-45deg); }

/* ==========================================================================
   Arch-Bilder & Split
   ========================================================================== */
.arch { border-radius: 999px 999px 0 0; overflow: hidden; position: relative; }
.arch img { width: 100%; height: 100%; object-fit: cover; }
.arch.-framed { padding: 14px; border: 1px solid var(--line-gold); background: transparent; }
.arch.-framed img { border-radius: 985px 985px 0 0; }

.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(3rem, 7vw, 6.5rem); align-items: center; }
.split.-reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media .arch { aspect-ratio: 4 / 5.1; }
.split-media figcaption {
  margin-top: 1.1rem;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--sage);
  text-align: center;
}
.split-body h2 { margin-bottom: 1.6rem; }
.split-body p + p { margin-top: 1.1rem; }
.split-body .btn, .split-body .arrow-link { margin-top: 2.2rem; }

/* ---------- Checkliste ---------- */
.check-list { list-style: none; padding: 0; display: grid; gap: 0; margin-top: 1.8rem; border-top: 1px solid var(--line-light); }
.section.-dark .check-list, .section.-dark2 .check-list { border-color: var(--line-dark); }
.check-list li {
  display: flex;
  gap: 1.1rem;
  align-items: baseline;
  padding: .85rem .2rem;
  border-bottom: 1px solid var(--line-light);
  font-weight: 400;
  font-size: .98rem;
  color: inherit;
}
.section.-dark .check-list li, .section.-dark2 .check-list li { border-color: var(--line-dark); }
.check-list svg { width: 15px; height: 15px; flex: none; color: var(--gold-deep); transform: translateY(2px); }
.section.-dark .check-list svg { color: var(--gold); }

/* ==========================================================================
   Stats — riesige Serif-Ziffern
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 2.5rem 2rem; border-left: 1px solid var(--line-dark); }
.stat:first-child { border-left: 0; }
.stat-number {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  margin-top: 1rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(242, 238, 228, .55);
}

/* ==========================================================================
   Cards (dezent, für Termin-Boxen u. Ä.)
   ========================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
.section.-dark .card-grid, .section.-dark2 .card-grid { background: var(--line-dark); border-color: var(--line-dark); }
.card-grid.-two { grid-template-columns: repeat(2, 1fr); }
.card-grid.-four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--bone);
  padding: 2.6rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background .4s var(--ease);
}
.section.-dark .card, .section.-dark2 .card { background: var(--night-2); }
.section.-tint .card { background: var(--bone-2); }
.card:hover { background: rgba(201, 176, 107, .1); }
.section.-dark .card:hover, .section.-dark2 .card:hover { background: var(--night-3); }
.card-icon { width: 30px; height: 30px; color: var(--gold-deep); margin-bottom: .6rem; }
.section.-dark .card-icon, .section.-dark2 .card-icon { color: var(--gold); }
.card-icon svg { width: 100%; height: 100%; }
.card h3 { font-size: 1.4rem; }
.card p { font-size: .95rem; line-height: 1.7; }
.card .card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.section.-dark .card .card-link { color: var(--gold); }
.card .card-link svg { width: 14px; height: 14px; transition: transform .4s var(--ease); }
.card:hover .card-link svg { transform: translateX(5px); }
.card .btn { margin-top: auto; align-self: flex-start; }

/* ==========================================================================
   Testimonials — große Serif-Zitate
   ========================================================================== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.testimonial {
  background: var(--night-2);
  padding: 2.8rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.testimonial-stars { display: flex; gap: 4px; color: var(--gold); }
.testimonial-stars svg { width: 13px; height: 13px; }
.testimonial p {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: rgba(242, 238, 228, .85);
}
.testimonial footer { margin-top: auto; display: flex; flex-direction: column; gap: .15rem; }
.testimonial cite {
  font-style: normal;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial small { font-size: .72rem; letter-spacing: .1em; color: rgba(242, 238, 228, .45); }

/* ==========================================================================
   Unterseiten-Hero
   ========================================================================== */
.page-hero {
  position: relative;
  background: var(--night);
  overflow: hidden;
  padding-top: 150px;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--night) 2%, rgba(14, 18, 14, .5) 55%, rgba(14, 18, 14, .3) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  max-width: 900px;
}
.page-hero-content h1 { font-size: clamp(2.5rem, 5.6vw, 4.6rem); margin-bottom: 1.4rem; }
.page-hero-content p { color: rgba(242, 238, 228, .7); font-size: 1.12rem; max-width: 640px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .7rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(242, 238, 228, .45);
  margin-bottom: 2rem;
}
.breadcrumb a { color: rgba(242, 238, 228, .6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span.sep { color: var(--gold-deep); }

/* ==========================================================================
   Team
   ========================================================================== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 3rem); }
.team-card { display: flex; flex-direction: column; }
.team-card-photo {
  border-radius: 999px 999px 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 4.8;
  background: var(--night-3);
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(.18);
  transition: transform .8s var(--ease), filter .8s var(--ease);
}
.team-card:hover .team-card-photo img { transform: scale(1.05); filter: grayscale(0); }
.team-card-body { padding: 1.6rem .4rem 0; text-align: center; }
.team-card-body h3 { font-size: 1.5rem; margin-bottom: .4rem; }
.team-card-role {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.section.-dark .team-card-role, .section.-dark2 .team-card-role { color: var(--gold); }
.team-card-body p { margin-top: 1rem; font-size: .93rem; line-height: 1.7; }
.team-card-body .card-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.1rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.section.-dark .team-card-body .card-link { color: var(--gold); }
.team-card-body .card-link svg { width: 14px; height: 14px; }

/* Vita */
.vita-layout { display: grid; grid-template-columns: 360px 1fr; gap: clamp(3rem, 6vw, 5.5rem); align-items: start; }
.vita-photo { position: sticky; top: 120px; }
.vita-photo .arch, .vita-photo img { border-radius: 999px 999px 0 0; width: 100%; }
.vita-body h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin: 3rem 0 1.4rem; }
.vita-body h2:first-child { margin-top: 0; }
.vita-timeline { list-style: none; padding: 0; border-left: 1px solid var(--line-light); margin-left: .4rem; }
.vita-timeline li { position: relative; padding: 0 0 1.2rem 1.8rem; font-size: .97rem; }
.vita-timeline li::before {
  content: "";
  position: absolute;
  left: -3.5px;
  top: .6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-deep);
}
.vita-timeline b, .vita-timeline strong { color: var(--ink); font-weight: 500; }

/* ==========================================================================
   Akkordeon — Hairline-Stil
   ========================================================================== */
.accordion { border-top: 1px solid var(--line-light); }
.accordion-item { border-bottom: 1px solid var(--line-light); }
.accordion-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1.5rem .2rem;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--ink);
  transition: color .35s var(--ease);
}
.accordion-item summary:hover { color: var(--gold-deep); }
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary .acc-icon {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  transition: all .45s var(--ease);
}
.accordion-item summary .acc-icon svg { width: 14px; height: 14px; }
.accordion-item[open] summary { color: var(--gold-deep); }
.accordion-item[open] summary .acc-icon { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); color: var(--night); }
.accordion-body { padding: 0 .2rem 1.8rem; max-width: 70ch; }
.accordion-body p + p { margin-top: .9rem; }
.accordion-body ul { margin-top: .7rem; display: grid; gap: .35rem; }

/* ==========================================================================
   CTA-Band
   ========================================================================== */
.cta-band {
  position: relative;
  background: var(--night);
  color: var(--bone);
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  border: 1px solid var(--line-gold);
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  opacity: .5;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  opacity: .3;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: rgba(242, 238, 228, .68); }
.cta-band-actions { display: flex; flex-direction: column; gap: 1rem; align-items: stretch; position: relative; z-index: 2; }
.cta-band-actions .btn { justify-content: center; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--bone);
}
.cta-phone svg { width: 18px; height: 18px; color: var(--gold); }
.cta-phone:hover { color: var(--gold); }

/* ==========================================================================
   Kontakt
   ========================================================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(3rem, 6vw, 5rem); align-items: start; }
.contact-info { display: grid; gap: 0; border-top: 1px solid var(--line-light); }
.info-tile { display: flex; gap: 1.4rem; padding: 1.7rem .2rem; border-bottom: 1px solid var(--line-light); }
.info-tile svg { width: 22px; height: 22px; color: var(--gold-deep); flex: none; margin-top: .3rem; }
.info-tile h4 {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .26em;
  color: var(--sage);
  margin-bottom: .5rem;
}
.info-tile p { font-size: .97rem; }
.info-tile a { color: var(--gold-deep); font-weight: 400; }
.info-tile a:hover { color: var(--ink); }

.hours-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours-table td { padding: .5rem 0; border-bottom: 1px solid var(--line-light); }
.hours-table td:last-child { text-align: right; font-weight: 400; color: var(--ink); }
.hours-table tr:last-child td { border-bottom: 0; }

.form-card { background: var(--night); color: var(--bone); padding: clamp(2rem, 4.5vw, 3.2rem); border: 1px solid var(--line-gold); }
.form-card h3 { margin-bottom: .6rem; }
.form-card > p { font-size: .93rem; color: rgba(242, 238, 228, .65); margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-field { display: flex; flex-direction: column; gap: .45rem; }
.form-field.-full { grid-column: 1 / -1; }
.form-field label {
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-field input, .form-field textarea, .form-field select {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--bone);
  padding: .8rem .1rem;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  border-radius: 0;
  transition: border-color .35s var(--ease);
  width: 100%;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(242, 238, 228, .35); }
.form-field input:focus, .form-field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-consent { display: flex; gap: .8rem; align-items: flex-start; font-size: .82rem; color: rgba(242, 238, 228, .6); grid-column: 1 / -1; }
.form-consent input { width: 16px; height: 16px; margin-top: .3rem; accent-color: var(--gold); flex: none; }
.form-consent a { color: var(--gold); }
.form-card .btn { margin-top: 1.8rem; width: 100%; justify-content: center; }
.form-note { font-size: .78rem; color: rgba(242, 238, 228, .5); margin-top: 1rem; text-align: center; }

.map-frame {
  border: 1px solid var(--line-light);
  width: 100%;
  height: 440px;
  filter: grayscale(1) sepia(.14) contrast(.95);
  transition: filter .6s var(--ease);
}
.map-frame:hover { filter: grayscale(.3) sepia(.05); }

/* ==========================================================================
   Prose & Behandlungs-Layout
   ========================================================================== */
.prose h2 { margin: 3rem 0 1.2rem; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 2.2rem 0 .9rem; }
.prose h4 { margin: 1.8rem 0 .7rem; font-family: var(--sans); font-size: .78rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-deep); }
.prose p + p { margin-top: 1.05rem; }
.prose ul, .prose ol { margin: 1rem 0; display: grid; gap: .45rem; color: var(--ink-soft); }
.prose img { margin: 2.2rem 0; }
.prose hr { border: 0; border-top: 1px solid var(--line-light); margin: 3rem 0; }
.prose blockquote {
  border: 0;
  padding: 2.4rem 0;
  margin: 2.4rem 0;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  text-align: center;
}

.note-box {
  border: 1px solid var(--line-gold);
  border-left: 3px solid var(--gold);
  padding: 1.6rem 1.9rem;
  margin: 2rem 0;
  background: rgba(201, 176, 107, .06);
}
.note-box h4 { margin: 0 0 .5rem; font-family: var(--serif); font-size: 1.2rem; letter-spacing: 0; text-transform: none; color: var(--ink); }
.note-box p { font-size: .95rem; }

.treatment-layout { display: grid; grid-template-columns: 1fr 340px; gap: clamp(3rem, 6vw, 5.5rem); align-items: start; }
.treatment-sidebar { position: sticky; top: 110px; display: grid; gap: 2rem; }
.sidebar-nav { border-top: 1px solid var(--line-light); }
.sidebar-nav h4 {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--sage);
  padding: 1.1rem 0 .7rem;
}
.sidebar-nav ul { list-style: none; padding: 0; }
.sidebar-nav li { border-bottom: 1px solid var(--line-light); }
.sidebar-nav a {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  padding: .68rem .1rem;
  font-size: .9rem;
  font-weight: 300;
  color: var(--ink-soft);
  transition: all .3s var(--ease);
}
.sidebar-nav a::before { content: "—"; color: var(--line-gold); flex: none; transition: color .3s; }
.sidebar-nav a:hover { color: var(--gold-deep); padding-left: .4rem; }
.sidebar-nav a:hover::before { color: var(--gold); }
.sidebar-nav a.is-current { color: var(--ink); font-weight: 500; }
.sidebar-nav a.is-current::before { color: var(--gold); content: "✦"; font-size: .7rem; }
.sidebar-cta { background: var(--night); color: var(--bone); padding: 2.2rem; border: 1px solid var(--line-gold); }
.sidebar-cta h4 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: .7rem; }
.sidebar-cta p { font-size: .9rem; color: rgba(242, 238, 228, .65); margin-bottom: 1.5rem; }
.sidebar-cta .btn { width: 100%; justify-content: center; font-size: .68rem; padding: .85rem 1.4rem; }
.sidebar-cta .cta-phone { width: 100%; margin-top: 1.1rem; font-size: 1.2rem; }

/* ==========================================================================
   Footer — großes Schlusskapitel
   ========================================================================== */
.site-footer { background: var(--night); color: rgba(242, 238, 228, .65); border-top: 1px solid var(--line-dark); position: relative; overflow: hidden; }
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  padding: clamp(4rem, 8vw, 6.5rem) 0 3.5rem;
  position: relative;
  z-index: 2;
}
.footer-brand img { height: 26px; margin-bottom: 1.4rem; }
.footer-brand p { font-size: .92rem; line-height: 1.8; }
.footer-brand .cta-phone { margin-top: 1.6rem; font-size: 1.35rem; justify-content: flex-start; }
.footer-col h4 {
  color: var(--gold);
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer-col a { color: rgba(242, 238, 228, .65); font-size: .92rem; font-weight: 300; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: .92rem; line-height: 1.9; }
.footer-col .hours-table td { border-color: var(--line-dark); color: rgba(242, 238, 228, .65); }
.footer-col .hours-table td:last-child { color: var(--bone); }

/* Riesige Wortmarke */
.footer-word {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4rem, 13vw, 12rem);
  line-height: .85;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 176, 107, .22);
  user-select: none;
  pointer-events: none;
  margin-bottom: -0.12em;
  white-space: nowrap;
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 1.6rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .78rem;
  letter-spacing: .04em;
  position: relative;
  z-index: 2;
}
.footer-bottom a { color: rgba(242, 238, 228, .65); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 2rem; }

/* ==========================================================================
   Ankündigungs-Popup (Startseite, popup.json)
   ========================================================================== */
.announce-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(14, 18, 14, .7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity .3s ease;
}
.announce-overlay.visible { opacity: 1; }

.announce-modal {
  background: var(--bone);
  color: var(--ink);
  max-width: 500px;
  width: 100%;
  padding: 2.4rem 2.4rem 2.2rem;
  position: relative;
  border-top: 3px solid var(--gold);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  transform: translateY(18px) scale(.98);
  transition: transform .3s ease;
  max-height: 86vh;
  overflow-y: auto;
}
.announce-overlay.visible .announce-modal { transform: none; }

.announce-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: none;
  color: var(--ink-soft);
  font-size: 1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .3s var(--ease);
}
.announce-close:hover { background: var(--gold); border-color: var(--gold); color: var(--night); }

.announce-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}
.announce-icon svg { width: 22px; height: 22px; }

.announce-modal h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: .7rem;
}
.announce-modal .announce-text {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.announce-modal .announce-ok { font-size: .72rem; padding: .85rem 1.9rem; }

/* ==========================================================================
   Scroll-Reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .14s; }
.reveal[data-delay="2"] { transition-delay: .28s; }
.reveal[data-delay="3"] { transition-delay: .42s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-bg img { animation: none; transform: none; }
  .line-reveal > span { transform: none; animation: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .service-row { grid-template-columns: 56px 1fr 60px; }
  .service-row p { grid-column: 2; margin-top: -0.6rem; }
  .service-row .go { grid-row: 1; grid-column: 3; }
}
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .header-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .topbar-group.-right { display: none; }
  .card-grid, .card-grid.-four { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat { border-top: 1px solid var(--line-dark); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .treatment-layout { grid-template-columns: 1fr; }
  .treatment-sidebar { position: static; }
  .vita-layout { grid-template-columns: 1fr; }
  .vita-photo { position: static; max-width: 400px; }
}
@media (max-width: 720px) {
  body { font-size: 1rem; }
  .kicker { letter-spacing: .16em; gap: .6rem; max-width: 100%; flex-wrap: wrap; font-size: .68rem; }
  .kicker::before, .kicker::after { width: 22px; flex: none; }
  .hero { padding-top: 200px; }
  .page-hero { padding-top: 210px; }
  .topbar { font-size: .66rem; }
  .topbar-inner { padding: .4rem 0; }
  .topbar-group { gap: .9rem; }
  .topbar .tel-full { display: none; }
  .topbar .tel-short { display: inline; }
  .hero h1 { font-size: clamp(1.7rem, 9vw, 2.5rem); overflow-wrap: break-word; }
  .page-hero-content h1 { font-size: clamp(1.6rem, 8vw, 2.3rem); overflow-wrap: break-word; }
  .hero-sub p, .page-hero-content p { font-size: 1rem; overflow-wrap: break-word; }
  .topbar-inner { justify-content: center; }
  .topbar-group { gap: 1.2rem; }
  .hero { min-height: 92vh; }
  .hero-scroll { display: none; }
  .card-grid, .card-grid.-two, .card-grid.-four { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.-reverse .split-media { order: 0; }
  .split-media { max-width: 420px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--line-dark); }
  .stat:first-child { border-top: 0; }
  .service-row { grid-template-columns: 40px 1fr; gap: 1rem; padding: 1.5rem .4rem; }
  .service-row p { grid-column: 1 / -1; margin-top: .2rem; }
  .service-row .go { display: none; }
  .brand-text img { height: 21px; }
  .brand-mark { height: 54px; }
  .site-header.is-scrolled .brand-mark { height: 44px; }
  .brand-sub { display: none; }
  .mobile-nav .mobile-sub { columns: 1; }
}
