/* ══════════════════════════════════════════════════════════
   FRISEUR TEMPLATE — Design System
   Vanilla CSS · Kein Build-Step
   ══════════════════════════════════════════════════════════ */

/* ── 0. LOKALE FONTS (DSGVO-konform) ── */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/playfair-display-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/playfair-display-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-display-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-display-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ── 1. CSS VARIABLEN (aus config.json übernehmen) ── */
:root {
  /* Farben – Peach & Koralle */
  --color-bg:        #fffaf7;
  --color-surface:   #ffffff;
  --color-surface-alt: #fef2ec;
  --color-border:    #f0ddd3;
  --color-heading:   #2c1810;
  --color-text:      #3d2b22;
  --color-text-muted:#7d6860;

  /* Akzent: Koralle */
  --accent:          #e07850;
  --accent-dark:     #c45d38;
  --accent-light:    #fde8e0;
  --accent-hover:    #d46842;

  /* Sekundärfarbe */
  --secondary:       #3d2b22;

  /* Fonts */
  --font-display:    'Playfair Display', Georgia, serif;
  --font-body:       'DM Sans', system-ui, sans-serif;

  /* Layout */
  --container-width: 1200px;
  --radius:          12px;
  --radius-lg:       20px;
  --radius-full:     9999px;

  /* Schatten */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.16);

  /* Abstände */
  --section-py: 96px;
  --section-py-sm: 64px;

  /* Transitions */
  --transition: 0.22s ease;
  --transition-slow: 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── 3. TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { font-size: 1rem; line-height: 1.75; }

/* ── 4. LAYOUT ── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 28px;
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 28px;
}

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

.section-alt {
  background: var(--color-surface-alt);
}

/* ── 5. SECTION LABELS ── */
.section-label-group { margin-bottom: 48px; }
.section-label-group.center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-label-group.center .section-subtitle {
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── 6. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 48px;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224,120,80,.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-1px);
}

.btn-outline-light {
  background: rgba(255,255,255,.5);
  color: var(--color-heading);
  border-color: var(--color-border);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.8);
  border-color: var(--accent);
  color: var(--accent-dark);
}

.btn-sm { padding: 10px 20px; font-size: 0.88rem; min-height: 40px; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; min-height: 56px; }
.btn-full { width: 100%; }

/* ── 7. NAVIGATION ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,250,247,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-heading);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
  background: var(--accent-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition);
}

.nav-phone:hover { color: var(--accent); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.hamburger:hover { background: var(--color-surface-alt); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 20px 28px 28px;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.mobile-menu.active { display: block; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all var(--transition);
}

.mobile-menu a:hover { background: var(--accent-light); color: var(--accent); }

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.mobile-phone-link {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 10px;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #fde8e0;
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,245,238,.88) 0%,
    rgba(255,245,238,.72) 50%,
    rgba(255,240,230,.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 80px 28px;
  color: var(--color-heading);
}

.hero-badge {
  display: inline-block;
  background: rgba(224,120,80,.1);
  border: 1px solid rgba(224,120,80,.25);
  backdrop-filter: blur(4px);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-headline {
  color: var(--color-heading);
  margin-bottom: 20px;
  text-shadow: none;
}

.hero-subline {
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(4px);
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.trust-badge svg { width: 14px; height: 14px; flex-shrink: 0; fill: var(--accent); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-text-muted);
  animation: bounce 2s infinite;
  transition: color var(--transition);
  z-index: 1;
}

.hero-scroll:hover { color: var(--accent); }

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

/* ── 9. SERVICES ── */
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.services-tab {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--color-border);
  color: var(--color-text-muted);
  background: var(--color-surface);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-tab:hover,
.services-tab.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-heading);
  line-height: 1.3;
}

.service-price-wrap {
  text-align: right;
  flex-shrink: 0;
}

.service-price-type {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 2px;
}

.service-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-dark);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  padding-top: 8px;
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}

.service-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-meta svg { width: 13px; height: 13px; }

.service-book-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 8px 18px;
  font-size: 0.82rem;
  min-height: 36px;
}

.services-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--color-surface-alt);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

