/* =========================================================
   Kosmetik Louge K · Demo-Stylesheet
   Palette: Altrose #B5917A · Messing #C4A55A · Creme #FAF6F2
            Mocha #3D2B1F · Hellgrau #F0EAE4
   Fonts: Cardo (Display) · Josefin Sans (Body)
   ========================================================= */

/* ---------- @font-face ---------- */
@font-face {
  font-family: 'Cardo';
  src: url('../fonts/cardo-regular-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cardo';
  src: url('../fonts/cardo-italic-400.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cardo';
  src: url('../fonts/cardo-bold-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Josefin Sans';
  src: url('../fonts/josefin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Josefin Sans';
  src: url('../fonts/josefin-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Josefin Sans';
  src: url('../fonts/josefin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  --rose:       #B5917A;
  --rose-light: #C9A898;
  --rose-pale:  #E8D5CC;
  --gold:       #C4A55A;
  --gold-light: #D4B96A;
  --cream:      #FAF6F2;
  --soft:       #F0EAE4;
  --mocha:      #3D2B1F;
  --mocha-mid:  #6B4A38;
  --mocha-soft: #9A7060;
  --white:      #FFFFFF;

  --font-display: 'Cardo', Georgia, serif;
  --font-body:    'Josefin Sans', sans-serif;

  --radius-s: 4px;
  --radius-m: 10px;
  --radius-l: 18px;
  --radius-xl: 32px;

  --shadow-s: 0 2px 10px rgba(61,43,31,.08);
  --shadow-m: 0 8px 32px rgba(61,43,31,.13);
  --shadow-l: 0 20px 60px rgba(61,43,31,.18);

  --max-w: 1100px;
  --nav-h: 72px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--mocha);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--rose); text-decoration: none; }
a:hover { color: var(--mocha); }
ul { list-style: none; }

/* ---------- Demo-Bar ---------- */
.demo-bar {
  background: var(--mocha);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.55rem 1rem;
  position: relative;
  z-index: 100;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Header / Nav ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(250,246,242,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rose-pale);
  height: var(--nav-h);
}

.site-head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand__emblem {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--mocha);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mocha-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mocha-mid);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-s);
  transition: color .2s, background .2s;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--rose);
  background: var(--rose-pale);
}

.nav .nav__cta {
  background: var(--rose);
  color: var(--white);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background .2s, transform .15s;
}

.nav .nav__cta:hover {
  background: var(--mocha);
  color: var(--white);
  transform: translateY(-1px);
}

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--mocha);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h) - 2.2rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

/* Sanfter Grain-Hintergrund */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 75% 50%, rgba(181,145,122,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(196,165,90,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--mocha);
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}

h1 em {
  font-style: italic;
  color: var(--rose);
}

.lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--mocha-mid);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero-Ornament rechts */
.hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__ornament svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(181,145,122,.22));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-xl);
  border: 1.5px solid transparent;
  transition: all .22s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn--rose {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.btn--rose:hover {
  background: var(--mocha);
  border-color: var(--mocha);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
}

.btn--outline {
  background: transparent;
  color: var(--mocha);
  border-color: var(--rose-pale);
}
.btn--outline:hover {
  background: var(--rose-pale);
  color: var(--mocha);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--mocha);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  color: var(--mocha);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,165,90,.3);
}

/* ---------- Ornament-Trennlinie ---------- */
.divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0 auto;
  max-width: 320px;
  padding: 2rem 0;
  opacity: 0.5;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rose-pale);
}

.divider svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- Sections ---------- */
.section {
  padding: 6rem 0;
}

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

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

.section__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section__head p.eyebrow {
  margin-bottom: 0.6rem;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--mocha);
  letter-spacing: -0.01em;
}

h2 em {
  font-style: italic;
  color: var(--rose);
}

h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--mocha);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

/* ---------- Behandlungs-Karten (Startseite) ---------- */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.treatment-card {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 2.4rem 2rem;
  border: 1px solid var(--rose-pale);
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}

.treatment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.treatment-card:hover {
  box-shadow: var(--shadow-m);
  transform: translateY(-4px);
}

.treatment-card:hover::before {
  transform: scaleX(1);
}

.treatment-card__icon {
  width: 52px;
  height: 52px;
  background: var(--soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--rose);
}

.treatment-card__icon svg {
  width: 22px;
  height: 22px;
}

.treatment-card p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--mocha-mid);
  line-height: 1.75;
}

/* ---------- Über-Mich Band ---------- */
.about-band {
  background: var(--mocha);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.about-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(181,145,122,.15) 0%, transparent 60%);
  pointer-events: none;
}

.about-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-band .eyebrow {
  color: var(--gold);
}

.about-band h2 {
  color: var(--cream);
}

.about-band h2 em {
  color: var(--rose-light);
}

.about-band p {
  color: rgba(250,246,242,.7);
  font-weight: 300;
  line-height: 1.8;
}

.about-band__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-band__visual svg {
  width: 100%;
  max-width: 300px;
}

/* ---------- Dorfplatz-Sektion ---------- */
.local-strip {
  background: var(--soft);
  padding: 4rem 0;
  border-top: 1px solid var(--rose-pale);
  border-bottom: 1px solid var(--rose-pale);
}

