/* ==========================================================================
   BEI NATALIE — Friseur · Japan Head Spa · Bayerischer Wald
   ========================================================================== */

/* ---------- Intro-Animation ---------- */

.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAF6F0;
  pointer-events: none;
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro.fade-out {
  opacity: 0;
}

.intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.intro-row {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.intro-icon {
  width: 42px;
  height: 42px;
  color: #B8860B;
  opacity: 0;
  flex-shrink: 0;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-duration: 0.7s;
}

.intro-icon-left {
  transform: translateX(20px);
  animation-name: introIconLeftIn;
  animation-delay: 0.45s;
}

.intro-icon-right {
  transform: translateX(-20px);
  animation-name: introIconRightIn;
  animation-delay: 0.6s;
}

@keyframes introIconLeftIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes introIconRightIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.intro-logo {
  height: 140px;
  width: auto;
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  animation: introLogoIn 0.75s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.intro-divider {
  display: block;
  width: 0;
  height: 1px;
  background: #B8860B;
  animation: introDividerIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

@keyframes introLogoIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes introDividerIn {
  to { width: 80px; }
}

/* Body-Scroll während Intro sperren */
body.intro-active {
  overflow: hidden;
}

@media (max-width: 600px) {
  .intro-logo { height: 100px; }
  .intro-icon { width: 32px; height: 32px; }
  .intro-row { gap: 1rem; }
}



/* ---------- Design Tokens ---------- */

:root {
  /* Farben aus dem Briefing */
  --c-bg: #FDFAF4;          /* Helleres Cremeweiß — Haupthintergrund */
  --c-ink: #4A2A14;         /* Tieferes Dunkelbraun — Logo, Headlines, Akzente */
  --c-gold: #B8860B;        /* Sandblond-Gold — Buttons, Trennlinien */
  --c-section: #EFE5D6;     /* Beige — Sektionshintergründe, Karten */
  --c-text: #5C4530;        /* Dunkleres Warmbraun — Fließtext (besser lesbar) */
  --c-text-soft: #8B7355;   /* Aufgehelltes Body — Subtitle */
  --c-sage: #6B7C5E;        /* Salbei — Wellness/Natur-Akzent */
  --c-anthracite: #1A1A1A;  /* Sehr sparsam */
  --c-line: #d8c9b5;        /* Trennlinien (zarter als ink) */

  /* Schriften */
  --font-head: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Montserrat', -apple-system, sans-serif;

  /* Größen */
  --container: 1240px;
  --container-narrow: 880px;

  /* Spacing-Skala (8px-Basis) — konsistenter Rhythmus */
  --space-1: 0.25rem;       /*  4px */
  --space-2: 0.5rem;        /*  8px */
  --space-3: 0.75rem;       /* 12px */
  --space-4: 1rem;          /* 16px */
  --space-5: 1.5rem;        /* 24px */
  --space-6: 2rem;          /* 32px */
  --space-7: 2.5rem;        /* 40px */
  --space-8: 3rem;          /* 48px */
  --space-10: 4rem;         /* 64px */
  --space-12: 5rem;         /* 80px */
  --space-16: 7rem;         /* 112px */

  /* Sektions-Padding fluid */
  --section-pad: clamp(3.5rem, 7vw, 6rem);

  /* Schatten */
  --shadow-sm: 0 2px 12px rgba(92, 51, 23, 0.06);
  --shadow-md: 0 8px 32px rgba(92, 51, 23, 0.10);
  --shadow-press: 0 1px 4px rgba(92, 51, 23, 0.08);

  /* Bewegung — kräftige Custom-Curves (Emil-Style) */
  --ease: cubic-bezier(0.23, 1, 0.32, 1);             /* stärkeres ease-out */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

/* ---------- Reset & Base ---------- */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

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

a {
  color: var(--c-ink);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover { color: var(--c-gold); }

/* ---------- Typographie ---------- */

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--c-ink);
  line-height: 1.2;
  letter-spacing: -0.005em;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  font-weight: 300;
  line-height: 1.1;
  overflow-wrap: break-word;
  -webkit-hyphens: none;
  hyphens: none;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  margin-bottom: 1.25rem;
  overflow-wrap: break-word;
  -webkit-hyphens: none;
  hyphens: none;
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--c-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.18rem;
  color: var(--c-text);
  font-weight: 300;
  line-height: 1.7;
}

p { color: var(--c-text); }

/* ---------- Layout ---------- */

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

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-bg {
  background: var(--c-section);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-8);
}

.divider {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--c-gold);
  margin: var(--space-5) auto var(--space-6);
}

.divider-left {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--c-gold);
  margin: var(--space-5) 0 var(--space-6);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.95rem 2.1rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  /* Explizite Properties statt 'all' — saubere, vorhersagbare Transitions */
  transition:
    transform 160ms var(--ease-out),
    background-color 200ms var(--ease-out),
    border-color 200ms var(--ease-out),
    color 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out);
}