/* ── 10. TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-surface-alt);
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-photo img { transform: scale(1.03); }

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-light), var(--color-border));
}

.team-initials {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.6;
}

.team-info {
  padding: 20px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.team-tag {
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.team-instagram {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.team-instagram:hover { color: var(--accent); }
.team-instagram svg { width: 14px; height: 14px; }

/* ── 11. GALERIE ── */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.gallery-filter-btn {
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid var(--color-border);
  color: var(--color-text-muted);
  background: var(--color-surface);
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: var(--accent-light);
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-item-overlay { display: none; }
.gallery-zoom-icon { display: none; }

.gallery-item.hidden { display: none; }

/* ── 12. BEWERTUNGEN ── */
.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  padding: 16px 28px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.google-logo {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.google-score {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1;
}

.google-stars {
  display: flex;
  gap: 2px;
  align-items: center;
}

.google-stars .star svg { width: 16px; height: 16px; }

.star svg { fill: #d1d5db; stroke: none; }
.star.filled svg { fill: #f59e0b; }

.google-count {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.google-link {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-stars .star svg { width: 16px; height: 16px; }

.review-text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-text::before { content: '"'; }
.review-text::after { content: '"'; }

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

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-source {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  background: var(--color-surface-alt);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.review-date {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.presse-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.presse-logo-item {
  text-align: center;
}

.presse-quote {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 6px;
}

/* ── 13. ÜBER UNS ── */
.about-content {
  max-width: 720px;
}

.about-content .section-label { display: block; margin-bottom: 8px; }

.about-title {
  margin-bottom: 20px;
}

.about-text {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-philosophy {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 28px;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.about-badge svg { width: 15px; height: 15px; color: var(--accent); }

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.brand-logo-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

/* ── 14. ÖFFNUNGSZEITEN + KONTAKT ── */
.hours-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.hours-block,
.contact-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.block-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.block-title svg { color: var(--accent); width: 22px; height: 22px; }

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--color-surface-alt);
}

.hours-row:last-child { border-bottom: none; }

.hours-day { font-weight: 600; color: var(--color-heading); }
.hours-time { color: var(--color-text-muted); }
.hours-time.closed { color: #e74c3c; font-weight: 600; }

.hours-note {
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--accent-light);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--accent-dark);
  font-weight: 600;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
}

.contact-item-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-item-icon svg { width: 18px; height: 18px; }

.contact-item-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.contact-item-value {
  font-weight: 500;
  color: var(--color-text);
}

.contact-item-value a {
  color: var(--accent);
  transition: color var(--transition);
}

.contact-item-value a:hover { color: var(--accent-dark); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25d366;
  color: white;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 16px;
  transition: all var(--transition);
}

.whatsapp-btn:hover { background: #128c7e; transform: translateY(-1px); }
.whatsapp-btn svg { width: 16px; height: 16px; }

.map-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-surface-alt);
  box-shadow: var(--shadow-sm);
}

.map-block iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  background: linear-gradient(135deg, #fef2ec, #f0ddd3);
}

.map-placeholder svg { width: 40px; height: 40px; color: var(--accent); }

.map-consent {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fef2ec, #f0ddd3);
  border-radius: var(--radius);
}
.map-consent-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  text-align: center;
  color: var(--color-text-muted);
}
.map-consent-inner svg { color: var(--accent); }
.map-consent-text { font-size: 0.85rem; max-width: 240px; line-height: 1.5; }
.map-external-link { font-size: 0.8rem; color: var(--accent); text-decoration: underline; }
.map-external-link:hover { color: var(--accent-dark); }

/* ── 15. FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item.active { box-shadow: var(--shadow-md); border-color: var(--accent); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-heading);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
  min-height: 44px;
}

.faq-question:hover { background: var(--color-surface-alt); }
.faq-item.active .faq-question { background: var(--accent-light); color: var(--accent-dark); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--color-text-muted);
}

.faq-item.active .faq-icon {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
  transform: rotate(45deg);
}

.faq-icon svg { width: 12px; height: 12px; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ── 16. BOOKING CTA BANNER ── */
.section-booking-cta {
  background: linear-gradient(135deg, #e07850 0%, #c45d38 60%, #a84830 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-booking-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.08;
}

.booking-cta-inner {
  position: relative;
  text-align: center;
  color: white;
}

.booking-cta-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.booking-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 16px;
}

.booking-cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.booking-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.booking-fallback {
  margin-top: 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.5);
}

.booking-fallback a { color: rgba(255,255,255,.8); text-decoration: underline; }

/* ── 17. LEGAL PAGES (Impressum, Datenschutz) ── */
.legal-page { padding-top: 120px; }
.legal-page h1 {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--color-border);
}
.legal-page h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-page h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-page p {
  margin-bottom: 12px;
  color: var(--color-text);
}
.legal-page a { color: var(--accent); text-decoration: underline; }
.legal-page a:hover { color: var(--accent-dark); }
.legal-notice {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.legal-notice p { margin-bottom: 0; font-size: 0.9rem; }

/* ── 18. FOOTER ── */
.site-footer {
  background: var(--secondary);
  color: rgba(255,255,255,.8);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: white;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}

.footer-social-link:hover { background: var(--accent); color: white; }
.footer-social-link svg { width: 18px; height: 18px; }

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}

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

.footer-links a {
  font-size: 0.92rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent); }

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

.footer-contact-item svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.footer-hours-mini {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
  gap: 8px;
}

.footer-hours-row .day { font-weight: 600; color: rgba(255,255,255,.8); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}

.footer-legal-links a:hover { color: rgba(255,255,255,.8); }

/* ── 19. LIGHTBOX ── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9000;
  cursor: pointer;
}

.lightbox-overlay.active { display: block; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9001;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.lightbox.active {
  display: flex;
}

.lightbox-figure {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  pointer-events: all;
  text-align: center;
}

.lightbox-figure img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow-xl);
}

.lightbox-caption {
  color: rgba(255,255,255,.7);
  font-size: 0.9rem;
  margin-top: 12px;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  pointer-events: all;
  z-index: 9002;
}

.lightbox-close:hover { background: rgba(255,255,255,.2); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: white;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  pointer-events: all;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.2); }

/* ── 20. SCROLL ANIMATIONEN ── */
.anim-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

/* ── 20b. ACCESSIBILITY ── */

/* Focus-Styles für Keyboard-Navigation */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
a:focus-visible,
button:focus-visible { outline-offset: 3px; }
.btn:focus-visible { outline-offset: 3px; box-shadow: 0 0 0 4px var(--accent-light); }

/* Inputs: 16px verhindert iOS-Zoom */
input, textarea, select {
  font-size: 16px;
  font-family: var(--font-body);
}


/* ── 21. RESPONSIVE BREAKPOINTS ── */

/* 1280px — großer Desktop */
@media (max-width: 1280px) {
  .container { padding: 0 40px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 36px; }
  .footer-grid > *:last-child { display: none; }
}

/* 1024px — Laptop */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .container { padding: 0 28px; }
  .hours-contact-grid { grid-template-columns: 1fr 1fr; }
  .map-block { grid-column: span 2; aspect-ratio: 16/5; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:last-child { display: block; }
}

/* 768px — Tablet: Hamburger */
@media (max-width: 768px) {
  :root { --section-py: 56px; }

  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hours-contact-grid { grid-template-columns: 1fr; }
  .map-block { grid-column: span 1; aspect-ratio: 16/7; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .booking-cta-actions { flex-direction: column; align-items: center; }
}

/* 640px — Mobile L */
@media (max-width: 640px) {
  :root { --section-py: 48px; }

  .hero-content { padding: 60px 28px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .google-rating { flex-direction: column; gap: 8px; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-cta .btn { width: 100%; justify-content: center; }
}

/* 375px — iPhone SE */
@media (max-width: 375px) {
  .container, .container-narrow { padding: 0 16px; }
  .logo-name { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }

  .hero-trust { flex-direction: column; }
  .trust-badge { font-size: 0.75rem; }
}

/* Touch: Hover-Effekte deaktivieren */
@media (hover: none) {
  .service-card:hover,
  .team-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }
}

/* ══════════════════════════════════════════════════════════
   POLISH LAYER — Atmosphäre, Animationen, Micro-Interactions
   ══════════════════════════════════════════════════════════ */

/* ── P1. PAGE LOAD ── */
body {
  opacity: 0;
  animation: pageReveal 0.8s ease forwards;
}

@keyframes pageReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── P2. GRAIN TEXTURE OVERLAY ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── P3. CUSTOM SELECTION ── */
::selection {
  background: var(--accent);
  color: white;
}

::-moz-selection {
  background: var(--accent);
  color: white;
}

/* ── P4. CUSTOM SCROLLBAR ── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
  transition: background 0.2s;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ── P5. SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  z-index: 10001;
  transform-origin: left;
  transform: scaleX(0);
  transition: none;
  will-change: transform;
}

/* ── P6. CUSTOM CURSOR ── */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.cursor-dot.visible {
  opacity: 1;
}

.cursor-dot.hover {
  width: 40px;
  height: 40px;
  background: rgba(224,120,80,.15);
  mix-blend-mode: normal;
  backdrop-filter: blur(2px);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot { display: none; }
}

/* ── P7. ENHANCED SCROLL ANIMATIONS ── */
.anim-blur {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  transition: opacity 0.7s ease, filter 0.7s ease, transform 0.7s ease;
}
.anim-blur.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.anim-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.anim-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.anim-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.anim-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.anim-clip {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.anim-clip.visible {
  clip-path: inset(0 0 0 0);
}

/* Stagger delays for grid items */
.anim-stagger-1 { transition-delay: 0.05s !important; }
.anim-stagger-2 { transition-delay: 0.1s !important; }
.anim-stagger-3 { transition-delay: 0.15s !important; }
.anim-stagger-4 { transition-delay: 0.2s !important; }
.anim-stagger-5 { transition-delay: 0.25s !important; }
.anim-stagger-6 { transition-delay: 0.3s !important; }
.anim-stagger-7 { transition-delay: 0.35s !important; }
.anim-stagger-8 { transition-delay: 0.4s !important; }

/* ── P8. HERO ENHANCEMENTS ── */
.hero {
  perspective: 1000px;
}

.hero-bg {
  will-change: transform;
  transition: transform 0.08s linear;
}

/* Floating decorative elements */
.hero-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-decor-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,120,80,.08) 0%, transparent 70%);
  animation: floatSlow 8s ease-in-out infinite;
}

.hero-decor-circle-2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,43,34,.05) 0%, transparent 70%);
  animation: floatSlow 10s ease-in-out infinite reverse;
}

