/* ============================================================
   ELENA FOR HAIR. — Premium Hair Salon Schwangberg
   Design System: Warm Beige Luxury Minimal
   ============================================================ */

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Colors */
  --clr-bg:          #F9F5EE;
  --clr-bg-soft:     #F2EDE3;
  --clr-bg-muted:    #EAE0D1;
  --clr-surface:     #FFFFFF;
  --clr-border:      #DDD4C3;
  --clr-gold:        #B08A4A;
  --clr-gold-dark:   #8C6C2F;
  --clr-accent:      #D4722E;
  --clr-dark:        #3D3228;
  --clr-dark-deep:   #2A2017;
  --clr-text:        #5C5244;
  --clr-text-muted:  #9B8F80;
  --clr-text-light:  #C0B4A4;
  --clr-green:       #3A7A52;

  /* Typography */
  --font-serif:      'Cormorant Garamond', 'Georgia', serif;
  --font-sans:       'Jost', 'Inter', sans-serif;

  /* Spacing */
  --sp-xs:   8px;
  --sp-sm:   16px;
  --sp-md:   32px;
  --sp-lg:   64px;
  --sp-xl:   96px;
  --sp-xxl:  140px;

  /* Border Radius */
  --radius-sm:   8px;
  --radius-md:   18px;
  --radius-lg:   28px;
  --radius-xl:   48px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(60,42,20,0.06);
  --shadow-md:  0 8px 36px rgba(60,42,20,0.10);
  --shadow-lg:  0 20px 60px rgba(60,42,20,0.14);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.container--narrow {
  max-width: 900px;
}

.serif { font-family: var(--font-serif); }
.accent-dot { color: var(--clr-accent); }

/* ── Scroll Reveal Animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal--left {
  transform: translateX(-32px);
}

.reveal.reveal--right {
  transform: translateX(32px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.is-visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0.0s; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.4s; }
.reveal-stagger.is-visible > *:nth-child(6) { opacity:1; transform:none; transition-delay: 0.5s; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--clr-gold);
  color: #fff;
  border-color: var(--clr-gold);
}

.btn--primary:hover {
  background: var(--clr-gold-dark);
  border-color: var(--clr-gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn--outline:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--clr-dark);
  color: #fff;
  border-color: var(--clr-dark);
}

.btn--dark:hover {
  background: var(--clr-dark-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--white {
  background: #fff;
  color: var(--clr-dark);
  border-color: #fff;
}

.btn--white:hover {
  background: var(--clr-bg-soft);
  transform: translateY(-1px);
}

.btn--ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn--ghost-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.btn--green {
  background: var(--clr-green);
  color: #fff;
  border-color: var(--clr-green);
}

.btn--green:hover {
  background: #2d6140;
  transform: translateY(-1px);
}

/* ── Logo SVG ─────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo__mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.logo__text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--clr-text);
  letter-spacing: 0.02em;
}

.logo__text span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--clr-text-muted);
}

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-nav.is-scrolled {
  background: rgba(249, 245, 238, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--clr-border);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 40px;
  max-width: 1240px;
  margin: 0 auto;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav__links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--clr-text);
  transition: color var(--transition);
  position: relative;
}

.site-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-gold);
  transition: width var(--transition);
}

.site-nav__links a:hover {
  color: var(--clr-gold);
}

.site-nav__links a:hover::after {
  width: 100%;
}

.site-nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--clr-text);
  transition: all var(--transition);
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding: 24px 40px 32px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
}

.mobile-nav.is-open {
  display: flex;
  max-height: 500px;
}

.mobile-nav a {
  font-size: 16px;
  font-weight: 400;
  color: var(--clr-text);
  padding: 14px 0;
  border-bottom: 1px solid var(--clr-border);
  transition: color var(--transition);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--clr-gold); }

/* ── Section Labels ───────────────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 14px;
  display: block;
}

/* ── Section Headings ─────────────────────────────────────── */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--clr-dark);
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--clr-gold);
}

.section-subtitle {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 16px;
}

/* ── ─── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: flex;
  align-items: center;
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
}

.hero__content {
  max-width: 560px;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--clr-gold);
  display: block;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--clr-dark);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero__headline em {
  font-style: italic;
  color: var(--clr-gold);
}

.hero__text {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
}

.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.hero__img-wrap:hover img {
  transform: scale(1.04);
}

.hero__badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero__badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hero__badge-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-dark);
  font-family: var(--font-serif);
}

.hero__badge-text span {
  font-size: 12px;
  color: var(--clr-text-muted);
}

.hero__deco {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--clr-bg-muted);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.hero__deco-2 {
  position: absolute;
  bottom: 80px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

/* ── ─── FEATURES STRIP ───────────────────────────────────── */
.features-strip {
  background: var(--clr-bg-soft);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 52px 0;
}

.features-strip__label {
  text-align: center;
  margin-bottom: 36px;
}

.features-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.feature-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-item:hover .feature-item__icon {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-item__title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--clr-dark);
}

.feature-item__text {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ── ─── SERVICES ─────────────────────────────────────────── */
.services-section {
  padding: var(--sp-xxl) 0;
  background: var(--clr-bg);
}

.services-section__head {
  text-align: center;
  margin-bottom: 64px;
}

.services-section__head .section-subtitle {
  margin: 16px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card__img img {
  transform: scale(1.06);
}

.service-card__body {
  padding: 24px 28px 28px;
}

.service-card__label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  font-weight: 500;
  margin-bottom: 8px;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--clr-dark);
  margin-bottom: 10px;
}

.service-card__text {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}

.service-card__link:hover {
  gap: 10px;
  color: var(--clr-gold-dark);
}