.local-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.local-fact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--mocha-mid);
  letter-spacing: 0.03em;
}

.local-fact svg {
  width: 18px;
  height: 18px;
  color: var(--rose);
  flex-shrink: 0;
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--rose) 0%, var(--mocha-mid) 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-band .eyebrow {
  color: rgba(255,255,255,.65);
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.cta-band h2 em {
  color: var(--gold-light);
}

.cta-band p {
  color: rgba(255,255,255,.8);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

.tel-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  transition: color .2s;
}

.tel-link:hover {
  color: var(--gold-light);
}

/* ---------- Behandlungs-Seite ---------- */
.page-hero {
  padding: 5rem 0 4rem;
  text-align: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(181,145,122,.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.page-hero .lead {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

/* Behandlungen Seite: größere Karten */
.treatments-detail {
  display: grid;
  gap: 2rem;
}

.treatment-detail-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 2.5rem;
  border: 1px solid var(--rose-pale);
  align-items: start;
  transition: box-shadow .3s;
}

.treatment-detail-card:hover {
  box-shadow: var(--shadow-m);
}

.treatment-detail-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--rose-pale);
  line-height: 1;
  font-style: italic;
  width: 60px;
  text-align: center;
}

.treatment-detail-card h3 {
  margin-bottom: 0.5rem;
}

.treatment-detail-card p {
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--mocha-mid);
  line-height: 1.8;
}

.treatment-detail-card .tag {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--soft);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-xl);
}

/* Termin CTA Box */
.appointment-box {
  background: var(--soft);
  border-radius: var(--radius-l);
  padding: 3rem 2.5rem;
  text-align: center;
  border: 1px solid var(--rose-pale);
  margin-top: 3rem;
}

.appointment-box h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.appointment-box p {
  font-weight: 300;
  color: var(--mocha-mid);
  margin-bottom: 1.8rem;
  font-size: 0.95rem;
}

/* ---------- Kontakt-Seite ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  background: var(--soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose);
}

.contact-detail__icon svg {
  width: 16px;
  height: 16px;
}

.contact-detail__text {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--mocha-mid);
  line-height: 1.6;
}

.contact-detail__text strong {
  display: block;
  font-weight: 600;
  color: var(--mocha);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact-detail__text a {
  color: var(--rose);
  font-weight: 400;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 3rem 2.5rem;
  border: 1px solid var(--rose-pale);
  box-shadow: var(--shadow-s);
}

.contact-card h3 {
  margin-bottom: 0.5rem;
}

.contact-card .lead {
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  border-bottom: 1px solid var(--rose-pale);
  padding-bottom: 0.15rem;
  transition: color .2s, border-color .2s;
}

.maps-link:hover {
  color: var(--mocha);
  border-color: var(--mocha);
}

.maps-link svg {
  width: 14px;
  height: 14px;
}

/* ---------- Rechtliche Seiten ---------- */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-page h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-page p,
.legal-page li {
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--mocha-mid);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-page a {
  color: var(--rose);
  text-decoration: underline;
}

.demo-notice {
  background: var(--soft);
  border-left: 3px solid var(--rose);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
  padding: 1.2rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.88rem;
  color: var(--mocha-mid);
  font-weight: 400;
}

.demo-notice strong {
  color: var(--mocha);
}

/* ---------- Footer ---------- */
.site-foot {
  background: var(--mocha);
  color: rgba(250,246,242,.65);
  padding: 4rem 0 2rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.site-foot h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.site-foot ul {
  list-style: none;
}

.site-foot ul li {
  font-size: 0.88rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.site-foot ul a {
  color: rgba(250,246,242,.65);
  transition: color .2s;
}

.site-foot ul a:hover {
  color: var(--rose-light);
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.foot-brand svg {
  width: 36px;
  height: 36px;
}

.foot-brand span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(250,246,242,.9);
}

.foot-meta {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 300;
}

.foot-meta a {
  color: rgba(250,246,242,.55);
  transition: color .2s;
}

.foot-meta a:hover {
  color: var(--rose-light);
}

/* ---------- Reveal-Animationen ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
.reveal[data-delay="4"] { transition-delay: .48s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .lead { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__ornament { display: none; }
  .treatments-grid { grid-template-columns: 1fr 1fr; }
  .about-band__grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .about-band__visual { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 62px; }

  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 80vw);
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 2rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .35s cubic-bezier(.4,0,.2,1), visibility 0s linear .35s;
    box-shadow: var(--shadow-l);
    z-index: 150;
  }

  .nav.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform .35s cubic-bezier(.4,0,.2,1), visibility 0s linear 0s;
  }

  .nav a {
    font-size: 1rem;
    width: 100%;
    padding: 0.8rem 1rem;
  }

  .nav .nav__cta {
    margin-top: 0.5rem;
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  .treatments-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .treatment-detail-card { grid-template-columns: 1fr; }
  .treatment-detail-card__num { width: auto; font-size: 2rem; }

  .local-strip__inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .foot-grid { grid-template-columns: 1fr; }

  .foot-meta { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .hero { min-height: auto; padding: 3rem 0; }
  h1 { font-size: 2.1rem; }
  .tel-link { font-size: 1.7rem; }
}
