/* ================================================================
   LUMIÈRE Beauty Studio — Hauptstylesheet
   Elegantes, minimalistisches High-End Beauty Design
   Farbpalette: Nude, Beige, Weiß, Roségold
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS VARIABLEN
   ---------------------------------------------------------------- */
:root {
  /* Farben — K-Beauty Palette: Pearl · Dusty Rose · Misty Mauve */
  --nude:          #FAF5F7;
  --nude-dark:     #F0E4EC;
  --beige:         #E2CFDA;
  --beige-dark:    #C9A8BE;
  --rose-gold:     #B8748E;
  --rose-gold-dark:#9A5A74;
  --rose-gold-light:#D4A0BA;
  --pink-soft:     #FDF5F8;
  --pink-medium:   #F5E3EE;
  --cream:         #FEFCFD;
  --white:         #FFFFFF;
  --dark:          #1A1520;
  --text:          #322535;
  --text-light:    #705870;
  --text-muted:    #A08898;
  --border:        #ECD8E6;
  --border-light:  #F5EDF2;

  /* Typografie */
  --font-serif:  Georgia, 'Times New Roman', 'Book Antiqua', Palatino, serif;
  --font-sans:   -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  /* Abstände */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-xxl:  6rem;
  --max-width:  1200px;

  /* Effekte */
  --shadow-sm:  0 2px 12px rgba(60, 40, 20, 0.08);
  --shadow-md:  0 8px 32px rgba(60, 40, 20, 0.12);
  --shadow-lg:  0 20px 60px rgba(60, 40, 20, 0.18);
  --shadow-xl:  0 30px 80px rgba(60, 40, 20, 0.22);
  --radius:     6px;
  --radius-lg:  16px;
  --radius-xl:  32px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------------------------------
   2. RESET & BASIS
   ---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ----------------------------------------------------------------
   3. TYPOGRAFIE
   ---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.25;
  color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.text-rose-gold { color: var(--rose-gold); }
.text-center    { text-align: center; }

/* Kursiv-Akzent */
em.accent {
  font-style: italic;
  color: var(--rose-gold);
}

/* ----------------------------------------------------------------
   4. LAYOUT-UTILITIES
   ---------------------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xxl) 0;
}

.section--nude   { background: var(--nude); }
.section--cream  { background: var(--cream); }
.section--pink   { background: var(--pink-soft); }
.section--white  { background: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-family: var(--font-sans);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-intro {
  max-width: 560px;
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
}

.section-intro--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

/* ----------------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn--primary {
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184, 149, 106, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 149, 106, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--rose-gold);
  border-color: var(--rose-gold);
}

.btn--outline:hover {
  background: var(--rose-gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--dark);
}

.btn--white:hover {
  background: var(--nude);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

/* ----------------------------------------------------------------
   6. NAVIGATION
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--white);
  transition: var(--transition);
}

.nav.scrolled .nav__logo {
  color: var(--dark);
}

.nav__logo span {
  color: var(--rose-gold-light);
}

.nav.scrolled .nav__logo span {
  color: var(--rose-gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}

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

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

.nav.scrolled .nav__links a {
  color: var(--text);
}

.nav__links a:hover {
  color: var(--white);
}

.nav.scrolled .nav__links a:hover {
  color: var(--rose-gold);
}

.nav__cta {
  font-size: 0.82rem !important;
  background: rgba(255, 255, 255, 0.18);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.nav.scrolled .nav__cta {
  background: var(--rose-gold) !important;
  color: var(--white) !important;
  border-color: var(--rose-gold) !important;
}

.nav__cta:hover {
  background: rgba(255, 255, 255, 0.3) !important;
}

.nav.scrolled .nav__cta:hover {
  background: var(--rose-gold-dark) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav.scrolled .nav__hamburger span {
  background: var(--dark);
}

/* Mobile Nav Menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
  display: flex;
}

.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--dark);
  transition: var(--transition);
}

.nav__mobile a:hover {
  color: var(--rose-gold);
}

.nav__mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--dark);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ----------------------------------------------------------------
   7. COOKIE CONSENT BANNER
   ---------------------------------------------------------------- */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 28, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.cookie-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
}