/* Tactile feedback — Button reagiert auf Press */
.btn:active {
  transform: scale(0.97);
  box-shadow: var(--shadow-press);
}

/* Active state respektiert auch im Hover-Modus */
@media (hover: hover) and (pointer: fine) {
  .btn:active { transform: scale(0.97); }
}

.btn-primary {
  background: var(--c-ink);
  color: var(--c-bg);
  border-color: var(--c-ink);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: var(--c-gold);
    border-color: var(--c-gold);
    color: var(--c-bg);
  }
}

.btn-outline {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-ink);
}

@media (hover: hover) and (pointer: fine) {
  .btn-outline:hover {
    background: var(--c-ink);
    color: var(--c-bg);
  }
}

.btn-gold {
  background: var(--c-gold);
  color: var(--c-bg);
  border-color: var(--c-gold);
}

@media (hover: hover) and (pointer: fine) {
  .btn-gold:hover {
    background: var(--c-ink);
    border-color: var(--c-ink);
  }
}

/* ---------- Navigation ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav.scrolled {
  border-bottom-color: var(--c-line);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1.1rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  gap: 2rem;
}

.nav-inner > .menu {
  margin-left: auto;
}

.nav-inner > .menu-toggle {
  margin-left: auto;
}

/* Logo */
.logo-wrap {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
  transition: opacity 0.2s var(--ease);
}

.logo-wrap:hover .logo-img { opacity: 0.85; }

/* Footer-Logo (vorbearbeitete cremefarbene Version mit Transparenz) */
.logo-img-footer {
  height: 90px;
  width: auto;
  display: block;
  opacity: 1;
  transition: opacity 0.2s var(--ease);
}

.logo-img-footer:hover { opacity: 0.85; }

/* Menüpunkte */
.menu {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.menu a {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-ink);
  position: relative;
  white-space: nowrap;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 0.2rem;
  left: 0.9rem;
  right: 0.9rem;
  height: 1px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.menu a:hover::after,
.menu a.active::after {
  transform: scaleX(1);
}

.menu a.active {
  color: var(--c-gold);
}

.nav-cta {
  padding: 0.65rem 1.2rem;
  background: var(--c-ink);
  color: var(--c-bg) !important;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-left: 0.5rem;
  transition: background 0.25s var(--ease);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--c-gold); color: var(--c-bg) !important; }

/* Burger — Touch-Target min 44x44px (WCAG 2.5.5 AAA) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-ink);
  transition:
    transform 220ms var(--ease-out),
    opacity 220ms var(--ease-out),
    background-color 220ms var(--ease-out);
}

/* ---------- Hero (Single-Image, native Höhe) ---------- */

.hero-section {
  background: var(--c-bg);
  padding-bottom: 5rem;
}

.hero-section .container {
  position: relative;
}

.hero {
  position: relative;
  width: 100%;
  background: var(--c-section);
  overflow: hidden;
}

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

/* Variante mit limitierter Höhe + Container (Banner-Bild auf Unter-Seiten) */
.hero-banner {
  height: 40vh;
  min-height: 280px;
  max-height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(92, 51, 23, 0.12);
}

.hero-banner .hero-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 35%;
}

/* Full-bleed Banner (Rand-zu-Rand, mit begrenzter Höhe) */
.hero-banner-full {
  width: 100%;
  aspect-ratio: 2 / 1;
  max-height: 65vh;
  overflow: hidden;
}

.hero-banner-full .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}

@media (max-width: 760px) {
  .hero-banner-full {
    aspect-ratio: 4 / 3;
    max-height: 55vh;
  }
}

