/* =====================================================================
   FRISEUR BAROCCO – Statische Website
   Eine einzige globale Stylesheet-Datei für alle Seiten.
   ===================================================================== */

/* ===== DESIGN TOKENS ===== */
:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #141414;
  --bg-card: #1c1c1c;
  --bg-card-hover: #232323;

  --text-primary: #f0ece4;
  --text-secondary: #9a9590;
  --text-muted: #5a5650;

  --accent: #c9a660;
  --accent-hover: #e0bb78;
  --accent-dim: rgba(201, 166, 96, 0.15);

  --silver: #c8c4be;
  --silver-dim: rgba(200, 196, 190, 0.12);

  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(201, 166, 96, 0.3);

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.6);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', system-ui, sans-serif;

  --section-py: 100px;
  --container-max: 1200px;
  --container-px: 24px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

[data-theme="light"] {
  --bg-primary: #faf9f7;
  --bg-secondary: #f0ece4;
  --bg-card: #ffffff;
  --bg-card-hover: #f8f6f2;

  --text-primary: #1a1714;
  --text-secondary: #5a5650;
  --text-muted: #9a9590;

  --accent: #9b7420;
  --accent-hover: #7d5c18;
  --accent-dim: rgba(155, 116, 32, 0.1);

  --silver: #3a3630;
  --silver-dim: rgba(58, 54, 48, 0.08);

  --border: rgba(0, 0, 0, 0.08);
  --border-accent: rgba(155, 116, 32, 0.3);

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.16);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color var(--transition), color var(--transition);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); }

p { color: var(--text-secondary); line-height: 1.8; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  width: 100%;
}

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

main { flex: 1; display: flex; flex-direction: column; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #0d0d0d;
  border: 1px solid var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 166, 96, 0.3);
}
.btn-primary[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline-light {
  border-color: rgba(240, 236, 228, 0.2);
  color: rgba(240, 236, 228, 0.8);
}
.btn-outline-light:hover {
  border-color: rgba(201, 166, 96, 0.6);
  color: #c9a660;
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border-accent);
  padding: 12px 28px;
}
.btn-ghost:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

/* ===== SECTION HEADER ===== */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

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

.divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 20px 0;
}
.divider-center { margin-left: auto; margin-right: auto; }

.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-8 { margin-top: 8px; }
.mb-16 { margin-bottom: 16px; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ===== FORMS ===== */
.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239a9590' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-privacy {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.form-privacy a { color: var(--accent); transition: opacity var(--transition); }
.form-privacy a:hover { opacity: 0.75; }

.form-error {
  padding: 12px 16px;
  background: rgba(220, 50, 50, 0.1);
  border: 1px solid rgba(220, 50, 50, 0.3);
  border-radius: var(--radius-sm);
  color: #e05555;
  font-size: 0.875rem;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--silver); }

/* ===== REVEAL-ON-SCROLL (vanilla-JS driven) ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

/* =====================================================================
   NAVBAR
   ===================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.is-scrolled {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}

.nav {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  flex-shrink: 0;
  display: block;
  line-height: 0;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-logo:hover { opacity: 0.85; transform: scale(1.03); }
.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after,
.nav-link.is-active::after { width: 100%; }
.nav-link.is-active { color: var(--text-primary); }

/* Light theme: --text-secondary is too low-contrast against the bright header
   background for the small uppercase nav labels — use a darker, warmer gray. */
[data-theme="light"] .nav-link,
[data-theme="light"] .mobile-link { color: #4a443c; }
[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.is-active,
[data-theme="light"] .mobile-link:hover,
[data-theme="light"] .mobile-link.is-active { color: var(--text-primary); }

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

.theme-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--silver-dim);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
  flex-shrink: 0;
}
.theme-btn:hover { border-color: var(--accent); color: var(--accent); }
.theme-btn .icon-moon { display: none; }
[data-theme="light"] .theme-btn .icon-sun { display: none; }
[data-theme="light"] .theme-btn .icon-moon { display: block; }