.cookie-banner__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.cookie-banner__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.cookie-banner__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.cookie-banner__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner__text a {
  color: var(--rose-gold);
  text-decoration: underline;
}

.cookie-banner__categories {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.cookie-category:hover {
  border-color: var(--beige);
}

.cookie-toggle {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 24px;
  margin-top: 2px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #DDD;
  border-radius: 100px;
  transition: var(--transition);
}

.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.cookie-toggle input:checked + .cookie-toggle__slider {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
}

.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle__slider {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  opacity: 0.7;
  cursor: not-allowed;
}

.cookie-toggle input:disabled + .cookie-toggle__slider::before {
  transform: translateX(20px);
}

.cookie-category__info h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.cookie-category__info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.cookie-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  background: var(--nude);
  color: var(--rose-gold-dark);
  margin-left: 0.5rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.cookie-banner__actions .btn {
  padding: 0.75rem 1.6rem;
  font-size: 0.82rem;
}

.cookie-btn-reject {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.75rem 0.5rem;
  transition: var(--transition);
  font-family: var(--font-sans);
}

.cookie-btn-reject:hover {
  color: var(--text);
}

/* ----------------------------------------------------------------
   8. HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      rgba(22, 14, 24, 0.62) 0%,
      rgba(60, 30, 55, 0.38) 55%,
      rgba(90, 50, 80, 0.15) 100%),
    url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?w=1920&h=1080&q=85&auto=format&fit=crop') center / cover no-repeat,
    linear-gradient(135deg, #1A1020 0%, #B8748E 100%);
  z-index: 0;
}

/* Decorative light orb */
.hero__bg::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 55vw;
  height: 55vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(
    ellipse at center,
    rgba(220, 170, 200, 0.35) 0%,
    rgba(184, 116, 142, 0.15) 40%,
    transparent 70%
  );
  border-radius: 50%;
  animation: hero-orb 12s ease-in-out infinite alternate;
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(
    ellipse at center,
    rgba(248, 236, 236, 0.08) 0%,
    transparent 60%
  );
  border-radius: 50%;
  animation: hero-orb 15s ease-in-out infinite alternate-reverse;
}

@keyframes hero-orb {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(3%, 4%) scale(1.08); }
}

/* Decorative lines */
.hero__lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero__lines::before {
  content: '';
  position: absolute;
  top: 15%;
  right: 10%;
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(212, 173, 128, 0.5), transparent);
  animation: line-appear 2s ease 1s forwards;
  opacity: 0;
}

.hero__lines::after {
  content: '';
  position: absolute;
  top: 30%;
  right: calc(10% + 40px);
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(212, 173, 128, 0.3), transparent);
  animation: line-appear 2s ease 1.5s forwards;
  opacity: 0;
}

@keyframes line-appear {
  to { opacity: 1; }
}

/* Bottom fade */
.hero__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 8rem 0 6rem;
  max-width: 700px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(212, 173, 128, 0.9);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fade-up 0.8s ease 0.3s forwards;
}

.hero__label::before,
.hero__label::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: rgba(212, 173, 128, 0.6);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fade-up 0.8s ease 0.6s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose-gold-light);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fade-up 0.8s ease 0.9s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  opacity: 0;
  animation: fade-up 0.8s ease 1.2s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Trust badges */
.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  animation: fade-up 0.8s ease 1.5s forwards;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
}

.hero__trust-icon {
  font-size: 1.1rem;
}

/* ----------------------------------------------------------------
   9. ÜBER UNS
   ---------------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg,
    var(--nude) 0%,
    var(--beige) 30%,
    var(--nude-dark) 60%,
    var(--rose-gold-light) 100%);
  position: relative;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Placeholder image content */
.about__image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(184, 149, 106, 0.5);
  font-family: var(--font-serif);
  font-size: 5rem;
}

.about__image-placeholder span {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(184, 149, 106, 0.7);
  font-family: var(--font-sans);
  margin-top: 1rem;
}

/* Floating badge */
.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.about__badge-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1;
}