.hero-decor-dots {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--accent) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.12;
  animation: floatSlow 12s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(1deg); }
  66% { transform: translateY(8px) rotate(-1deg); }
}

/* Hero content staged reveal */
.hero-badge {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.6s ease 0.3s forwards;
}

.hero-headline {
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.7s ease 0.5s forwards;
}

.hero-subline {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.6s ease 0.7s forwards;
}

.hero-ctas {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.6s ease 0.9s forwards;
}

.hero-trust {
  opacity: 0;
  transform: translateY(15px);
  animation: heroReveal 0.5s ease 1.1s forwards;
}

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

/* Headline gradient accent */
.hero-headline {
  background: linear-gradient(135deg, var(--color-heading) 0%, var(--accent-dark) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── P9. BUTTON ENHANCEMENTS ── */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(224,120,80,.4), 0 0 60px rgba(224,120,80,.15);
}

/* Pulse attention on hero CTA */
.hero-ctas .btn-primary {
  animation: heroReveal 0.6s ease 0.9s forwards, subtlePulse 3s ease-in-out 2s infinite;
}

@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(224,120,80,.35); }
  50% { box-shadow: 0 8px 32px rgba(224,120,80,.5), 0 0 60px rgba(224,120,80,.12); }
}

/* ── P10. SERVICE CARD ENHANCEMENTS ── */
.service-card {
  transform-style: preserve-3d;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.3s ease;
  background: linear-gradient(135deg, rgba(224,120,80,.04), transparent);
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card {
  position: relative;
}

/* ── P11. TEAM CARD ENHANCEMENTS ── */
.team-card {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

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

.team-card:hover .team-photo img {
  transform: scale(1.06);
}

.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,43,34,.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.team-card:hover .team-photo::after {
  opacity: 1;
}

/* ── P12. GALLERY ENHANCEMENTS ── */
.gallery-item {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover {
  transform: scale(1.02);
  z-index: 2;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(61,43,34,.4);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

/* Gallery zoom icon on hover */
.gallery-item-overlay {
  display: flex !important;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.35s ease;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.gallery-zoom-icon {
  display: flex !important;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s ease, background 0.3s ease;
}

.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1);
}

/* ── P13. REVIEW CARD ENHANCEMENTS ── */
.review-card {
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--accent-light);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  transition: color 0.3s ease;
}

.review-card:hover::before {
  color: var(--accent);
  opacity: 0.15;
}

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

.review-card > * {
  position: relative;
  z-index: 1;
}

/* ── P14. SECTION LABELS GRADIENT ── */
.section-label {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── P15. SECTION SHAPE DIVIDERS ── */
.section-services::before,
.section-team::before,
.section-gallery::before,
.section-reviews::before,
.section-about::before,
.section-hours-contact::before,
.section-faq::before {
  content: '';
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 40px;
  pointer-events: none;
}

.section-services,
.section-team,
.section-gallery,
.section-reviews,
.section-about,
.section-hours-contact,
.section-faq {
  position: relative;
}

.section-team::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40'%3E%3Cpath fill='%23fffaf7' d='M0,0 C360,40 1080,40 1440,0 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100% 100%;
}

.section-gallery::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40'%3E%3Cpath fill='%23fef2ec' d='M0,0 C360,40 1080,40 1440,0 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100% 100%;
}

.section-reviews::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40'%3E%3Cpath fill='%23fffaf7' d='M0,0 C480,40 960,40 1440,0 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100% 100%;
}

