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

:root {
  --rose:    #c0896a;
  --rose-lt: #e8d0bf;
  --cream:   #faf6f2;
  --dark:    #1e1a18;
  --mid:     #6b5f58;
  --gold:    #b89a7a;
  --section-pad: clamp(4rem, 8vw, 7rem);
}

html { scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--dark);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 3px; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem clamp(1.5rem, 5vw, 4rem);
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}

nav.scrolled {
  background: rgba(250, 246, 242, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,.08);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  letter-spacing: .06em;
  color: #fff;
  text-decoration: none;
  transition: color .3s;
}

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

.nav-links {
  list-style: none;
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.5rem);
}

.nav-links a {
  text-decoration: none;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .3s;
}

nav.scrolled .nav-links a { color: var(--mid); }
.nav-links a:hover { color: var(--rose) !important; }

/* ── WHATSAPP ── */
.nav-wa { display: none; }

/* ── HERO ── */
#hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  background: #1a1614;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30,26,24,.65) 0%, rgba(192,137,106,.25) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 2rem clamp(1.5rem, 6vw, 4rem);
  max-width: 780px;
}

.hero-eyebrow {
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--rose-lt);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp .8s .45s forwards;
}

.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin: 0 auto 2.4rem;
  opacity: 0;
  animation: fadeUp .8s .65s forwards;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  border-radius: 0;
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .3s, color .3s, border-color .3s;
}

.btn-primary {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
  opacity: 0;
  animation: fadeUp .8s .85s forwards;
}

.btn-primary:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

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

.btn-outline:hover {
  background: var(--rose);
  color: #fff;
}

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollLine 1.8s 1.6s ease-in-out infinite;
}

/* ── SECTION HELPERS ── */
section { padding: var(--section-pad) clamp(1.5rem, 6vw, 5rem); }

.section-tag {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .6rem;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-style: italic;
  margin-bottom: 1.2rem;
}

.divider {
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 2rem;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── ABOUT ── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-img-wrap { position: relative; }

.about-img-wrap img {
  width: 100%;
  height: clamp(380px, 55vw, 620px);
  object-fit: cover;
  object-position: center top;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--rose);
  color: #fff;
  padding: 1.6rem 1.8rem;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
}

.about-badge .num {
  display: block;
  font-size: 3rem;
  line-height: 1;
  font-weight: 600;
}

.about-badge .label {
  font-size: .75rem;
  letter-spacing: .1em;
  font-style: italic;
}

.about-text .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-style: italic;
  color: var(--mid);
  margin-bottom: 1.4rem;
}

/* ── SERVICES ── */
#services-section {
  background: var(--dark);
  color: var(--cream);
  max-width: 100%;
}

#services-section .section-title { color: #fff; }
#services-section .section-tag   { color: var(--rose-lt); }
#services-section .divider       { background: var(--rose); }

.services-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5px;
  margin-top: 3rem;
  background: rgba(255,255,255,.07);
}

.service-card {
  background: var(--dark);
  padding: 2.8rem 2.2rem;
  border: 1px solid rgba(255,255,255,.06);
  transition: background .3s, transform .3s;
  cursor: default;
}

.service-card:hover {
  background: #2a2420;
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: .7rem;
  font-style: italic;
}

.service-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.58);
  line-height: 1.75;
}

/* ── GALLERY ── */
#gallery {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.gallery-header {
  padding: 0 clamp(1.5rem, 6vw, 5rem) 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
}

.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  filter: brightness(1.08);
}

.gallery-item { overflow: hidden; }
.gallery-item:first-child { grid-column: span 2; }
.gallery-item:first-child img { height: 420px; }

/* ── PREISLISTE ── */
#preisliste {
  max-width: 1300px;
  margin: 0 auto;
}

.price-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.price-tab {
  padding: .6rem 1.5rem;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1.5px solid var(--rose-lt);
  background: transparent;
  color: var(--mid);
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
  font-family: 'Jost', sans-serif;
}

.price-tab.active,
.price-tab:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}

.price-panel { display: none; }
.price-panel.active { display: block; }

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table thead tr {
  background: var(--dark);
  color: #fff;
}

.price-table th {
  padding: 1rem 1.4rem;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-align: left;
}

.price-table th:last-child { text-align: right; }

.price-table tbody tr {
  border-bottom: 1px solid var(--rose-lt);
  transition: background .2s;
}

.price-table tbody tr:hover { background: rgba(192,137,106,.07); }

.price-table td {
  padding: 1rem 1.4rem;
  font-size: .95rem;
  color: var(--dark);
}

.price-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--rose);
  white-space: nowrap;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
}

.price-note {
  margin-top: 1.6rem;
  font-size: .85rem;
  color: var(--mid);
  font-style: italic;
}

/* ── PFLEGE ── */
#pflege-section {
  background: var(--dark);
  color: #fff;
}

#pflege-section .section-tag   { color: var(--rose-lt); }
#pflege-section .section-title { color: #fff; }
#pflege-section .divider       { background: var(--rose); opacity: .5; }

.pflege-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.pflege-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem 1.8rem;
}

.pflege-card .section-tag  { margin-bottom: .8rem; }
.pflege-card .divider      { margin-bottom: 1.4rem; }