.about__badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Decorative element */
.about__image-deco {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid var(--nude-dark);
  z-index: -1;
}

.about__text {
  padding: var(--space-md) 0;
}

.about__signature {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.about__signature-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--rose-gold);
}

.about__signature-role {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Stats row */
.about__stats {
  display: flex;
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

.about__stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--rose-gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about__stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ----------------------------------------------------------------
   10. LEISTUNGEN / SERVICES
   ---------------------------------------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--beige);
}

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

.service-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--nude), var(--nude-dark));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.6rem;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--rose-gold-light), var(--rose-gold));
}

.service-card__title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.service-card__text {
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.service-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.service-card__price-from {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-card__price-amount {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--rose-gold);
}

.service-card__price-unit {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.service-card__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

/* ----------------------------------------------------------------
   11. VORTEILE / BENEFITS
   ---------------------------------------------------------------- */
.benefits__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xxl);
  align-items: center;
}

.benefits__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg,
    var(--pink-soft) 0%,
    var(--pink-medium) 40%,
    var(--nude-dark) 70%,
    var(--beige-dark) 100%);
}

.benefits__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.benefits__image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.benefit-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.benefit-item:hover {
  border-color: var(--beige);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}

.benefit-item__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--nude), var(--nude-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.benefit-item:hover .benefit-item__icon {
  background: linear-gradient(135deg, var(--rose-gold-light), var(--rose-gold));
}

.benefit-item__text h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.benefit-item__text p {
  font-size: 0.875rem;
  margin: 0;
}

/* ----------------------------------------------------------------
   12. TESTIMONIALS
   ---------------------------------------------------------------- */
.testimonials {
  background: linear-gradient(160deg, var(--dark) 0%, #2A1F14 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(184, 149, 106, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.testimonials .section-label {
  color: rgba(212, 173, 128, 0.8);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials__quote-icon {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--rose-gold);
  line-height: 0.5;
  margin-bottom: var(--space-md);
  opacity: 0.4;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 0 var(--space-lg);
}

.testimonial-card {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-md);
  color: var(--rose-gold-light);
  font-size: 1.1rem;
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  border: 2px solid rgba(212, 173, 128, 0.4);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-card__meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* Slider controls */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.testimonials-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.testimonials-btn:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold);
}

.testimonials-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonials-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.testimonials-dot.active {
  width: 20px;
  border-radius: 3px;
  background: var(--rose-gold);
}

/* ----------------------------------------------------------------
   13. GALERIE
   ---------------------------------------------------------------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: var(--space-xl);
}

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

.gallery-item:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

/* Placeholder icons */
.gallery-item__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.4);
}

.gallery-item__placeholder span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-sans);
  margin-top: 0.5rem;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 22, 18, 0.8) 0%,
    rgba(28, 22, 18, 0) 60%
  );
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-item__bg {
  transform: scale(1.06);
}

.gallery-item__label {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  font-style: italic;
}

/* ----------------------------------------------------------------
   14. CTA SECTION
   ---------------------------------------------------------------- */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
    var(--rose-gold-dark) 0%,
    var(--rose-gold) 50%,
    var(--rose-gold-light) 100%);
  text-align: center;
  padding: var(--space-xxl) 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.15), transparent 70%);
  border-radius: 50%;
  animation: hero-orb 10s ease-in-out infinite alternate;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.1), transparent 70%);
  border-radius: 50%;
  animation: hero-orb 14s ease-in-out infinite alternate-reverse;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
}

.cta-section .section-label {
  color: rgba(255,255,255,0.7);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto var(--space-lg);
}

.cta-section .btn--white {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ----------------------------------------------------------------
   15. KONTAKTFORMULAR
   ---------------------------------------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xxl);
  align-items: start;
}

.contact__info {
  padding: var(--space-lg) 0;
}

.contact__info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

.contact__info-item:last-child {
  border-bottom: none;
}

.contact__info-icon {
  width: 44px;
  height: 44px;
  background: var(--nude);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact__info-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact__info-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  margin: 0;
}