/* Feature-Bild zwischen Sektionen: native Aspect Ratio, max-width, gerundet */
.feature-image {
  display: block;
  max-width: 1000px;
  width: 92%;
  margin: 0 auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(92, 51, 23, 0.12);
}

/* Karussell (manuell mit Pfeil-Buttons + Touch-Swipe) */
.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--c-section);
  box-shadow: 0 4px 24px rgba(92, 51, 23, 0.08);
  touch-action: pan-y;        /* horizontal-Swipe abfangen, vertikal-Scroll erlauben */
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
  opacity: 1;
}

/* Navigations-Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(250, 246, 240, 0.92);
  border: 1px solid rgba(92, 51, 23, 0.1);
  color: var(--c-ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition:
    background-color 180ms var(--ease-out),
    color 180ms var(--ease-out),
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .carousel-btn:hover {
    background: var(--c-ink);
    color: var(--c-bg);
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 4px 14px rgba(0,0,0,0.22);
  }
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.94);
  transition-duration: 100ms;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.carousel-btn-prev { left: 0.85rem; }
.carousel-btn-next { right: 0.85rem; }

/* Bild-Zähler */
.carousel-counter {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(92, 51, 23, 0.85);
  color: var(--c-bg);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  z-index: 3;
  backdrop-filter: blur(4px);
}

/* Hero-Card im Single-Column-Layout (für Unter-Seiten ohne Kontakt-Sidebar) */
.hero-card-single {
  grid-template-columns: 1fr !important;
  max-width: min(820px, calc(100% - 24px)) !important;
  gap: 0 !important;
}

.hero-card-single .hero-card-content {
  min-width: 0;
}

.hero-card-single .hero-card-content {
  text-align: center;
  max-width: 100%;
}

.hero-card-single .hero-card-content .eyebrow,
.hero-card-single .hero-card-content h1,
.hero-card-single .hero-card-content .hero-card-subtitle {
  text-align: center;
  display: block;
}

.hero-card-single .hero-card-subtitle {
  font-style: italic;
}

.hero-card-single .hero-card-tagline {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
}

.hero-card-single .hero-card-actions {
  justify-content: center;
}

/* ----- Hero-Card (überlappt das Bild leicht von unten) ----- */

.hero-card {
  position: relative;
  z-index: 5;
  background: var(--c-bg);
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 4rem;
  padding: 3.5rem clamp(2rem, 5vw, 4.5rem);
  margin: -90px auto 0;
  max-width: calc(var(--container) - 80px);
  box-shadow: 0 20px 60px rgba(92, 51, 23, 0.18);
  border-top: 3px solid var(--c-gold);
}

.hero-card-content h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  margin-bottom: 0.4rem;
}

.hero-card-content h1 em {
  font-style: italic;
  color: var(--c-gold);
}

.hero-card-subtitle {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--c-text);
  margin-bottom: 1.75rem;
  display: block;
}

.hero-card-tagline {
  font-size: 1rem;
  color: var(--c-text);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.hero-card-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Kontakt-Box rechts */
.hero-card-aside {
  border-left: 1px solid var(--c-line);
  padding-left: 3rem;
}

.hero-card-aside h4 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--c-ink);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.hero-card-aside h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--c-gold);
}