.nav-cta {
  font-size: 0.68rem !important;
  padding: 10px 22px !important;
}

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.menu-btn:hover { border-color: var(--accent); color: var(--accent); }
.menu-btn .icon-close { display: none; }
.menu-btn.is-open .icon-menu { display: none; }
.menu-btn.is-open .icon-close { display: block; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  padding: 100px var(--container-px) 40px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.mobile-link {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 300;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
  letter-spacing: 0.04em;
}
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--text-primary);
  padding-left: 12px;
}

.mobile-cta {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-btn { display: flex; }
}

@media (max-width: 480px) {
  .theme-btn { width: 32px; height: 32px; }
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer-top { padding: 72px 0 56px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand img {
  height: 44px;
  width: auto;
  display: block;
  align-self: flex-start;
  border-radius: var(--radius-sm);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 240px;
}

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

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.footer-social-link:hover { border-color: var(--accent); color: var(--accent); }

.footer-col { display: flex; flex-direction: column; gap: 20px; }

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.footer-contact-list a { color: var(--text-secondary); transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--accent); }
.footer-contact-list .icon { flex-shrink: 0; margin-top: 3px; color: var(--accent); opacity: 0.8; }

.footer-hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.87rem;
  color: var(--text-secondary);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.footer-hours li:last-child { border-bottom: none; }
.footer-hours li.is-closed { opacity: 0.45; }

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-list a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  display: inline-block;
}
.footer-nav-list a:hover { color: var(--accent); }

.footer-bottom-bar { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.82rem; color: var(--text-muted); }
.footer-legal { list-style: none; display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.82rem; color: var(--text-muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--accent); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =====================================================================
   COOKIE BANNER
   ===================================================================== */
.cookie-overlay {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1), transform 0.35s cubic-bezier(0.4,0,0.2,1), visibility 0.35s;
}
.cookie-overlay.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

.cookie-banner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  max-width: 680px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cookie-title-row { display: flex; align-items: center; gap: 10px; }
.cookie-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 500; color: var(--text-primary); }
.cookie-shield-icon { color: var(--accent); }

.cookie-close-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--transition);
  flex-shrink: 0;
}
.cookie-close-btn:hover { color: var(--text-primary); border-color: var(--text-muted); }

.cookie-desc { font-size: 0.88rem; line-height: 1.7; color: var(--text-secondary); }
.cookie-desc a { color: var(--accent); transition: opacity var(--transition); }
.cookie-desc a:hover { opacity: 0.75; }

.cookie-expand-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  transition: color var(--transition);
  text-transform: uppercase;
  cursor: pointer;
}
.cookie-expand-btn:hover { color: var(--accent); }
.cookie-expand-btn .icon-up { display: none; }
.cookie-expand-btn.is-expanded .icon-down { display: none; }
.cookie-expand-btn.is-expanded .icon-up { display: block; }

.cookie-prefs {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  border-top-color: transparent;
  transition: max-height 0.25s ease, opacity 0.25s ease, padding-top 0.25s ease, border-color 0.25s ease;
}
.cookie-prefs.is-expanded {
  max-height: 400px;
  opacity: 1;
  padding-top: 16px;
  border-top-color: var(--border);
}

.cookie-pref-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: default; }
.cookie-pref-name { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.cookie-pref-desc { display: block; font-size: 0.8rem; color: var(--text-muted); }

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: var(--border);
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: all var(--transition);
  cursor: pointer;
  padding: 0;
}
.cookie-toggle.is-on { background: var(--accent); border-color: var(--accent); }
.cookie-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  transition: left var(--transition);
  display: block;
}
.cookie-toggle.is-on .cookie-toggle-knob { left: calc(100% - 19px); }
.cookie-toggle.is-locked { cursor: default; }

.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; padding-top: 4px; }
.cookie-actions .btn { font-size: 0.72rem !important; padding: 10px 20px !important; }
.cookie-save-btn { display: none; }
.cookie-save-btn.is-visible { display: inline-flex; }