/* Form Styles */
.form-group {
  margin-bottom: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form-label .required {
  color: var(--rose-gold);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.15);
}

.form-control:hover:not(:focus) {
  border-color: var(--beige-dark);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A09888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-checkbox__box {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.form-checkbox input:checked ~ .form-checkbox__box {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
}

.form-checkbox input:checked ~ .form-checkbox__box::after {
  content: '✓';
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

.form-checkbox input:focus ~ .form-checkbox__box {
  box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.2);
}

.form-checkbox__label {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.form-checkbox__label a {
  color: var(--rose-gold);
  text-decoration: underline;
}

/* Form error */
.form-control.error {
  border-color: #E07070;
  box-shadow: 0 0 0 3px rgba(224, 112, 112, 0.15);
}

.form-error-msg {
  font-size: 0.78rem;
  color: #C05050;
  margin-top: 0.25rem;
  display: none;
}

.form-control.error ~ .form-error-msg {
  display: block;
}

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.form-success.visible {
  display: block;
}

.form-success__icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  max-width: 400px;
  margin: 0 auto;
}

/* ----------------------------------------------------------------
   16. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: var(--space-xxl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer__logo span {
  color: var(--rose-gold-light);
}

.footer__tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}

.footer__social-link:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold);
  transform: translateY(-2px);
}

.footer__col-title {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--rose-gold-light);
  padding-left: 4px;
}

.footer__hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__hours-day {
  color: rgba(255,255,255,0.5);
}

.footer__hours-time {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright {
  font-size: 0.8rem;
}

.footer__legal-links {
  display: flex;
  gap: var(--space-md);
}

.footer__legal-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer__legal-links a:hover {
  color: var(--rose-gold-light);
}

.footer__secure {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* Cookie-Verwaltung Link im Footer */
.cookie-settings-link {
  cursor: pointer;
}

/* ----------------------------------------------------------------
   17. LEGAL PAGES (Impressum & Datenschutz)
   ---------------------------------------------------------------- */
.legal-hero {
  background: linear-gradient(160deg, var(--nude) 0%, var(--beige) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}

.legal-hero .section-label {
  margin-bottom: var(--space-sm);
}

.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-content {
  padding: var(--space-xxl) 0;
}

.legal-content__inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-light);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--nude-dark);
}

.legal-section h3 {
  font-size: 1.1rem;
  margin: var(--space-md) 0 0.75rem;
  color: var(--rose-gold-dark);
}

.legal-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-section ul {
  list-style: disc;
  padding-left: var(--space-md);
  margin-bottom: 0.75rem;
}

.legal-section ul li {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.3rem;
}

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

.legal-info-box {
  background: var(--nude);
  border-left: 3px solid var(--rose-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--space-md);
  margin: var(--space-md) 0;
}

.legal-info-box p {
  margin: 0;
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--rose-gold);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  transition: var(--transition);
}

.legal-back-link:hover {
  gap: 0.75rem;
}

/* ----------------------------------------------------------------
   18. SCROLL-ANIMATIONEN
   ---------------------------------------------------------------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.animate-fade-in.is-visible {
  opacity: 1;
}

.animate-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* ----------------------------------------------------------------
   19. MEDIA QUERIES
   ---------------------------------------------------------------- */

/* Tablet: max 1024px */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about__image-wrap {
    max-width: 500px;
  }

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

  .benefits__image {
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 16/9;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* Mobile: max 768px */
@media (max-width: 768px) {
  :root {
    --space-xxl: 4rem;
    --space-xl: 2.5rem;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

  .hero__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .about__badge {
    bottom: -1rem;
    right: -0.5rem;
    width: 90px;
    height: 90px;
  }

  .about__badge-number {
    font-size: 1.4rem;
  }

  .cookie-banner__categories {
    gap: 0.5rem;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn-reject {
    text-align: center;
    width: 100%;
  }
}

/* Small Mobile: max 480px */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

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

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .about__stats {
    flex-direction: column;
    gap: var(--space-md);
  }
}

/* Print */
@media print {
  .nav,
  .cookie-banner,
  .cookie-overlay {
    display: none !important;
  }
}