.hero-card-aside p {
  color: var(--c-text);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.hero-card-aside a {
  color: var(--c-ink);
  font-weight: 500;
  display: inline-block;
  padding: 0.35rem 0;
  -webkit-tap-highlight-color: transparent;
}

.hero-card-aside a:hover { color: var(--c-gold); }

.hero-card-aside .label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.phone-list {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.phone-line {
  display: block;
}

.phone-line a {
  padding: 0;
}

/* ---------- Teaser-Grid (Startseite) — kompakt, 3 in einer Reihe ---------- */

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.teaser {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  padding: var(--space-5) var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition:
    transform 240ms var(--ease-out),
    border-color 200ms var(--ease-out),
    box-shadow 240ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .teaser:hover {
    border-color: var(--c-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
}

.teaser:active {
  transform: translateY(-1px) scale(0.99);
  transition-duration: 120ms;
}

.teaser h3 {
  margin: 0.5rem 0 0.4rem;
  font-family: var(--font-head);
  color: var(--c-ink);
  font-size: 1.1rem;
  line-height: 1.25;
  font-weight: 500;
}

.teaser p {
  font-size: 0.82rem;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 0.75rem;
}

.teaser-link {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
}

.teaser-icon {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--c-gold);
  margin-bottom: 0.25rem;
  line-height: 1;
}

@media (max-width: 800px) {
  .teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .teaser-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Side-by-Side Layout (Bild + Text) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-reverse .split-image { order: 2; }

.split-image {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center 25%;
  background-color: var(--c-section);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(92, 51, 23, 0.08);
}

.split-content p {
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  margin-bottom: 1.1rem;
  line-height: 1.75;
}

.split-content p:last-child {
  margin-bottom: 0;
}

/* Signatur (Über Natalie) — eleganter Abschluss, NICHT als Blocksatz */
.signature {
  text-align: left !important;
  hyphens: none !important;
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--c-ink);
  margin-top: 2rem !important;
  line-height: 1.4;
}

.signature em {
  font-style: italic;
  color: var(--c-ink);
}

.signature-name {
  display: inline-block;
  margin-top: 0.3rem;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--c-gold);
  line-height: 1;
}

.split-content .eyebrow,
.split-content .divider-left,
.split-content h2 { color: var(--c-ink); }

/* ---------- Preisliste (Listen-Layout) ---------- */

.price-list-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 400;
  color: var(--c-ink);
  margin-bottom: 2.5rem;
  letter-spacing: -0.005em;
}

.price-list-section {
  margin-bottom: 3.5rem;
}

.price-list-section:last-child {
  margin-bottom: 0;
}

.price-list-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 0.9rem;
  margin-bottom: 0.25rem;
  gap: 1rem;
}

.price-list-cat {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin: 0;
}

.price-list-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(56px, auto));
  gap: 1.2rem;
  text-align: right;
  color: var(--c-text-soft);
  font-size: 1.3rem;
  line-height: 1;
  align-items: end;
}

.price-list-cols span {
  text-align: right;
  letter-spacing: 0.1em;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  padding: 1.4rem 0;
  border-bottom: 1px solid transparent;
}

/* Preis-Zeile mit Beschreibung: Name + Preise oben in einer Zeile,
   Beschreibung darunter (full-width, italic, sanfter Ton) */
.price-row--detailed {
  row-gap: 0.5rem;
  padding: 1.4rem 0 1.6rem;
}

.price-row--detailed .price-row-description,
.price-row--full .price-row-description {
  grid-column: 1 / -1;
  max-width: 62ch;
  color: var(--c-text-soft);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0.15rem 0 0;
}

/* Volle Breite (ohne Preis-Spalte) — z.B. "Individuelle Farbberatung" */
.price-row--full {
  grid-template-columns: 1fr;
  row-gap: 0.5rem;
  padding: 1.4rem 0 1.6rem;
}

.price-row--full .price-row-main {
  grid-column: 1 / -1;
}

.price-row-main {
  min-width: 0;
}

.price-row-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-ink);
  margin: 0 0 0.35rem;
  line-height: 1.4;
  letter-spacing: 0;
}

.price-row-desc {
  font-size: 0.92rem;
  color: var(--c-text);
  line-height: 1.6;
  margin: 0;
}

.price-row-prices {
  display: grid;
  gap: 1.2rem;
  text-align: right;
  align-items: start;
  padding-top: 0.1rem;
}

.price-list-section--two-col .price-row-prices {
  grid-template-columns: repeat(2, minmax(56px, auto));
}

.price-list-section--one-col .price-row-prices {
  grid-template-columns: minmax(80px, auto);
}

.price-row-price {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--c-ink);
  white-space: nowrap;
  text-align: right;
}

/* Einzelpreis, der über beide Spalten geht (z.B. Coloration Ansatz) */
.price-list-section--two-col .price-row-price-span {
  grid-column: 1 / -1;
}

.price-list-legend {
  font-size: 0.82rem;
  color: var(--c-text-soft);
  margin-top: 1.5rem;
  font-style: italic;
}

.price-list-legend span {
  font-style: normal;
  color: var(--c-gold);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.price-list-note {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--c-line);
  color: var(--c-text);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: left;
}

