:root {
  --bg: #ffffff;
  --bg-alt: #f5f0f2;
  --dark: #111111;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --pink: #e6007e;
  --pink-dark: #c4006a;
  --pink-light: #fce4f1;
  --white: #ffffff;
  --border: #e0d6da;
  --font: "DM Sans", sans-serif;
  --serif: "Instrument Serif", serif;
}

*, *::before, *::after {
  box-sizing: border-box; margin: 0; padding: 0;
  border-radius: 0 !important;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { width: 90%; margin-inline: auto; }

/* ══════════════════════════════
   HEADER — Mobile-first
   ══════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 60px;
}
.header__logo { height: 28px; width: auto; }
.header__toggle {
  display: block; border: 0; background: none; cursor: pointer;
  width: 40px; height: 40px; padding: 0;
}
.header__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); margin: 5px auto;
  transition: transform .3s, opacity .3s;
}
.header__nav {
  position: absolute; top: 60px; left: 0; right: 0;
  display: none; flex-direction: column;
  background: #ffffff; border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 1rem 5%;
}
.header__nav.open { display: flex; }
.header__nav a {
  font-weight: 600; font-size: .88rem; text-transform: uppercase;
  letter-spacing: .04em; color: var(--text);
  transition: color .2s;
  padding: .6rem 0;
}
.header__nav a:hover,
.header__nav a.active { color: var(--pink); }

/* ══════════════════════════════
   HERO — Mobile-first
   ══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 60px;
  background: var(--dark);
}

/* ── Ambient Glow ── */
.hero__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 70% at 55% 45%, rgba(230,0,126,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(230,0,126,.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 20% 20%, rgba(180,0,100,.06) 0%, transparent 50%);
  animation: glowShift 8s ease-in-out infinite alternate;
}
@keyframes glowShift {
  0% { opacity: .7; }
  50% { opacity: 1; }
  100% { opacity: .8; }
}

/* ── Particles ── */
.hero__particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.hero__particle {
  position: absolute; width: 3px; height: 3px;
  background: rgba(230,0,126,.5);
  animation: particleFloat linear infinite;
}
.hero__particle:nth-child(2n) { width: 2px; height: 2px; background: rgba(255,255,255,.3); }
.hero__particle:nth-child(3n) { width: 4px; height: 4px; background: rgba(230,0,126,.35); }
@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(30px); opacity: 0; }
}

/* ── Layout: Text + Key Visual zentriert, 30px Abstand ── */
.hero__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 1.5rem;
  padding: 1.5rem 0 3.5rem;
  width: 100%;
}

.hero__visual {
  position: relative; order: 1;
  display: flex; justify-content: center; align-items: flex-end;
  flex-shrink: 0;
}
.hero__keyvisual-pulse {
  position: relative;
  animation: kvPulse3x 18s ease-in-out 2.5s infinite;
}
.hero__ring {
  position: absolute; bottom: -8%; left: 50%; transform: translateX(-50%);
  width: 85%; aspect-ratio: 1; border-radius: 50% !important;
  background: radial-gradient(circle, rgba(230,0,126,.3) 0%, rgba(230,0,126,.08) 50%, transparent 70%);
  filter: blur(35px);
  animation: ringPulse 4s ease-in-out infinite;
}
.hero__keyvisual {
  position: relative; z-index: 2;
  height: 48vh; max-height: 420px; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.5)) drop-shadow(0 0 100px rgba(230,0,126,.12));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 2%, black 96%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 2%, black 96%, transparent 100%);
}

/* ── Text ── */
.hero__text { color: var(--white); order: 2; }