.service-card__link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ── ─── ABOUT / STUDIO ───────────────────────────────────── */
.about-section {
  background: var(--clr-bg-soft);
  padding: var(--sp-xxl) 0;
  overflow: hidden;
}

.about-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-section__visual {
  position: relative;
}

.about-section__img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.about-section__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-section__img-main:hover img {
  transform: scale(1.04);
}

.about-section__img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 48%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--clr-bg-soft);
  aspect-ratio: 1;
}

.about-section__img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section__content {
  padding-right: 20px;
}

.about-section__quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  color: var(--clr-gold);
  line-height: 1.45;
  margin-bottom: 28px;
  border-left: 2px solid var(--clr-gold);
  padding-left: 24px;
}

.about-section__text {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-section__stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.about-stat__number {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 500;
  color: var(--clr-dark);
  line-height: 1;
  display: block;
}

.about-stat__label {
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-top: 4px;
  display: block;
}

/* ── ─── GALLERY ──────────────────────────────────────────── */
.gallery-section {
  padding: var(--sp-xxl) 0;
  background: var(--clr-bg);
}

.gallery-section__head {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45,30,15,0);
  transition: background var(--transition);
}

.gallery-item:hover::after {
  background: rgba(45,30,15,0.18);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-section__more {
  text-align: center;
  margin-top: 40px;
}

/* ── ─── FAQ ──────────────────────────────────────────────── */
.faq-section {
  background: var(--clr-bg-soft);
  padding: var(--sp-xxl) 0;
}

.faq-section__head {
  text-align: center;
  margin-bottom: 60px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.faq-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--clr-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.faq-card__icon {
  font-size: 24px;
  margin-bottom: 16px;
  display: block;
}

.faq-card__question {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--clr-dark);
  margin-bottom: 12px;
}

.faq-card__answer {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ── ─── CONTACT ──────────────────────────────────────────── */
.contact-section {
  padding: var(--sp-xxl) 0;
  background: var(--clr-bg);
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-section__content {}

.contact-info {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  border: 1px solid var(--clr-border);
}

.contact-info__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: 15px;
  color: var(--clr-dark);
  font-weight: 400;
}

.contact-info__value a {
  color: var(--clr-gold);
  transition: color var(--transition);
}

.contact-info__value a:hover {
  color: var(--clr-gold-dark);
}

.contact-section__map {
  position: sticky;
  top: 100px;
}

.map-card {
  background: var(--clr-bg-muted);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-md);
}

.map-card__header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-surface);
}

.map-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--clr-dark);
  margin-bottom: 4px;
}

.map-card__sub {
  font-size: 13px;
  color: var(--clr-text-muted);
}

.map-card__visual {
  aspect-ratio: 4/3;
  background: var(--clr-bg-muted);
  position: relative;
  overflow: hidden;
}

.map-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-card__footer {
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--clr-surface);
}

.map-hours {
  font-size: 13px;
  color: var(--clr-text-muted);
}

.map-hours strong {
  color: var(--clr-dark);
  display: block;
  margin-bottom: 2px;
}

/* ── ─── OFFER SECTION ────────────────────────────────────── */
.offer-section {
  padding: var(--sp-xl) 0;
  background: var(--clr-bg-soft);
}

.offer-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.offer-section__content {}

.offer-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.offer-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--clr-text-muted);
}

.offer-list__item::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--clr-bg-muted);
  border: 1.5px solid var(--clr-gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23B08A4A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.offer-section__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.offer-section__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.offer-section__visual:hover img {
  transform: scale(1.04);
}

/* ── ─── CTA BANNER ───────────────────────────────────────── */
.cta-banner {
  background: var(--clr-dark-deep);
  padding: var(--sp-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,138,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__label {
  color: var(--clr-gold);
  opacity: 0.8;
  margin-bottom: 20px;
}

.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__title em {
  font-style: italic;
  color: var(--clr-gold);
}

.cta-banner__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── ─── FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 36px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col__brand .logo__text {
  color: rgba(255,255,255,0.9);
}

.footer-col__brand .logo__text span {
  color: rgba(255,255,255,0.5);
}

.footer-col__brand-text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col__title {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col__links a:hover {
  color: var(--clr-gold);
}

.footer-col__address {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  font-style: normal;
}

.footer-col__address a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col__address a:hover {
  color: var(--clr-gold);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.site-footer__legal {
  display: flex;
  gap: 24px;
}

.site-footer__legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

.site-footer__legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* ── ─── PREISLISTE MODAL ─────────────────────────────────── */
.price-link {
  cursor: pointer;
}

/* ── ─── DIVIDER WAVE ─────────────────────────────────────── */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* ── ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding-top: 60px;
  }

  .hero__eyebrow { justify-content: center; }
  .hero__text { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }

  .hero__visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .hero__badge { left: 16px; }

  .about-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-section__content { padding-right: 0; }
  .about-section__img-accent { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .faq-grid { grid-template-columns: 1fr 1fr; }

  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-section__map { position: static; }

  .offer-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --sp-xxl: 80px;
    --sp-xl:  60px;
  }

  .container { padding: 0 20px; }

  .site-nav__links,
  .site-nav__cta .btn--outline { display: none; }

  .nav-toggle { display: flex; }

  .features-strip__grid { grid-template-columns: repeat(2, 1fr); }

  .services-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .faq-grid { grid-template-columns: 1fr; }

  .about-section__stats { gap: 28px; flex-wrap: wrap; }

  .site-footer__grid { grid-template-columns: 1fr; }

  .site-footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__badge { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .features-strip__grid { grid-template-columns: 1fr; }
}

/* ── prefers-reduced-motion ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > *, .reveal.reveal--left, .reveal.reveal--right {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal-stagger > * { transition: none; }
}