@media (max-width: 600px) {
  .price-list-cols,
  .price-list-section--two-col .price-row-prices {
    grid-template-columns: repeat(2, 44px);
    gap: 0.6rem;
  }
  .price-row {
    gap: 1rem;
  }
  .price-row--detailed,
  .price-row--full {
    padding: 1.2rem 0 1.45rem;
    row-gap: 0.4rem;
  }
  .price-row--detailed .price-row-description,
  .price-row--full .price-row-description {
    font-size: 0.82rem;
    line-height: 1.52;
    max-width: 100%;
    padding-right: 0.25rem;
  }
  .price-row--detailed .price-row-main {
    padding-right: 0.5rem;
  }
  .price-row--detailed .price-row-prices {
    gap: 0.5rem;
  }
  .price-row-name {
    font-size: 0.9rem;
    line-height: 1.3;
  }
  .price-row-desc {
    font-size: 0.84rem;
  }
  .price-row-price {
    font-size: 0.9rem;
  }
}

/* Head-Spa Pakete (große Cards) */

.spa-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.spa-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  transition:
    transform 280ms var(--ease-out),
    border-color 200ms var(--ease-out),
    box-shadow 280ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .spa-card:hover {
    transform: translateY(-3px);
    border-color: var(--c-gold);
    box-shadow: var(--shadow-md);
  }
}

.spa-card.featured {
  border-color: var(--c-gold);
  background: linear-gradient(180deg, var(--c-bg), #fbf3e6);
}

.spa-card.featured::before {
  content: 'EMPFEHLUNG';
  position: absolute;
  top: -10px;
  right: 1.5rem;
  background: var(--c-gold);
  color: var(--c-bg);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  padding: 0.3rem 0.8rem;
  font-weight: 600;
}

.spa-card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.spa-card .duration {
  font-size: 0.85rem;
  color: var(--c-text-soft);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.spa-card .price {
  font-family: var(--font-head);
  font-size: 2.6rem;
  color: var(--c-gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.spa-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.spa-card ul li {
  padding: 0.5rem 0;
  font-size: 0.93rem;
  position: relative;
  padding-left: 1.5rem;
  color: var(--c-text);
}

.spa-card ul li::before {
  content: '◐';
  position: absolute;
  left: 0;
  color: var(--c-gold);
  font-size: 0.85rem;
}

/* ---------- Bilder-Marquee (rotierende Galerie) ---------- */

.image-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 4%, black 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 4%, black 96%, transparent 100%);
  touch-action: pan-y;
}

.image-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
  padding: 1rem 0;
}

.image-marquee:hover .image-marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  width: 320px;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-color: var(--c-section);
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(92, 51, 23, 0.10);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 0.75rem)); }
}

@media (max-width: 760px) {
  .marquee-item {
    width: 240px;
    height: 300px;
  }
  .image-marquee-track {
    gap: 1rem;
    animation-duration: 40s;
  }
  @keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.5rem)); }
  }
}

/* ---------- Galerie ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--c-section);
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  transition: transform 320ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover {
    transform: scale(1.02);
  }
}

.gallery-item .label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(250, 246, 240, 0.92);
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-ink);
  font-weight: 600;
}

/* ---------- Kontakt-Karten ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

/* Genau 3 Karten in einer Reihe (für die Kontaktseite) */
.contact-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 800px) {
  .contact-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Karten-Layout */

.contact-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--c-line);
  background: var(--c-bg);
}

.contact-card .icon {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.contact-card h4 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--c-ink);
}

.contact-card a {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1.05rem;
  color: var(--c-ink);
  font-weight: 500;
}

.contact-phone-list a {
  margin-top: 0;
  font-size: inherit;
}

/* Google-Maps Container */
.map-wrap {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: 0 4px 24px rgba(92, 51, 23, 0.08);
  margin-top: 2rem;
}

.map-wrap iframe {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
}

.map-consent {
  min-height: 480px;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--c-section);
}

.map-consent h3 {
  margin-bottom: 0.8rem;
}

.map-consent p {
  max-width: 560px;
  margin: 0 0 1.5rem;
  color: var(--c-text);
}

@media (max-width: 760px) {
  .map-wrap iframe { height: 360px; }
  .map-consent {
    min-height: 360px;
    padding: 2rem 1.25rem;
  }
}

/* ---------- Rechtliche Textseiten ---------- */

.legal-page .legal-section {
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

.legal-page .section-head {
  margin-bottom: 1.75rem;
}

.legal-page .divider {
  margin-bottom: 0;
}

.legal-text {
  max-width: 820px;
  margin: 0 auto;
  color: var(--c-text);
}

.legal-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin: 2.5rem 0 0.9rem;
  color: var(--c-ink);
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text h3 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  margin: 1.65rem 0 0.55rem;
  color: var(--c-ink);
  letter-spacing: 0;
}