.badge {
  display: inline-block; padding: .35rem .7rem;
  background: var(--pink); color: #fff;
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: .8rem;
}
.hero__text h1 {
  font-family: var(--serif); font-size: clamp(2.4rem, 8vw, 3.2rem);
  line-height: 1.05; margin-bottom: .8rem; font-weight: 400; color: #fff;
}
.hero__text h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #fff 30%, var(--pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__text p {
  font-size: .95rem; opacity: .82; margin-bottom: 1.4rem;
  line-height: 1.75;
}
.hero__actions {
  display: flex; flex-direction: column; gap: .6rem;
  align-items: center;
}
.hero__actions .btn { width: 100%; text-align: center; max-width: 320px; }

/* ── Key Visual ── */
@keyframes ringPulse {
  0%, 100% { opacity: .5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}
@keyframes kvEntrance {
  from { opacity: 0; transform: translateY(50px) scale(.92); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
/*  3 pulses inside 18s cycle, rest = pause */
@keyframes kvPulse3x {
  0%    { transform: scale(1); }
  5%    { transform: scale(1.035); }
  10%   { transform: scale(1); }
  12%   { transform: scale(1); }
  17%   { transform: scale(1.035); }
  22%   { transform: scale(1); }
  24%   { transform: scale(1); }
  29%   { transform: scale(1.035); }
  34%   { transform: scale(1); }
  100%  { transform: scale(1); }
}

/* ── Text Entrance ── */
.hero-anim {
  opacity: 0; transform: translateY(24px);
  animation: heroIn .65s cubic-bezier(.22,1,.36,1) both;
}
.hero-anim--1 { animation-delay: .5s; }
.hero-anim--2 { animation-delay: .65s; }
.hero-anim--3 { animation-delay: .8s; }
.hero-anim--4 { animation-delay: .95s; }
.hero-anim--5 { animation-delay: 1.8s; }
.hero-anim--img {
  opacity: 0; transform: translateY(50px) scale(.92);
  animation: kvEntrance .9s cubic-bezier(.22,1,.36,1) .3s both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Flash-Outline Buttons ── */
.btn--flash {
  position: relative; overflow: hidden;
}
.btn--flash::before {
  content: ""; position: absolute;
  top: -2px; left: -80%; width: 60%; height: calc(100% + 4px);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg);
  animation: flashSweep 3s ease-in-out infinite 2s;
}
@keyframes flashSweep {
  0% { left: -80%; }
  40% { left: 130%; }
  100% { left: 130%; }
}
.btn--flash::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border: 1px solid rgba(255,255,255,.2);
  animation: outlineFlash 3s ease-in-out infinite 2s;
}
@keyframes outlineFlash {
  0%, 100% { border-color: rgba(255,255,255,.15); box-shadow: none; }
  20% { border-color: rgba(255,255,255,.7); box-shadow: 0 0 14px rgba(230,0,126,.5), inset 0 0 10px rgba(230,0,126,.15); }
  40% { border-color: rgba(255,255,255,.15); box-shadow: none; }
}
.btn--outline.btn--flash::after { animation-name: outlineFlashAlt; }
@keyframes outlineFlashAlt {
  0%, 100% { border-color: rgba(255,255,255,.45); box-shadow: none; }
  20% { border-color: #fff; box-shadow: 0 0 18px rgba(255,255,255,.35), inset 0 0 10px rgba(255,255,255,.1); }
  40% { border-color: rgba(255,255,255,.45); box-shadow: none; }
}

/* ── Scroll Hint ── */
.hero__scroll-hint {
  position: absolute; bottom: 1rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
}
.hero__scroll-line {
  display: block; width: 1px; height: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .25; transform: scaleY(.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ══════════════════════════════
   PAGE HERO (Unterseiten)
   ══════════════════════════════ */
.page-hero {
  padding: calc(60px + 2rem) 0 2rem;
  background: var(--dark); color: var(--white);
}
.page-hero .eyebrow { color: var(--pink); }
.page-hero h1 {
  font-family: var(--serif); font-size: 1.8rem;
  font-weight: 400; line-height: 1.15; margin-bottom: .8rem;
}
.page-hero p { max-width: 60ch; opacity: .8; font-size: .95rem; }

/* ══════════════════════════════
   BUTTONS — Mobile-first
   ══════════════════════════════ */
.btn {
  display: inline-block; padding: .85rem 1.4rem;
  font-weight: 700; font-size: .85rem;
  border: 2px solid transparent; cursor: pointer;
  background: var(--pink); color: #fff;
  text-transform: uppercase; letter-spacing: .04em;
  transition: background .25s, transform .2s, box-shadow .25s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230,0,126,.35);
}
.btn--outline {
  background: transparent; border-color: #fff; color: #fff;
}
.btn--outline:hover {
  background: #fff; color: var(--pink); border-color: #fff;
  box-shadow: 0 8px 24px rgba(255,255,255,.2);
}
.btn--full { width: 100%; text-align: center; }

/* ── TEXT LINK ── */
.text-link {
  display: inline-block; margin-top: .6rem;
  font-weight: 700; color: var(--pink);
  text-transform: uppercase; letter-spacing: .04em; font-size: .85rem;
}
.text-link:hover { text-decoration: underline; }

/* ══════════════════════════════
   STRIP — Pinkes Band, Facts in Blöcken
   ══════════════════════════════ */
.strip {
  position: relative;
  background: var(--pink);
  padding: 2rem 0;
  overflow: hidden;
}
.strip__flash {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 40%,
    rgba(255,255,255,.25) 50%,
    transparent 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: stripFlash 4s ease-in-out infinite;
}
@keyframes stripFlash {
  0% { background-position: 150% 0; }
  50% { background-position: -50% 0; }
  100% { background-position: 150% 0; }
}
.strip__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center;
  max-width: 900px; margin: 0 auto;
}
.strip__item {
  background: rgba(255,255,255,.12);
  padding: 1.2rem 1rem;
  border: 1px solid rgba(255,255,255,.3);
}
.strip__item strong {
  display: block; font-size: 1.6rem; font-family: var(--serif);
  color: #fff;
}
.strip__item span { font-size: .82rem; color: #fff; opacity: .95; }

/* ══════════════════════════════
   SECTIONS — Mobile-first
   ══════════════════════════════ */
.section { padding: 3rem 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark); color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--pink);
  margin-bottom: .5rem;
}
h2 {
  font-family: var(--serif); font-size: 1.7rem;
  font-weight: 400; line-height: 1.15; margin-bottom: 1.2rem;
}
.muted { color: var(--muted); }
.section--dark .muted { color: rgba(255,255,255,.55); }

/* ══════════════════════════════
   OFFER GRID — Mobile-first (1 col)
   ══════════════════════════════ */
.offer-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  margin-top: 1rem;
}
.offer-card {
  padding: 1.4rem; border: 1px solid var(--border);
  background: var(--white);
  transition: transform .3s, box-shadow .3s;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.offer-card__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--pink); color: #fff;
  font-weight: 800; font-size: .9rem;
  margin-bottom: .8rem;
}
.offer-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; }
.offer-card p { font-size: .88rem; color: var(--muted); }