.pflege-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.pflege-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .93rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}

.pflege-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  margin-top: .45em;
}

/* ── ADVANTAGES ── */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.adv-card {
  background: #fff;
  border-left: 3px solid var(--rose);
  padding: 1.6rem 1.4rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}

.adv-card span {
  display: block;
  font-size: .82rem;
  letter-spacing: .1em;
  color: var(--mid);
  margin-top: .5rem;
}

/* ── CONTACT ── */
#kontakt {
  background: var(--dark);
  color: var(--cream);
}

.kontakt-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

#kontakt .section-title { color: #fff; }
#kontakt .section-tag   { color: var(--rose-lt); }
#kontakt .divider       { background: var(--rose); }

.kontakt-info { display: flex; flex-direction: column; gap: 2rem; }

.info-block { display: flex; gap: 1.2rem; align-items: flex-start; }

.info-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.info-label {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .3rem;
}

.info-val {
  font-size: .98rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}

.info-val a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.info-val a:hover { color: var(--rose); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: .4rem; }
.hours-table td {
  padding: .35rem 0;
  font-size: .92rem;
  color: rgba(255,255,255,.8);
  vertical-align: top;
}
.hours-table td:first-child {
  width: 52%;
  color: rgba(255,255,255,.5);
}

.appt-note {
  display: inline-block;
  margin-top: 1rem;
  padding: .6rem 1.2rem;
  border: 1px solid var(--rose);
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rose);
}

.map-wrap {
  width: 100%;
  height: 380px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  position: relative;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(1) contrast(0.9) brightness(0.85);
}

.map-consent {
  position: absolute;
  inset: 0;
  background: #2a2420;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}

.map-consent p {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  max-width: 320px;
  line-height: 1.6;
}

.map-consent strong { color: #fff; display: block; margin-bottom: .3rem; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }
.map-consent .map-icon { font-size: 2rem; }

/* ── COOKIE BANNER ── */
#cookieBanner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--dark);
  border-top: 2px solid var(--rose);
  padding: 1.4rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(0,0,0,.3);
  transform: translateY(100%);
  transition: transform .4s ease;
}

#cookieBanner.visible { transform: translateY(0); }

.cookie-text {
  flex: 1;
  min-width: 240px;
}

.cookie-text strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: .3rem;
}

.cookie-text p {
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

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

.cookie-actions {
  display: flex;
  gap: .7rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  font-size: .78rem;
  padding: .7rem 1.6rem;
  opacity: 1;
}

/* ── FOOTER ── */
footer {
  background: #110f0e;
  color: rgba(255,255,255,.35);
  text-align: center;
  padding: 1.8rem;
  font-size: .78rem;
  letter-spacing: .08em;
}

footer span { color: var(--rose); }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Sticky WhatsApp Button (Mobile only) ── */
.wa-fab {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.15);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.wa-fab:active { transform: scale(0.94); }
.wa-fab:hover  { box-shadow: 0 8px 24px rgba(37,211,102,0.55), 0 2px 10px rgba(0,0,0,0.2); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .wa-fab       { display: inline-flex; }
  .nav-wa,
  nav.scrolled .nav-wa { display: none !important; }

  /* Preisliste auf Mobile zentrieren */
  #preisliste .reveal:first-child { text-align: center; }
  #preisliste .divider            { margin-left: auto; margin-right: auto; }
  .price-tabs                      { justify-content: center; }

  /* Preistabelle kompakter auf Mobile, keine Zeilenumbrüche */
  .price-table th,
  .price-table td               { padding: .75rem .75rem; font-size: .85rem; }
  .price-table th               { letter-spacing: .08em; white-space: nowrap; }
  .price-table td:last-child    { font-size: .95rem; }

  #about        { grid-template-columns: 1fr; }
  .about-badge  { right: 0; bottom: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .pflege-inner { grid-template-columns: 1fr; gap: 1.2rem; }
  .kontakt-inner{ grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-content {
    margin: 0 1.2rem;
    padding: 2rem 1.5rem 2.2rem;
    border-radius: 24px;
    background: linear-gradient(
      135deg,
      rgba(255,255,255,0.18) 0%,
      rgba(192,137,106,0.10) 50%,
      rgba(255,255,255,0.08) 100%
    );
    backdrop-filter: blur(22px) saturate(1.6);
    -webkit-backdrop-filter: blur(22px) saturate(1.6);
    border: 1px solid rgba(255,255,255,0.28);
    box-shadow:
      0 8px 32px rgba(0,0,0,0.25),
      inset 0 1px 0 rgba(255,255,255,0.45),
      inset 0 -1px 0 rgba(255,255,255,0.08);
  }
  .nav-links { display: none; }
  .nav-wa {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    background: var(--rose);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity .3s;
  }
  nav.scrolled .nav-wa { display: flex; }
  .nav-wa svg { width: 1.15rem; height: 1.15rem; fill: #fff; }
  .gallery-grid { grid-template-columns: 1fr; padding: 0 1rem; }
  .gallery-item:first-child { grid-column: span 1; }
  .gallery-item:first-child img { height: 260px; }
  .gallery-grid img { height: 220px; }
  .about-img-wrap img { height: 300px; }
}