.legal-text p {
  margin: 0 0 0.8rem;
  line-height: 1.75;
  color: var(--c-text);
}

.legal-text a {
  color: var(--c-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  overflow-wrap: anywhere;
}

.legal-contact {
  margin: 0.75rem 0 1.2rem;
  padding: 1rem 1.15rem;
  border-left: 2px solid var(--c-gold);
  background: rgba(239, 229, 214, 0.45);
}

.legal-contact--primary {
  margin-top: 0;
  margin-bottom: 2rem;
}

.legal-contact strong {
  color: var(--c-ink);
  font-weight: 700;
}

.legal-contact p {
  margin-bottom: 0.45rem;
}

.legal-contact p:last-child {
  margin-bottom: 0;
}

.legal-link-list {
  display: grid;
  gap: 0.2rem;
  margin: 0.3rem 0 1.05rem;
}

.legal-link-list p {
  margin: 0;
  line-height: 1.55;
}

.legal-meta {
  display: grid;
  gap: 0.8rem;
  margin: 0.5rem 0 1.2rem;
}

.legal-meta div {
  display: grid;
  grid-template-columns: minmax(145px, 0.34fr) 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(216, 201, 181, 0.8);
}

.legal-meta dt {
  color: var(--c-ink);
  font-weight: 700;
}

.legal-meta dd {
  margin: 0;
  color: var(--c-text);
  line-height: 1.65;
}

.legal-value {
  color: var(--c-ink);
  font-weight: 700;
}

@media (max-width: 760px) {
  .legal-text p {
    font-size: 0.95rem;
  }

  .legal-meta div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

/* ---------- Footer ---------- */

.footer {
  background: var(--c-ink);
  color: #E8DDD0;
  padding: 2.75rem 0 1.25rem;
}

.footer a {
  color: #E8DDD0;
  transition: color 0.2s var(--ease);
}

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

/* Footer-Link Touch-Targets — größere Klick-Fläche ohne visuelle Veränderung */
.footer-links a,
.footer-bottom a {
  display: inline-block;
  padding: 0.6rem 0;
  -webkit-tap-highlight-color: transparent;
}

/* Footer-Link-Liste tighter (Gap kompensiert padding) */
.footer-links {
  gap: 0;
}
.footer-links-cols {
  gap: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 2fr 1fr;
  gap: 2.5rem;
  margin-bottom: 1.75rem;
  align-items: start;
}

.footer-brand p {
  color: #E8DDD0;
  margin-top: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Instagram-Link im Footer-Brand */
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0.5rem 0;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  color: #E8DDD0;
  transition: color 200ms var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 200ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .footer-social:hover {
    color: var(--c-gold);
  }
  .footer-social:hover svg {
    transform: scale(1.08);
  }
}

.footer-social:active svg {
  transform: scale(0.94);
}

.footer h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.88rem;
}

/* Navigation in 2 Spalten – kompakter Footer */
.footer-links-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(232, 221, 208, 0.2);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #E8DDD0;
}

/* ---------- Klein-Bauteile ---------- */

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-list li {
  padding: 0.65rem 0;
  padding-left: 1.8rem;
  position: relative;
  font-size: 1rem;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-line);
}

.feature-list li::before {
  content: '◇';
  position: absolute;
  left: 0;
  color: var(--c-gold);
}

.notice {
  background: var(--c-section);
  border-left: 3px solid var(--c-gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-size: 0.96rem;
}

.notice strong { color: var(--c-ink); }

/* ---------- Scroll-Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 600ms var(--ease-out),
    transform 600ms var(--ease-out);
}

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

/* Stagger-Effekt für direkte Geschwister-Reveals */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 60ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 120ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 180ms; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 240ms; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 300ms; }

