/* ============================================================
   HUNDESALON LISSY — styles.css
   Palette: Fell (#f7efe4), Karamell (#c4782a), Rinde (#6b4226),
            Salbei (#7aab8a), Nacht (#2a1f14)
   Fonts: Fraunces (Display Serif), DM Sans (Body)
   Struktur: Floating-Card Hero, numm. Service-Grid,
             3-Spalten Größentarif, Asymmetr. Über-uns
   ============================================================ */

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

:root {
  --fell:    #f7efe4;
  --fell2:   #ede1d0;
  --kara:    #c4782a;
  --kara2:   #a35e18;
  --rinde:   #6b4226;
  --salbei:  #7aab8a;
  --salbei2: #4d8c63;
  --nacht:   #2a1f14;
  --text:    #3a2a1a;
  --muted:   #7a6a58;
  --white:   #ffffff;
  --radius:  8px;
  --shadow:  0 4px 24px rgba(42,31,20,0.10);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--fell);
  color: var(--text);
  padding-bottom: 56px;
}

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 2px solid var(--nacht);
  box-shadow: 0 2px 12px rgba(42,31,20,0.07);
  overflow: visible;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.logo {
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 210;
}
.logo-img {
  height: 110px;
  width: auto;
  display: block;
  position: relative;
  top: 30px;
}
.site-nav { display: flex; gap: 0; }
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: color 0.18s, background 0.18s;
}
.site-nav a:hover,
.site-nav a.active { color: var(--kara2); background: rgba(196,120,42,0.08); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--nacht); border-radius: 2px; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('Pic/hero-background.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-card {
  position: relative;
  z-index: 1;
  margin: 0 auto 0 55%;
  margin-right: 5%;
  max-width: 460px;
  background: var(--white);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: 0 24px 80px rgba(42,31,20,0.22);
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--kara);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-card h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--nacht);
  margin-bottom: 1.25rem;
}
.hero-card h1 em { font-style: italic; color: var(--kara); }
.hero-text {
  font-size: 0.94rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--fell);
  color: var(--rinde);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}
.hero-badges i { color: var(--salbei2); }
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--kara);
  color: var(--white);
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.hero-btn:hover { background: var(--kara2); transform: translateY(-2px); }

/* ── LEISTUNGEN ─────────────────────────────────────────── */
.section-leistungen {
  background: var(--fell);
  padding: 5rem 2rem;
}
.leistungen-inner { max-width: 1200px; margin: 0 auto; }
.sl-head { margin-bottom: 2.5rem; }
.sl-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--nacht);
}
.sl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.sl-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sl-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(42,31,20,0.14); }
.sl-num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(196,120,42,0.08);
  line-height: 1;
}
.sl-icon {
  width: 44px; height: 44px;
  background: rgba(196,120,42,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kara);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.sl-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--nacht);
  margin-bottom: 0.6rem;
}
.sl-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.75; flex: 1; margin-bottom: 1.25rem; }
.sl-from { font-size: 0.85rem; color: var(--muted); }
.sl-from strong { font-size: 1.1rem; color: var(--kara2); font-family: 'Fraunces', serif; }

/* ── GRÖSSENTARIF ────────────────────────────────────────── */
.section-groessen {
  background: var(--nacht);
  padding: 5rem 2rem;
}
.groessen-inner { max-width: 1100px; margin: 0 auto; }
.sg-head { margin-bottom: 3rem; }
.sg-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.sg-hint {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  max-width: 600px;
  line-height: 1.7;
}
.sg-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.sg-col {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
}
.sg-col--mid {
  background: var(--kara);
  border-color: transparent;
}
.sg-badge {
  position: absolute;
  top: -11px; left: 1.75rem;
  background: var(--white);
  color: var(--kara);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
}
.sg-label {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.sg-sub {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}
.sg-col--mid .sg-sub { color: rgba(255,255,255,0.7); }
.sg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
}
.sg-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.75);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sg-list li:last-child { border-bottom: none; }
.sg-list li span:last-child { font-weight: 600; color: var(--white); }
.sg-col--mid .sg-list li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.15); }
.sg-time {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.sg-col--mid .sg-time { color: rgba(255,255,255,0.65); }

/* ── ÜBER UNS ────────────────────────────────────────────── */
.section-ueber {
  background: var(--fell);
  padding: 5rem 2rem;
}
.ueber-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 5rem;
  align-items: center;
}
.ueber-img-wrap {
  aspect-ratio: 3/4;
  border-radius: 120px 120px 16px 16px;
  background: linear-gradient(160deg, var(--salbei) 0%, var(--kara) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10rem;
  color: rgba(255,255,255,0.12);
  overflow: hidden;
}
.ueber-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.ueber-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  color: var(--nacht);
  margin-bottom: 1.25rem;
}
.ueber-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.ueber-punkte {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.up-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text);
}
.up-item i { color: var(--kara); font-size: 0.75rem; }