/* ══════════════════════════════
   SPLIT LAYOUT — Mobile-first (stack)
   ══════════════════════════════ */
.split {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; align-items: center;
}
.split--reverse { direction: ltr; }
.split--reverse > * { direction: ltr; }

/* ══════════════════════════════
   CHECK LIST
   ══════════════════════════════ */
.check-list li {
  padding: .55rem 0; padding-left: 1.6rem;
  position: relative; font-size: .95rem;
}
.check-list li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--pink); font-weight: 700;
}

/* ══════════════════════════════
   FORM — Mobile-first
   ══════════════════════════════ */
.form-card {
  padding: 1.4rem; background: var(--white); color: var(--text);
  border: 1px solid var(--border);
}
.form-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .8rem; }
.form-card label {
  display: block; margin-bottom: .7rem;
  font-weight: 600; font-size: .85rem;
}
.form-card input,
.form-card textarea,
.form-card select {
  width: 100%; margin-top: .3rem; padding: .7rem .75rem;
  border: 1px solid var(--border); background: var(--bg-alt);
  font: inherit; color: var(--text); font-size: 16px;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  outline: none; border-color: var(--pink);
}
.light-box {
  background: var(--white); border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

/* ══════════════════════════════
   FAQ
   ══════════════════════════════ */
.faq { margin-top: 1rem; }
.faq__q {
  font-weight: 700; font-size: .95rem;
  padding: .8rem 0 .3rem; cursor: default;
}
.faq__a {
  color: var(--muted); padding-bottom: .8rem; font-size: .9rem;
  border-bottom: 1px solid var(--border);
}

/* ══════════════════════════════
   SCHEDULE
   ══════════════════════════════ */
.schedule { max-width: 100%; }
.schedule__row {
  display: flex; justify-content: space-between;
  padding: .75rem 0; border-bottom: 1px solid var(--border);
  font-size: .92rem;
}
.schedule__row span { color: var(--muted); }
.schedule__row--accent { border-bottom: 0; padding-top: 1rem; font-size: .95rem; }
.schedule__row--accent strong { color: var(--pink); }

/* ══════════════════════════════
   REVIEWS — Mobile-first
   ══════════════════════════════ */
.reviews__header { text-align: center; margin-bottom: 1.5rem; }
.reviews__badge {
  display: inline-flex; align-items: center; gap: .6rem;
  flex-wrap: wrap; justify-content: center;
  margin-top: .6rem;
}
.reviews__stars { color: #f5c518; font-size: 1.3rem; letter-spacing: 1px; }
.reviews__score { font-weight: 700; font-size: 1.1rem; }
.reviews__count { color: var(--muted); font-size: .85rem; }
.reviews__grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
.review-card {
  padding: 1.4rem; background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--pink);
  display: flex; flex-direction: column; gap: .6rem;
}
.review-card__stars { color: #f5c518; font-size: 1rem; letter-spacing: 1px; }
.review-card__text {
  font-size: .92rem; line-height: 1.6; color: var(--text);
  font-style: italic;
}
.review-card__author { display: flex; flex-direction: column; gap: .1rem; margin-top: auto; }
.review-card__author strong { font-size: .88rem; }
.review-card__author span { font-size: .75rem; color: var(--muted); }

/* ══════════════════════════════
   SECTION IMG
   ══════════════════════════════ */
.section-img { width: 100%; height: 220px; object-fit: cover; }
.section-img--portrait { height: 280px; object-position: top; }

/* ══════════════════════════════
   GALLERY — Mobile-first (2 col)
   ══════════════════════════════ */
.gallery {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .4rem;
  margin-top: 1rem;
}
.gallery__img {
  width: 100%; height: 160px; object-fit: cover;
  filter: grayscale(.15);
  transition: filter .4s, transform .4s;
}
.gallery__img:hover { filter: grayscale(0); transform: scale(1.03); }

/* ══════════════════════════════
   PRICING — Mobile-first (1 col)
   ══════════════════════════════ */
.pricing { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.pricing__card {
  padding: 1.4rem; border: 1px solid var(--border);
  background: var(--white);
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.pricing__card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 1rem; }
.pricing__card li {
  display: flex; justify-content: space-between;
  padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .9rem;
}
.pricing__card li:last-child { border-bottom: 0; }
.pricing__card li span { color: var(--muted); }
.pricing__highlight {
  background: var(--pink-light);
  margin: 0 -1.4rem; padding: .5rem 1.4rem !important;
}
.pricing__card .btn { margin-top: auto; padding-top: 1rem; }
.price-note { margin-top: 1rem; color: var(--muted); font-size: .85rem; }

/* ══════════════════════════════
   MAP
   ══════════════════════════════ */
.map-wrap { margin-top: 1.5rem; width: 100%; height: 260px; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; display: block; }

/* ══════════════════════════════
   FOOTER — Mobile-first
   ══════════════════════════════ */
.footer { background: var(--dark); color: #eee; padding: 2.5rem 0 0; }
.footer a { color: var(--pink); }
.footer a:hover { text-decoration: underline; }
.footer h2 { font-family: var(--serif); color: #fff; font-size: 1.4rem; margin-bottom: .8rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.footer__cta { margin-top: 1.5rem; }
.footer__cta h3 { color: #fff; font-size: 1.1rem; margin-bottom: .5rem; }
.footer__cta p { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer__cta .btn {
  background: #fff; color: var(--pink); border: 2px solid #fff;
  margin-top: .8rem; width: 100%; text-align: center;
}
.footer__cta .btn:hover {
  background: var(--pink); color: #fff; border-color: var(--pink);
}
.footer__bottom {
  margin-top: 1.5rem; padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .78rem; color: rgba(255,255,255,.45);
}

/* ══════════════════════════════
   REVEAL ANIMATION
   ══════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   TABLET — min-width: 600px
   ══════════════════════════════════════ */
@media (min-width: 600px) {
  .container { width: 88%; }

  .header__inner { min-height: 66px; }
  .header__logo { height: 32px; }
  .header__nav { top: 66px; }

  .hero { padding-top: 66px; }
  .hero__text h1 { font-size: clamp(2.6rem, 6vw, 3.4rem); }
  .hero__text p { font-size: 1.02rem; }
  .hero__actions .btn { max-width: 360px; }
  .hero__keyvisual { height: 52vh; max-height: 480px; }
  .hero__inner { flex-direction: row; gap: 30px; justify-content: center; text-align: left; }
  .hero__text { order: 1; max-width: 48ch; }
  .hero__visual { order: 2; }
  .hero__actions { align-items: flex-start; }
  .badge { font-size: .72rem; padding: .4rem .8rem; }

  .page-hero { padding-top: calc(66px + 3rem); }
  .page-hero h1 { font-size: 2.2rem; }

  .strip__grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
  .strip__item { padding: 1.4rem 1.2rem; }
  .strip__item strong { font-size: 1.8rem; }

  .section { padding: 4rem 0; }
  h2 { font-size: 2rem; }

  .offer-grid { grid-template-columns: repeat(2, 1fr); }

  .split { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .split--reverse { direction: rtl; }
  .split--reverse > * { direction: ltr; }

  .form-card { padding: 1.8rem; }

  .gallery { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .gallery__img { height: 200px; }

  .reviews__grid { grid-template-columns: repeat(2, 1fr); }

  .pricing { grid-template-columns: repeat(2, 1fr); }

  .section-img { height: 300px; }
  .section-img--portrait { height: 380px; }

  .schedule { max-width: 500px; }

  .map-wrap { height: 300px; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__cta .btn { width: auto; }
  .footer h2 { font-size: 1.6rem; }
}

/* ══════════════════════════════════════
   DESKTOP — min-width: 960px
   ══════════════════════════════════════ */
@media (min-width: 960px) {
  .container { width: min(1140px, 90%); }

  .header__inner { min-height: 72px; }
  .header__logo { height: 36px; }
  .header__toggle { display: none; }
  .header__nav {
    position: static; display: flex; flex-direction: row;
    background: none; border: 0; padding: 0; gap: 1.4rem;
  }
  .header__nav a { padding: 0; }

  .hero { padding-top: 72px; }
  .hero__inner {
    flex-direction: row; gap: 30px;
    align-items: center; justify-content: center;
    text-align: left; padding: 3rem 0;
  }
  .hero__text { order: 1; max-width: 52ch; }
  .hero__visual { order: 2; }
  .hero__text p { margin-inline: 0; }
  .hero__actions { align-items: flex-start; }
  .hero__keyvisual { height: 65vh; max-height: 620px; }
  .hero__text h1 { font-size: clamp(2.8rem, 4vw, 4.2rem); }
  .hero__text p { font-size: 1.08rem; }
  .hero__glow {
    background:
      radial-gradient(ellipse 55% 70% at 65% 45%, rgba(230,0,126,.22) 0%, transparent 65%),
      radial-gradient(ellipse 40% 50% at 30% 70%, rgba(230,0,126,.08) 0%, transparent 55%);
  }
  .badge { font-size: .78rem; padding: .4rem .9rem; margin-bottom: 1.2rem; }

  .page-hero { padding: calc(72px + 4rem) 0 3rem; }
  .page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); max-width: 28ch; }

  .section { padding: 5.5rem 0; }
  h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.6rem; }

  .offer-grid { grid-template-columns: repeat(4, 1fr); }
  .offer-card { padding: 1.6rem; }
  .offer-card__icon { width: 48px; height: 48px; font-size: 1rem; }
  .offer-card h3 { font-size: 1.1rem; }
  .offer-card p { font-size: .92rem; }

  .split { gap: 3rem; }

  .form-card { padding: 2rem; }
  .form-card h3 { font-size: 1.2rem; }

  .faq__q { font-size: 1.05rem; padding: 1rem 0 .4rem; }
  .faq__a { padding-bottom: 1rem; font-size: inherit; }

  .schedule { max-width: 600px; }
  .schedule__row { padding: .9rem 0; font-size: 1rem; }
  .schedule__row--accent { font-size: 1.05rem; padding-top: 1.2rem; }

  .section-img { height: 360px; }
  .section-img--portrait { height: 440px; }

  .gallery { grid-template-columns: repeat(4, 1fr); gap: .6rem; }
  .gallery__img { height: 260px; }

  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
  .review-card { padding: 1.8rem; }

  .pricing { grid-template-columns: repeat(3, 1fr); }
  .pricing__card { padding: 2rem; }
  .pricing__card h3 { font-size: 1.15rem; margin-bottom: 1.2rem; }
  .pricing__card li { padding: .6rem 0; font-size: .95rem; }
  .pricing__highlight { margin: 0 -2rem; padding: .6rem 2rem !important; }
  .price-note { margin-top: 1.2rem; font-size: .9rem; }

  .map-wrap { height: 350px; }

  .footer { padding: 4rem 0 0; }
  .footer h2 { font-size: 1.8rem; margin-bottom: 1rem; }
  .footer__cta h3 { font-size: 1.2rem; }
  .footer__bottom { margin-top: 2rem; padding: 1.2rem 0; font-size: .82rem; }

  .strip__grid { gap: 1.5rem; max-width: 1000px; }
  .strip__item { padding: 1.6rem 1.4rem; }
  .strip__item strong { font-size: 2rem; }
  .strip__item span { font-size: .88rem; }
  .strip { padding: 2.25rem 0; }

  .reveal { transform: translateY(32px); transition-duration: .7s; }
}

/* ══════════════════════════════════════
   ULTRAWIDE — min-width: 1600px
   ══════════════════════════════════════ */
@media (min-width: 1600px) {
  .hero__inner { padding: 4rem 0; }
  .hero__text { max-width: 56ch; }
  .hero__keyvisual { height: 72vh; max-height: 700px; }
  .hero__text h1 { font-size: 4.4rem; }
  .hero__text p { font-size: 1.18rem; }
}

/* ══════════════════════════════════════
   SUPER ULTRAWIDE — min-width: 2200px
   ══════════════════════════════════════ */
@media (min-width: 2200px) {
  .hero__inner { padding: 5rem 0; }
  .hero__text { max-width: 60ch; }
  .hero__keyvisual { height: 76vh; max-height: 780px; }
  .hero__text h1 { font-size: 5rem; }
  .hero__text p { font-size: 1.28rem; }
}