/* ---------- Reduced Motion (Accessibility) ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 200ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    transform: none;
  }
  .image-marquee-track {
    animation: none;
  }
  .hero-slide,
  .carousel-slide {
    transition: opacity 200ms ease;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .split, .split-reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .split-reverse .split-image { order: 0; }
  .split-image {
    aspect-ratio: 4 / 3;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .hero-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 2rem;
  }
  .hero-card-content,
  .hero-card-aside {
    min-width: 0;
  }
  .hero-card-aside {
    border-left: none;
    border-top: 1px solid var(--c-line);
    padding-left: 0;
    padding-top: 2.5rem;
  }
}

@media (max-width: 900px) {
  /* Backdrop-filter erzeugt einen containing block — auf mobile entfernen,
     sonst wird das fixed-positionierte Burger-Menü relativ zum Header statt zum Viewport */
  body {
    padding-top: 96px;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--c-bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .menu-toggle {
    display: flex;
  }
  .menu {
    position: fixed;
    top: 96px;
    right: 0;
    bottom: 0;
    width: 78%;
    max-width: 320px;
    background: var(--c-bg);
    flex-direction: column;
    padding: 1.75rem 1.75rem 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    box-shadow: var(--shadow-md);
    align-items: stretch;
    overflow-y: auto;
    z-index: 60;
  }
  .menu.open { transform: translateX(0); }
  .menu li {
    width: 100%;
    list-style: none;
  }
  .menu a {
    width: 100%;
    display: block;
    padding: 1rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--c-line);
    text-align: left;
  }
  .menu a::after { display: none; }
  .menu li:last-child a { border-bottom: none; }

  /* Termin-Button als prominenter CTA am Ende */
  .nav-cta {
    width: 100% !important;
    margin: 1.5rem 0 0 !important;
    padding: 1.1rem 1.5rem !important;
    text-align: center !important;
    background: var(--c-ink);
    color: var(--c-bg) !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.22em;
    border-bottom: none !important;
    border-radius: 0;
  }
  .nav-cta:hover { background: var(--c-gold); }
}

@media (max-width: 760px) {

  body {
    padding-top: 86px;
  }

  .hero-section {
    padding-bottom: 3rem;
  }
  .hero-card {
    margin-top: -50px;
    padding: 2rem 1.5rem;
    max-width: calc(100% - 24px);
  }
  .logo-img { height: 50px; }

  .menu {
    top: 86px;
  }

  /* Footer kompakter auf Mobile — weniger Höhe, mehr Atmung */
  .footer {
    padding: 2rem 0 1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }
  .logo-img-footer {
    height: 56px;
  }
  .footer-brand p {
    margin-top: 0.4rem;
    font-size: 0.82rem;
  }
  .footer-social {
    margin-top: 0.6rem;
    padding: 0.3rem 0;
    font-size: 0.84rem;
  }
  .footer h5 {
    margin-bottom: 0.35rem;
  }
  .footer-links a,
  .footer-bottom a {
    padding: 0.35rem 0;
  }
  .footer-links {
    font-size: 0.84rem;
  }
  .footer-bottom {
    font-size: 0.76rem;
    padding-top: 0.75rem;
    gap: 0.4rem;
  }

  /* Buttons untereinander stapeln auf kleinen Bildschirmen, volle Breite */
  .hero-card-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero-card-actions .btn {
    width: 100%;
    padding: 0.95rem 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    white-space: normal;
  }

  /* Allgemeine Buttons: erlaube Umbruch wenn nötig */
  .btn {
    white-space: normal;
  }

  /* Section padding etwas reduzieren auf mobile */
  .section {
    padding: clamp(2.5rem, 8vw, 4rem) 0;
  }
}

/* Sehr schmale Geräte (< 400px): Hero-Card näher am Rand */
@media (max-width: 400px) {
  .hero-card {
    margin-left: 8px;
    margin-right: 8px;
    max-width: calc(100% - 16px);
    padding: 1.75rem 1.25rem;
  }
  .hero-card-content h1 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }
  .container,
  .container-narrow {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Mobile-spezifische Click-to-Call-Leiste */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-ink);
  color: var(--c-bg);
  text-align: center;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  z-index: 40;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
  transition: background-color 180ms var(--ease-out);
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
}

.mobile-call-bar:active {
  background: var(--c-gold);
}

.mobile-call-bar a {
  color: var(--c-bg);
  display: block;
  transition: none;
}

@media (max-width: 760px) {
  .mobile-call-bar { display: block; }
  body {
    /* Body-Padding berücksichtigt iPhone-Notch (env safe-area-inset) */
    padding-bottom: calc(52px + env(safe-area-inset-bottom, 0px));
  }
}