@media (max-width: 600px) {
  .cookie-overlay { left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner { padding: 20px; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .btn { width: 100%; justify-content: center; }
}

/* =====================================================================
   HERO (Home)
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-bg {
  position: absolute;
  inset: -10% 0;
  z-index: 0;
}

.hero-bg-inner {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 60%, rgba(201, 166, 96, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(10, 10, 10, 0.35) 0%, transparent 45%),
    linear-gradient(110deg, rgba(10, 10, 10, 0.94) 0%, rgba(13, 13, 13, 0.86) 32%, rgba(13, 13, 13, 0.55) 62%, rgba(13, 13, 13, 0.8) 100%),
    url('../images/salon-interior.webp');
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center 62%;
  background-repeat: no-repeat;
}

.hero-bg-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
  opacity: 0;
  animation: hero-fade-in 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes hero-fade-in { to { opacity: 1; } }

.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  opacity: 0;
  transform: scale(0.8);
  animation: hero-logo-in 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero-logo img { height: 90px; width: auto; }
@keyframes hero-logo-in { to { opacity: 1; transform: scale(1); } }

.hero-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201, 166, 96, 0.8);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-up-in 0.7s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  color: #f0ece4;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(30px);
  animation: hero-up-in 0.8s cubic-bezier(0.4,0,0.2,1) 0.45s forwards;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: #c9a660;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(240, 236, 228, 0.55);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-up-in 0.7s cubic-bezier(0.4,0,0.2,1) 0.65s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-up-in 0.7s cubic-bezier(0.4,0,0.2,1) 0.85s forwards;
}

@keyframes hero-up-in { to { opacity: 1; transform: translateY(0); } }

.mobile-break { display: none; }

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(240, 236, 228, 0.3);
  z-index: 1;
  opacity: 0;
  animation: hero-hint-in 0.6s ease 1.5s forwards;
}
@keyframes hero-hint-in { to { opacity: 1; } }
.scroll-hint span {
  display: block;
  animation: hero-hint-bounce 1.6s ease-in-out infinite;
}
@keyframes hero-hint-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  /* Multi-stop fade so the transition into the page background reads as a
     soft veil rather than a hard, visibly "white" band over the photo. */
  background: linear-gradient(
    to top,
    var(--bg-primary) 0%,
    color-mix(in srgb, var(--bg-primary) 88%, transparent) 22%,
    color-mix(in srgb, var(--bg-primary) 58%, transparent) 46%,
    color-mix(in srgb, var(--bg-primary) 26%, transparent) 72%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 640px) {
  .mobile-break { display: inline; }
  .hero-cta { flex-direction: column; align-items: center; }
}

/* ===== STATS ===== */
.stats-section { padding: 48px 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; display: flex; flex-direction: column; gap: 6px; }
.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== HOME: SERVICES TEASER ===== */
.home-services { background: var(--bg-primary); }
.section-header { margin-bottom: 56px; }
.section-header.is-centered { text-align: center; }

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.home-service-card { display: flex; flex-direction: column; gap: 16px; cursor: default; }
.home-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.home-service-title { font-size: 1.25rem; font-family: var(--font-heading); font-weight: 500; }
.home-service-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.home-services-cta { text-align: center; }

/* ===== HOME: ABOUT TEASER ===== */
.home-about { background: var(--bg-secondary); }
.home-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.home-about-img-wrapper { position: relative; }
.home-about-img-placeholder {
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  overflow: hidden;
}
.home-about-img-placeholder img { height: 100px; width: auto; }
.home-about-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--border-accent);
  border-radius: var(--radius-md);
  z-index: -1;
}
.home-about-text { display: flex; flex-direction: column; gap: 16px; }
.home-about-actions { margin-top: 8px; }

/* ===== HOME: GALLERY TEASER ===== */
.home-gallery { background: var(--bg-primary); }
.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
  margin-bottom: 40px;
}
.home-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition);
}
.home-gallery-item:hover { transform: scale(1.02); }
.home-gallery-item.is-wide { grid-column: 1 / 3; }
.home-gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: 0.5;
  transition: opacity var(--transition);
}
.home-gallery-item:hover .home-gallery-placeholder { opacity: 0.8; }