.section-about::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40'%3E%3Cpath fill='%23fef2ec' d='M0,0 C480,40 960,40 1440,0 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100% 100%;
}

.section-hours-contact::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40'%3E%3Cpath fill='%23fffaf7' d='M0,0 C360,40 1080,40 1440,0 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100% 100%;
}

.section-faq::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40'%3E%3Cpath fill='%23fef2ec' d='M0,0 C480,40 960,40 1440,0 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100% 100%;
}

/* ── P16. NAV LINK ANIMATED UNDERLINE ── */
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
  left: 20%;
}

/* ── P17. BOOKING CTA ANIMATED GRADIENT ── */
.section-booking-cta {
  background: linear-gradient(135deg, #e07850 0%, #c45d38 30%, #a84830 60%, #c45d38 100%);
  background-size: 300% 300%;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Decorative circles in booking CTA */
.section-booking-cta::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}

/* ── P18. FAQ SPRING ANIMATION ── */
.faq-answer {
  transition: max-height 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), padding 0.25s ease;
}

.faq-item {
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.faq-item:hover:not(.active) {
  border-color: rgba(224,120,80,.3);
}

.faq-item.active {
  transform: scale(1.01);
}

/* ── P19. ABOUT SECTION ENHANCEMENTS ── */
.about-philosophy {
  position: relative;
  transition: all 0.3s ease;
}

.about-philosophy::before {
  content: '\201C';
  position: absolute;
  top: -12px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}

/* ── P20. TRUST BADGE ANIMATION ── */
.trust-badge {
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255,255,255,.85);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ── P21. SMOOTH NUMBER COUNT STYLE ── */
.counter-value {
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
}

/* ── P22. LOADING SKELETON ── */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ── P23. RESPONSIVE POLISH ADJUSTMENTS ── */
@media (max-width: 768px) {
  .hero-decor { display: none; }
  .cursor-dot { display: none; }

  .section-services::before,
  .section-team::before,
  .section-gallery::before,
  .section-reviews::before,
  .section-about::before,
  .section-hours-contact::before,
  .section-faq::before {
    height: 24px;
  }
}

@media (max-width: 640px) {
  .hero-headline {
    background: none;
    -webkit-text-fill-color: var(--color-heading);
  }
}