/* ── TERMINE ─────────────────────────────────────────────── */
.section-termine {
  background: var(--fell2);
  padding: 5rem 2rem;
}
.termine-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.termine-left h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  color: var(--nacht);
  margin-bottom: 0.75rem;
}
.termine-hint {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  padding: 0.9rem 1rem;
  background: rgba(196,120,42,0.08);
  border-left: 3px solid var(--kara);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.t-info { margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; }
.t-info p { display: flex; align-items: center; gap: 0.75rem; font-size: 0.92rem; color: var(--text); }
.t-info i { color: var(--kara); width: 16px; flex-shrink: 0; }
.t-info a { color: var(--text); text-decoration: none; }
.t-info a:hover { color: var(--kara); }
.t-oeffnung h4 {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--rinde);
  margin-bottom: 0.75rem;
}
.t-oeffnung table { border-collapse: collapse; width: 100%; }
.t-oeffnung td { padding: 0.45rem 0; font-size: 0.87rem; color: var(--muted); border-bottom: 1px solid var(--fell2); }
.t-oeffnung td:last-child { text-align: right; font-weight: 600; color: var(--text); }

.termine-form { display: flex; flex-direction: column; gap: 1rem; }
.tf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tf-group { display: flex; flex-direction: column; gap: 0.3rem; }
.tf-group label {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rinde);
}
.tf-group input,
.tf-group select,
.tf-group textarea {
  padding: 0.65rem 0.9rem;
  border: 1.5px solid rgba(107,66,38,0.18);
  border-radius: var(--radius);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.tf-group input:focus,
.tf-group select:focus,
.tf-group textarea:focus { border-color: var(--kara); }
.tf-btn {
  background: var(--kara);
  color: var(--white);
  border: none;
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  transition: background 0.2s, transform 0.15s;
}
.tf-btn:hover { background: var(--kara2); transform: translateY(-2px); }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--nacht); padding: 1.75rem 2rem; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-brand { font-size: 0.87rem; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 0.5rem; }
.footer-brand i { color: var(--kara); }
.footer-links { display: flex; gap: 0.75rem; align-items: center; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-links span { color: rgba(255,255,255,0.2); }
.footer-copy { font-size: 0.77rem; color: rgba(255,255,255,0.35); }
.footer-copy a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-copy a:hover { color: var(--white); }

/* ── DISCLAIMER ──────────────────────────────────────────── */
.escape-disclaimer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(20,14,8,0.92);
  backdrop-filter: blur(4px);
}
.escape-disclaimer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.escape-disclaimer__inner a { color: rgba(255,255,255,0.8); }
.escape-disclaimer__inner strong { color: var(--white); }

/* ── OVERLINE ────────────────────────────────────────────── */
.overline {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kara);
  margin-bottom: 0.6rem;
}
.sg-head .overline { color: rgba(196,120,42,0.7); }

/* ── FADE-IN ─────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1000px) {
  .hero-card { margin-left: 45%; }
  .sl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
  .hero { min-height: auto; padding: 3rem 1.5rem 4rem; }
  .hero-card { margin: 0 auto; max-width: 100%; }
  .sg-cols { grid-template-columns: 1fr; max-width: 420px; }
  .ueber-inner { grid-template-columns: 1fr; }
  .ueber-img-wrap { aspect-ratio: 16/9; border-radius: var(--radius); max-height: 280px; }
  .termine-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .sl-grid { grid-template-columns: 1fr; }
  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--kara);
    padding: 0.75rem;
    box-shadow: 0 6px 20px rgba(42,31,20,0.10);
  }
  .site-nav.open { display: flex; }
  .burger { display: flex; }
  .tf-row { grid-template-columns: 1fr; }
  .tf-row { grid-template-columns: 1fr; }
}