/* ===== HOME: BOOKING CTA ===== */
.booking-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1508 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}
.booking-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 166, 96, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(201, 166, 96, 0.08) 0%, transparent 50%);
}
.cta-box {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
}
.cta-logo { opacity: 0.9; }
.cta-logo img { height: 60px; width: auto; }
.cta-title { color: #f0ece4; font-size: clamp(2rem, 4vw, 3rem); }
.cta-desc { color: rgba(240, 236, 228, 0.55); font-size: 1rem; max-width: 380px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.cta-phone-link { border-color: rgba(255,255,255,0.2); color: #f0ece4; }

/* =====================================================================
   PAGE HEADER (shared by inner pages)
   ===================================================================== */
.page-header {
  padding: 120px 0 72px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.page-header.is-compact { padding: 120px 0 56px; }

/* =====================================================================
   ABOUT PAGE
   ===================================================================== */
.story-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.story-visual { position: relative; }
.story-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.story-card img { height: 80px; width: auto; }
.story-card-text { display: flex; flex-direction: column; gap: 8px; }
.story-card-quote { font-family: var(--font-heading); font-size: 1.8rem; font-style: italic; color: var(--accent); line-height: 1.3; }
.story-card-author { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase; }
.story-accent {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  z-index: -1;
}
.story-text { display: flex; flex-direction: column; gap: 16px; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { display: flex; flex-direction: column; gap: 14px; cursor: default; }
.value-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.value-title { font-size: 1.3rem; font-family: var(--font-heading); font-weight: 500; }
.value-desc { font-size: 0.9rem; line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; justify-items: center; }
.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 36px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 320px;
  transition: all var(--transition);
}
.team-card:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.team-avatar img { height: 48px; width: auto; }
.team-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 500; }
.team-role { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); }
.team-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }

.hours-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.hours-table { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.hours-row:last-child { border-bottom: none; }
.hours-row.is-closed { opacity: 0.4; }

@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { display: none; }
  .hours-wrapper { grid-template-columns: 1fr; gap: 36px; }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   SERVICES PAGE
   ===================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color var(--transition);
}
.service-cat-card:hover { border-color: var(--border-accent); }
.service-cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.service-cat-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.service-cat-title { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 500; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.service-list-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.service-list-item:last-child { border-bottom: none; }
.service-item-name { font-size: 0.9rem; color: var(--text-secondary); white-space: nowrap; }
.service-item-dots { flex: 1; border-bottom: 1px dotted var(--border); min-width: 16px; }
.service-item-price { font-family: var(--font-heading); font-size: 1rem; font-weight: 500; color: var(--accent); white-space: nowrap; }

.services-note {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
}
.services-note p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }
.services-note strong { color: var(--text-primary); }

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

/* =====================================================================
   GALLERY PAGE
   ===================================================================== */
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.gallery-filter-btn {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.gallery-filter-btn.is-active { background: var(--accent-dim); border-color: var(--accent); color: var(--accent); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  margin-bottom: 32px;
}
.gallery-item {
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  grid-row: span 1;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item.is-hidden { display: none; }
.gallery-item.is-portrait { grid-row: span 2; }
.gallery-item.is-landscape { grid-column: span 2; }
.gallery-item-inner { width: 100%; height: 100%; position: relative; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.gallery-item:hover .gallery-placeholder { border-color: var(--border-accent); }
.gallery-placeholder-icon { color: var(--accent); opacity: 0.3; transition: opacity var(--transition); }
.gallery-item:hover .gallery-placeholder-icon { opacity: 0.6; }
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 24px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }
.gallery-overlay-category { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.gallery-overlay-label { font-family: var(--font-heading); font-size: 1.1rem; color: #f0ece4; }
.gallery-note { text-align: center; font-size: 0.85rem; color: var(--text-muted); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-content {
  position: relative;
  max-width: 800px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.lightbox.is-open .lightbox-content { transform: scale(1); opacity: 1; }
.lightbox-img {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.lightbox-meta { position: absolute; bottom: 16px; left: 16px; display: flex; flex-direction: column; gap: 4px; }
.lightbox-category { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.lightbox-label { font-family: var(--font-heading); font-size: 1.4rem; color: #f0ece4; }
.lightbox-close, .lightbox-nav {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  color: #f0ece4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(201, 166, 96, 0.3); border-color: var(--accent); }
.lightbox-close { top: 16px; right: 16px; }
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.is-landscape { grid-column: span 2; }
  .gallery-item.is-portrait { grid-row: span 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.is-landscape { grid-column: span 1; }
}

/* =====================================================================
   BOOKING PAGE
   ===================================================================== */
.booking-content { padding-top: 48px !important; }

.booking-steps { display: flex; align-items: center; justify-content: center; margin-bottom: 48px; gap: 0; }
.booking-step-item { display: flex; align-items: center; gap: 10px; }
.booking-step-dot {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--transition);
}
.booking-step-dot.is-active { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.booking-step-dot.is-done { border-color: var(--accent); background: var(--accent); color: #0d0d0d; }
.booking-step-dot .icon-check { display: none; }
.booking-step-dot.is-done .icon-check { display: block; }
.booking-step-dot.is-done .step-num { display: none; }
.booking-step-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--transition);
}
.booking-step-label.is-active { color: var(--text-primary); }
.booking-step-line { width: 48px; height: 1px; background: var(--border); margin: 0 12px; transition: background var(--transition); flex-shrink: 0; }
.booking-step-line.is-done { background: var(--accent); }

.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
.booking-step-content {
  padding: 40px;
  display: none;
  animation: booking-step-in 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.booking-step-content.is-active { display: block; }
@keyframes booking-step-in { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

.booking-step-title { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 32px; color: var(--text-primary); }
.booking-step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }

/* Step 0 — service selection */
.booking-categories { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.booking-cat-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em;
  cursor: pointer;
  transition: all var(--transition);
}
.booking-cat-btn:hover { border-color: var(--accent); color: var(--accent); }
.booking-cat-btn.is-active { background: var(--accent-dim); border-color: var(--accent); color: var(--accent); }
.booking-cat-icon { display: flex; }

.booking-service-list { margin-top: 8px; display: none; }
.booking-service-list.is-visible { display: block; animation: booking-fade-up 0.3s ease; }
@keyframes booking-fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.booking-service-list-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }

.booking-service-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 8px;
  position: relative;
}
.booking-service-btn:hover { border-color: var(--border-accent); background: var(--bg-card-hover); }
.booking-service-btn.is-active { border-color: var(--accent); background: var(--accent-dim); }
.booking-service-btn-left { flex: 1; }
.booking-service-btn-name { display: block; font-size: 0.95rem; font-weight: 500; color: var(--text-primary); }
.booking-service-btn-duration { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.booking-service-btn-price { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 500; color: var(--accent); white-space: nowrap; }
.booking-service-check { color: var(--accent); flex-shrink: 0; display: none; }
.booking-service-btn.is-active .booking-service-check { display: block; }

/* Step 1 — date & time */
.booking-date-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.booking-date-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }

.booking-calendar { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; }
.booking-cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.booking-cal-nav {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}
.booking-cal-nav:hover { border-color: var(--accent); color: var(--accent); }
.booking-cal-month { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 500; color: var(--text-primary); }
.booking-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.booking-cal-day-label { text-align: center; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); padding: 6px 0; }
.booking-cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition);
  background: transparent;
}
.booking-cal-day:hover:not(.is-disabled):not(.is-empty) { background: var(--bg-card); border-color: var(--border-accent); color: var(--text-primary); }
.booking-cal-day.is-selected { background: var(--accent); color: #0d0d0d; font-weight: 600; }
.booking-cal-day.is-disabled { opacity: 0.25; cursor: not-allowed; }
.booking-cal-day.is-empty { cursor: default; visibility: hidden; }
.booking-cal-note { margin-top: 12px; font-size: 0.75rem; color: var(--text-muted); text-align: center; }

.booking-time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; max-height: 360px; overflow-y: auto; padding-right: 4px; }
.booking-time-slot {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.booking-time-slot:hover { border-color: var(--border-accent); color: var(--text-primary); }
.booking-time-slot.is-active { background: var(--accent); border-color: var(--accent); color: #0d0d0d; font-weight: 600; }
.booking-time-placeholder {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 24px;
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
}

/* Step 2 — contact */
.booking-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}
.booking-summary-item { display: flex; flex-direction: column; gap: 4px; }
.booking-summary-key { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.booking-summary-val { font-size: 0.9rem; color: var(--text-primary); font-weight: 500; }
.booking-contact-form { display: flex; flex-direction: column; gap: 20px; }

/* Step 3 — confirm */
.booking-confirm { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 20px 0; }
.booking-confirm-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  animation: confirm-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
@keyframes confirm-pop { from { transform: scale(0); } to { transform: scale(1); } }
.booking-confirm-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--text-primary); }
.booking-confirm-text { font-size: 0.95rem; color: var(--text-secondary); max-width: 480px; line-height: 1.7; }
.booking-confirm-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

@media (max-width: 768px) {
  .booking-steps { gap: 0; }
  .booking-step-label { display: none; }
  .booking-step-line { width: 24px; margin: 0 6px; }
  .booking-date-grid { grid-template-columns: 1fr; }
  .booking-summary { grid-template-columns: 1fr; }
  .booking-step-content { padding: 24px; }
}
@media (max-width: 480px) {
  .booking-step-nav { flex-direction: column-reverse; gap: 12px; }
  .booking-step-nav .btn { width: 100%; justify-content: center; }
  .booking-categories { gap: 8px; }
  .booking-time-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-value { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.contact-info-link { font-size: 0.9rem; color: var(--accent); transition: opacity var(--transition); }
.contact-info-link:hover { opacity: 0.75; }
.contact-hours { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; font-size: 0.85rem; color: var(--text-secondary); margin-top: 4px; }

.contact-map-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: var(--accent);
}
.contact-map-placeholder p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }

.contact-form-wrapper { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.contact-form-title { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form.is-hidden { display: none; }

.contact-success {
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  animation: contact-success-in 0.3s ease;
}
.contact-success.is-visible { display: flex; }
@keyframes contact-success-in { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.contact-success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.contact-success h3 { font-family: var(--font-heading); font-size: 2rem; }
.contact-success p { font-size: 0.95rem; max-width: 380px; line-height: 1.7; }

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .contact-form-wrapper { padding: 24px; }
}
@media (max-width: 768px) {
  .form-row, .booking-summary, .contact-hours { grid-template-columns: 1fr; }
}

/* =====================================================================
   LEGAL PAGES
   ===================================================================== */
.legal-page { padding: 120px 0 80px; }
.legal-page h1 { margin-bottom: 12px; }
.legal-page .legal-stamp { color: var(--text-muted); font-size: 0.85rem; }
.legal-body { margin-top: 48px; display: flex; flex-direction: column; gap: 32px; }
.legal-section h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--text-primary); }
.legal-section h4 { font-size: 1.05rem; margin: 16px 0 8px; color: var(--text-primary); font-family: var(--font-body); font-weight: 600; letter-spacing: 0.05em; }
.legal-section p, .legal-section li { color: var(--text-secondary); line-height: 1.85; font-size: 0.97rem; }
.legal-section ul { list-style: disc; padding-left: 20px; display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.legal-section a { color: var(--accent); transition: opacity var(--transition); }
.legal-section a:hover { opacity: 0.75; }

/* =====================================================================
   RESPONSIVE — GLOBAL SECTION SPACING
   ===================================================================== */
@media (max-width: 1024px) {
  .home-services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .home-about-grid { gap: 48px; }
  .story-grid { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; --container-px: 20px; }
  .home-about-grid { grid-template-columns: 1fr; }
  .home-about-img-wrapper { display: none; }
  .home-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 200px); }
  .home-gallery-item.is-wide { grid-column: 1 / 3; }
}

@media (max-width: 600px) {
  .home-services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .home-gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .home-gallery-item { height: 180px; }
  .home-gallery-item.is-wide { grid-column: 1; }
}

@media (max-width: 480px) {
  :root { --section-py: 48px; --container-px: 16px; }
}

/* =====================================================================
   DYNAMISCHE FEATURES (Admin-gesteuert): Galerie-Fotos, Urlaubsbanner,
   Stellenanzeige + Scroll-Extras
   ===================================================================== */

/* ---- Galerie mit echten Fotos ---- */
.gallery-item.has-img .gallery-item-inner { overflow: hidden; border-radius: var(--radius-md); }
.gallery-item.has-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
}
.gallery-item.has-img:hover img { transform: scale(1.06); filter: brightness(1.05); }
.gallery-item.has-img .gallery-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent);
}

/* Lightbox mit echtem Foto */
.lightbox-img.has-img { aspect-ratio: auto; background: #000; max-height: 80vh; }
.lightbox-img.has-img img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.lightbox-img.has-img .lightbox-meta {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  left: 0; right: 0; bottom: 0;
  padding: 24px 16px 14px;
}

/* ---- Urlaubsbanner (fix oben) ---- */
.notice-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 250;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  background: linear-gradient(90deg, #b3914f, var(--accent), #b3914f);
  color: #141210;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.notice-banner svg { flex-shrink: 0; }
.notice-banner-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.has-notice .header { top: 40px; }
body.has-notice .mobile-menu { padding-top: 40px; }
@media (max-width: 600px) {
  .notice-banner { font-size: 0.7rem; }
}

/* ---- Stellenanzeige (CTA-Strip vor dem Footer) ---- */
.job-strip {
  padding: 56px 0;
  background:
    radial-gradient(ellipse at 15% 50%, var(--accent-dim), transparent 60%),
    var(--bg-secondary);
  border-top: 1px solid var(--border-accent);
  border-bottom: 1px solid var(--border);
}
.job-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.job-strip-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.job-strip-title {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  margin-bottom: 4px;
}
.job-strip-type {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  padding: 4px 14px;
  margin: 6px 0 10px;
}
.job-strip-desc {
  max-width: 560px;
  font-size: 0.95rem;
}
.job-strip-btn { flex-shrink: 0; }

/* ---- Scroll-Progress (dünne Goldlinie ganz oben) ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 400;
  pointer-events: none;
}
body.has-notice .scroll-progress { top: 40px; }

/* ---- Back-to-top Button ---- */
.to-top-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}
.to-top-btn.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top-btn:hover { background: var(--accent); color: #0d0d0d; transform: translateY(-3px); }

/* ---- Feinschliff: Button-Glanz & sanftere Karten ---- */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn-primary:hover::after { left: 130%; }

@media (prefers-reduced-motion: reduce) {
  .gallery-item.has-img img,
  .btn-primary::after { transition: none; }
}

/* ---- FAQ (termin.html) ---- */
.faq-section { padding-top: 0; }
.faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--border-accent); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  list-style: none;
  transition: color var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--accent); }
.faq-question svg { flex-shrink: 0; color: var(--accent); transition: transform var(--transition); }
.faq-item[open] .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  padding: 0 22px 20px;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ---- Header über dem Hero-Foto (Startseite) ----
   Solange nicht gescrollt, liegt der Header direkt auf dem Foto:
   dezenter dunkler Verlauf + heller Text, unabhängig vom Theme. */
.header-overlay:not(.is-scrolled) {
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.62), rgba(8, 8, 8, 0.28) 65%, transparent);
}
.header-overlay:not(.is-scrolled) .nav-link {
  color: rgba(240, 236, 228, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.header-overlay:not(.is-scrolled) .nav-link:hover,
.header-overlay:not(.is-scrolled) .nav-link.is-active { color: #ffffff; }
.header-overlay:not(.is-scrolled) .theme-btn {
  color: rgba(240, 236, 228, 0.9);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.25);
}
.header-overlay:not(.is-scrolled) .theme-btn:hover { color: var(--accent); border-color: var(--accent); }
.header-overlay:not(.is-scrolled) .menu-btn {
  color: rgba(240, 236, 228, 0.9);
  border-color: rgba(255, 255, 255, 0.28);
}

/* ---- Honeypot (Spam-Schutz): für Menschen unsichtbar, Bots füllen es aus ---- */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
