/*
Theme Name: WANES Hair & Beauty
Theme URI: https://wanes-hairbeauty.de
Author: WANES Hair & Beauty
Description: Maßgeschneidertes Theme für WANES Hair & Beauty – Friseursalon Gronau (Westfalen)
Version: 1.0.1
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wanes
*/

/* =============================================
   CSS VARIABLES & RESET
   ============================================= */
:root {
  --black: #0D0D0D;
  --off-black: #141414;
  --charcoal: #1C1A18;
  --white: #FAF8F5;
  --beige: #C8B89A;
  --beige-light: #EDE5D8;
  --beige-dark: #9A8268;
  --grey: #999;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* =============================================
   CUSTOM CURSOR
   ============================================= */
.cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--beige); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border: 1px solid rgba(200,184,154,0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transition: all 0.3s; transform: translate(-50%, -50%);
}

/* =============================================
   NAVIGATION
   ============================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: linear-gradient(to bottom, rgba(13,13,13,0.97), transparent);
  transition: background 0.4s;
}
.nav-logo,
.nav-logo .custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}
nav.scrolled {
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(10px);
}
.nav-logo img,
.nav-logo .custom-logo {
  height: 38px !important;
  width: auto !important;
  max-width: 160px !important;
  filter: invert(1);
  object-fit: contain;
  vertical-align: middle;
  display: inline-block;
}
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  color: var(--beige-light); text-decoration: none;
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  opacity: 0.8; transition: opacity 0.3s, color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--beige); transition: width 0.3s;
}
.nav-links a:hover { opacity: 1; color: var(--beige); }
.nav-links a:hover::after { width: 100%; }
.nav-btn {
  background: transparent; border: 1px solid var(--beige);
  color: var(--beige); padding: 10px 24px;
  font-family: 'Jost', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  cursor: none; transition: all 0.3s;
}
.nav-btn:hover { background: var(--beige); color: var(--black); }

/* Language Switcher */
.nav-right {
  display: flex; align-items: center; gap: 20px;
}
.lang-switcher {
  display: flex; align-items: center; gap: 6px;
}
.lang-divider {
  color: var(--beige); opacity: 0.4; font-size: 0.75rem;
}
.lang-btn {
  background: none; border: none; cursor: none;
  color: var(--beige-light); font-family: 'Jost', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.5; transition: opacity 0.3s, color 0.3s; padding: 2px 0;
}
.lang-btn:hover { opacity: 1; color: var(--beige); }
.lang-btn--active { opacity: 1; color: var(--beige); border-bottom: 1px solid var(--beige); }
.mobile-lang-switcher {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  padding-bottom: 16px; border-bottom: 1px solid rgba(212,196,177,0.15); margin-bottom: 8px;
}
.mobile-lang-switcher .lang-btn {
  font-size: 0.75rem; opacity: 0.6;
}
.mobile-lang-switcher .lang-btn--active { opacity: 1; }

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  height: 100vh; position: relative;
  display: flex; align-items: center; overflow: hidden;
}
#hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.38; z-index: 0; pointer-events: none;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 65% 50%, rgba(200,184,154,0.07) 0%, transparent 60%),
    linear-gradient(135deg, rgba(13,13,13,0.7) 0%, rgba(19,18,16,0.6) 50%, rgba(13,13,13,0.7) 100%);
}
.hero-lines {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(200,184,154,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,184,154,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-ornament {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  width: 400px; height: 400px;
  border: 1px solid rgba(200,184,154,0.18); border-radius: 50%;
  z-index: 1; animation: rotateOrn 30s linear infinite;
}
.hero-ornament::before {
  content: ''; position: absolute; inset: 30px;
  border: 1px solid rgba(200,184,154,0.1); border-radius: 50%;
  animation: rotateOrn 20s linear infinite reverse;
}
@keyframes rotateOrn { to { transform: translateY(-50%) rotate(360deg); } }

.hero-content {
  position: relative; z-index: 2;
  padding-left: 10%; max-width: 680px;
}
.hero-eyebrow {
  font-size: 0.8rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--beige); margin-bottom: 32px;
  opacity: 0; animation: fadeUp 1s ease 0.3s forwards;
}
.hero-eyebrow::before {
  content: ''; display: inline-block; width: 40px; height: 1px;
  background: var(--beige); vertical-align: middle; margin-right: 16px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300; line-height: 0.95;
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 1s ease 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--beige); }
.hero-sub {
  font-size: 1rem; line-height: 2;
  color: rgba(250,248,245,0.65); letter-spacing: 0.05em;
  max-width: 420px; margin-bottom: 48px;
  opacity: 0; animation: fadeUp 1s ease 0.7s forwards;
}
.hero-ctas {
  display: flex; gap: 20px; align-items: center;
  opacity: 0; animation: fadeUp 1s ease 0.9s forwards;
}
.btn-primary {
  background: var(--beige); color: var(--black); border: none;
  padding: 16px 44px; font-family: 'Jost', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover {
  background: var(--beige-light); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,184,154,0.3);
}
.btn-ghost {
  color: var(--beige-light); border: 1px solid rgba(200,184,154,0.3);
  padding: 16px 36px; font-family: 'Jost', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
  text-decoration: none; display: inline-block;
}
.btn-ghost:hover { border-color: var(--beige); color: var(--beige); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  opacity: 0; animation: fadeUp 1s ease 1.2s forwards;
}
.hero-scroll span {
  font-size: 0.6rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--grey);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--beige), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* =============================================
   GENERAL SECTIONS
   ============================================= */
section { padding: 120px 10%; }
.section-label {
  font-size: 0.72rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--beige); margin-bottom: 20px;
  display: flex; align-items: center; gap: 16px;
}
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--beige); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--beige); }
.divider {
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--beige), transparent);
  margin-bottom: 60px;
}

/* =============================================
   ÜBER UNS SECTION
   ============================================= */
#ueber { background: var(--beige-light); padding: 100px 10%; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-text .section-label { color: rgba(13,13,13,0.5); }
.about-text .section-label::before { background: rgba(13,13,13,0.3); }
.about-text .section-title { color: var(--black); }
.about-text .section-title em { color: var(--beige-dark); }
.about-text .divider { background: linear-gradient(to right, var(--beige-dark), transparent); }
.about-text p { font-size: 1.05rem; line-height: 2; color: rgba(13,13,13,0.65); margin-bottom: 24px; }
.about-text p strong { color: var(--black); font-weight: 400; }
.about-cards { display: flex; flex-direction: column; gap: 20px; }
.meister-card { background: var(--black); color: var(--white); padding: 40px 48px; }
.meister-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem; font-weight: 300; color: var(--beige); line-height: 1;
}
.meister-label {
  font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--beige-dark); margin-top: 8px;
}
.service-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.service-card { background: white; border: 1px solid rgba(200,184,154,0.35); padding: 22px 20px; }
.service-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--black); line-height: 1; }
.service-card-sub { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--beige-dark); margin-top: 5px; }

/* =============================================
   GALERIE SECTION
   ============================================= */
#galerie { background: var(--off-black); }
.gallery-intro {
  display: block;
  margin-bottom: 70px;
}
.gallery-intro p {
  font-size: 1rem; line-height: 1.9;
  color: rgba(250,248,245,0.5); max-width: 520px;
  margin-top: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 320px 240px;
  gap: 12px;
}
.gallery-item { position: relative; overflow: hidden; background: var(--charcoal); }
.gallery-item:first-child { grid-row: span 2; }
.gp {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #1a1a14, #201e14, #161610);
  transition: transform 0.6s;
}
.gallery-item:hover .gp { transform: scale(1.05); }
.gp svg { opacity: 0.18; color: var(--beige); }
.gp-label { font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(200,184,154,0.4); }
.gover {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 24px;
}
.gallery-item:hover .gover { opacity: 1; }
.gover span { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--beige-light); }

/* Gallery with real images */
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Brand-Items in der Galerie (Logos) */
.gallery-item--brand { background: #fff; }
.gallery-item--brand img {
  object-fit: contain; padding: 24px;
  transition: transform 0.4s;
}
.gallery-item--brand:hover img { transform: scale(1.03); }

/* =============================================
   PREISE SECTION
   ============================================= */
#preise { background: #F2EDE6; position: relative; overflow: hidden; }
#preise::before {
  content: 'WANES'; position: absolute;
  font-family: 'Bebas Neue', 'Cormorant Garamond', serif;
  font-size: 16rem; font-weight: 400; color: rgba(13,13,13,0.05);
  right: -1%; top: 50%; transform: translateY(-50%); pointer-events: none;
  letter-spacing: 0.05em;
}
.price-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.price-sidebar { position: sticky; top: 120px; }
.price-sidebar .section-label { color: var(--beige-dark); }
.price-sidebar .section-label::before { background: var(--beige-dark); }
.price-sidebar .section-title { color: var(--black); }
.price-sidebar .section-title em { color: var(--beige-dark); }
.price-sidebar .divider { background: linear-gradient(to right, var(--beige-dark), transparent); }
.price-sidebar p { font-size: 0.98rem; line-height: 1.9; color: rgba(13,13,13,0.5); margin-top: 24px; }
.price-sidebar-main-img {
  margin-top: 36px; overflow: hidden; border-radius: 2px;
}
.price-sidebar-main-img img {
  width: 100%; height: auto; display: block; object-fit: cover;
  transition: transform 0.4s ease;
}
.price-sidebar-main-img:hover img { transform: scale(1.03); }
.price-categories { display: flex; flex-direction: column; gap: 48px; }
.price-category h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-style: italic; color: var(--black);
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(13,13,13,0.12);
}
.price-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid rgba(13,13,13,0.07);
  transition: all 0.3s; position: relative;
}
.price-item:hover { padding-left: 10px; }
.price-item::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%) scaleX(0);
  width: 3px; height: 70%; background: var(--beige-dark);
  transition: transform 0.3s;
}
.price-item:hover::before { transform: translateY(-50%) scaleX(1); }
.price-name { font-size: 0.95rem; letter-spacing: 0.05em; color: rgba(13,13,13,0.75); }
.price-name small { display: block; font-size: 0.8rem; color: rgba(13,13,13,0.38); margin-top: 3px; }
.price-value { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--beige-dark); white-space: nowrap; }

/* =============================================
   TERMIN SECTION
   ============================================= */
#termin { background: linear-gradient(to bottom, var(--off-black), var(--charcoal)); }
.booking-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.booking-info p { font-size: 1rem; line-height: 1.9; color: rgba(250,248,245,0.45); margin-bottom: 48px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  font-size: 0.92rem; color: rgba(250,248,245,0.6); letter-spacing: 0.05em;
}
.contact-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,184,154,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--beige); flex-shrink: 0;
}
.booking-cta-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(200,184,154,0.12);
  padding: 64px 48px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: 32px;
}
.booking-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; color: var(--beige-light); margin-bottom: 4px;
}
.booking-cta-sub { font-size: 0.88rem; line-height: 1.9; color: rgba(250,248,245,0.4); max-width: 320px; }
.booking-cta-note { font-size: 0.7rem; color: rgba(250,248,245,0.22); letter-spacing: 0.05em; }

/* =============================================
   BRAND LOGOS (in Preiskategorien)
   ============================================= */
.price-cat-header {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 8px; margin-bottom: 4px;
}
.price-brand-logo {
  max-width: 140px; width: auto; height: auto;
  object-fit: contain; opacity: 0.55;
  background: none; border: none; box-shadow: none;
  transition: opacity 0.3s;
}
.price-brand-logo:hover { opacity: 0.8; }
/* Mounir: schwarzes Logo → invertieren auf dunklem Hintergrund */
.price-brand-logo--invert { filter: invert(1); }
.price-brand-note {
  font-size: 0.78rem; font-style: italic; font-weight: 300;
  color: rgba(250,248,245,0.28); line-height: 1.7;
  margin: 0 0 16px;
}

/* =============================================
   KONTAKT FORMULAR SECTION
   ============================================= */
#kontakt { background: var(--beige-light); padding: 0; overflow: hidden; }

.kontakt-wrapper {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

/* Linkes dunkles Panel */
.kontakt-panel {
  background: #1C1510;
  padding: 80px 8% 80px 10%;
  display: flex; flex-direction: column; justify-content: center;
}
.kontakt-panel .section-label { color: var(--beige); }
.kontakt-panel .section-label::before { background: var(--beige); }

.kontakt-panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 300; line-height: 1.05;
  color: var(--white); margin: 16px 0 48px;
}
.kontakt-panel-title em { font-style: italic; color: var(--beige); }

.kontakt-panel-items { display: flex; flex-direction: column; gap: 32px; }
.kontakt-panel-item { display: flex; align-items: flex-start; gap: 18px; }
.kontakt-panel-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid rgba(200,184,154,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--beige);
}
.kontakt-panel-label {
  font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--beige); margin-bottom: 6px;
}
.kontakt-panel-value {
  font-size: 0.82rem; color: rgba(250,248,245,0.55);
  line-height: 1.7; text-decoration: none; transition: color 0.3s;
}
a.kontakt-panel-value:hover { color: var(--beige); }

/* Rechte weiße Karte */
.kontakt-card {
  background: #fff;
  padding: 60px 48px;
  margin: 48px -20px 48px 20px;
  box-shadow: -8px 0 60px rgba(0,0,0,0.1), 20px 0 60px rgba(0,0,0,0.06);
  position: relative; z-index: 2;
  align-self: center;
}
.kontakt-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 300; font-style: italic;
  letter-spacing: 0.02em;
  color: var(--black); margin-bottom: 32px;
}

/* Form Fields (auf weißem Hintergrund) */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 4px; }
.kontakt-card .form-group input,
.kontakt-card .form-group textarea {
  background: transparent;
  border: none; border-bottom: 1px solid rgba(13,13,13,0.18);
  color: var(--black); font-family: 'Jost', sans-serif;
  font-size: 0.95rem; font-weight: 300; letter-spacing: 0.03em;
  padding: 14px 2px; outline: none;
  transition: border-color 0.3s;
  width: 100%; margin-bottom: 20px;
}
.kontakt-card .form-group input::placeholder,
.kontakt-card .form-group textarea::placeholder { color: rgba(13,13,13,0.3); }
.kontakt-card .form-group input:focus,
.kontakt-card .form-group textarea:focus { border-bottom-color: var(--beige-dark); }
.kontakt-card .form-group textarea { resize: none; min-height: 90px; }

.kontakt-submit {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black); padding: 12px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; margin-top: 8px;
}
.kontakt-submit:hover { background: var(--black); color: #fff; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--black);
  border-top: 1px solid rgba(200,184,154,0.1);
  padding: 72px 10% 60px;
  display: grid; grid-template-columns: 1.4fr 1.2fr 1.2fr 0.8fr;
  gap: 48px; align-items: start;
}
.footer-logo img,
.footer-logo .custom-logo {
  height: 32px !important;
  width: auto !important;
  max-width: 140px !important;
  filter: invert(1);
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}
.footer-logo small { display: block; font-size: 0.6rem; letter-spacing: 0.35em; color: var(--grey); text-transform: uppercase; }

.footer-heading {
  font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--beige); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.footer-heading::before { content: ''; width: 20px; height: 1px; background: var(--beige); flex-shrink: 0; }

.footer-contact-list,
.footer-hours-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.78rem; color: rgba(255,255,255,0.38); line-height: 1.6;
}
.footer-contact-list li svg { color: var(--beige); flex-shrink: 0; margin-top: 2px; opacity: 0.7; }
.footer-contact-list a { color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.3s; }
.footer-contact-list a:hover { color: var(--beige); }

.footer-hours-list li {
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-hours-list li:last-child { border-bottom: none; }
.footer-hours-list li span:first-child { color: rgba(255,255,255,0.5); }

.footer-col--links { display: flex; flex-direction: column; gap: 12px; }
.footer-col--links a {
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
  text-decoration: none; transition: color 0.3s; letter-spacing: 0.05em;
}
.footer-col--links a:hover { color: var(--beige); }
.footer-divider-line { width: 100%; height: 1px; background: rgba(255,255,255,0.07); margin: 6px 0; }

.footer-bottom {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 10%;
  text-align: center; font-size: 0.65rem;
  color: rgba(255,255,255,0.15); letter-spacing: 0.15em;
}

/* =============================================
   REVEAL ANIMATION
   ============================================= */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* =============================================
   HAMBURGER MENÜ
   ============================================= */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px;
  z-index: 200;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--beige-light);
  transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Fullscreen Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 150;
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(16px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 40px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.mobile-nav-close:hover { opacity: 1; }

.mobile-nav.is-open {
  opacity: 1; pointer-events: all;
}
.mobile-nav ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 32px; }
.mobile-nav ul a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 7vw, 3rem);
  color: var(--beige-light); text-decoration: none; font-style: italic;
  font-weight: 300; letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-nav ul a:hover { color: var(--beige); }
.mobile-nav-cta { margin-top: 8px; text-align: center; }

/* =============================================
   RESPONSIVE – TABLET (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
  nav { padding: 18px 32px; }
  .nav-btn { display: none; }
  .nav-links { gap: 24px; }
  .about-grid { gap: 48px; }
  .price-layout { gap: 48px; }
  .booking-layout { gap: 48px; }
  .booking-cta-box { padding: 48px 32px; }
}

/* =============================================
   RESPONSIVE – MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {
  /* Cursor ausblenden auf Touch */
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .lang-btn { cursor: pointer; }

  /* Nav */
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-btn { display: none; }
  .lang-switcher { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav { display: flex; }

  /* Hero */
  #hero { min-height: 100svh; align-items: flex-end; padding-bottom: 100px; }
  .hero-content { padding: 0 20px; max-width: 100%; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { width: 100%; text-align: center; padding: 16px 20px; }
  .hero-ornament { display: none; }
  .hero-scroll { display: none; }

  /* Sections */
  section { padding: 72px 20px; }
  #ueber { padding: 72px 20px; }
  #galerie { padding: 72px 20px; }
  #preise { padding: 72px 20px; }
  #termin { padding: 72px 20px; }

  /* Über uns */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-cards { align-items: stretch; width: 100%; align-self: stretch; justify-self: stretch; }
  .meister-card { padding: 28px 24px; width: 100%; max-width: 100%; text-align: center; box-sizing: border-box; }
  .service-cards { grid-template-columns: 1fr 1fr 1fr; width: 100%; max-width: 100%; }
  .service-card { text-align: center; }

  /* Galerie */
  .gallery-intro { margin-bottom: 40px; }
  .gallery-intro p { max-width: 100%; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .gallery-item:first-child { grid-row: span 1; }

  /* Preise */
  .price-layout { grid-template-columns: 1fr; gap: 40px; }
  .price-sidebar { position: static; }
  .price-item { flex-wrap: wrap; gap: 4px; }
  .price-value { margin-left: auto; }
  #preise::before { display: none; }

  /* Termin */
  .booking-layout { grid-template-columns: 1fr; gap: 40px; }
  .booking-cta-box { padding: 36px 20px; }
  .booking-info p { margin-bottom: 32px; }

  /* Brand-Logos in Preiskategorien */
  .price-cat-header { align-items: center; }
  .price-brand-logo { max-width: 120px; }

  /* Kontakt */
  .kontakt-wrapper { grid-template-columns: 1fr; }
  .kontakt-panel { padding: 60px 20px; }
  .kontakt-card { margin: 0; padding: 40px 20px; box-shadow: none; }
  .form-row { grid-template-columns: 1fr; }
  .kontakt-submit { width: 100%; text-align: center; }

  /* Footer */
  footer {
    grid-template-columns: 1fr;
    gap: 40px; padding: 48px 20px;
    align-items: center; text-align: center;
  }
  /* Reihenfolge: Logo, Öffnungszeiten, Kontakt, Navigation */
  .footer-logo { order: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
  footer .footer-col:nth-child(3) { order: 2; } /* Öffnungszeiten */
  footer .footer-col:nth-child(2) { order: 3; } /* Kontakt */
  .footer-col--links { order: 4; text-align: center; align-items: center; }

  /* Öffnungszeiten zentriert */
  .footer-hours-list li { justify-content: center; gap: 24px; }
  /* Kontakt zentriert */
  .footer-contact-list li { justify-content: center; }
  /* Heading-Linie zentriert */
  .footer-heading { justify-content: center; }
  .footer-bottom { padding: 16px 20px; }
}

/* =============================================
   RESPONSIVE – SMALL MOBILE (max 420px)
   ============================================= */
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { min-height: 220px; }
  .service-cards { grid-template-columns: 1fr; }
  .meister-card { padding: 24px 20px; }
  .booking-cta-box { padding: 28px 16px; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
  footer { grid-template-columns: 1fr; }
  .footer-logo { grid-column: span 1; }
  .footer-col--links { grid-column: span 1; }
}

/* =============================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================= */
.legal-hero {
  background: var(--black);
  padding: 120px 10% 60px;
  border-bottom: 1px solid rgba(200,184,154,0.1);
}
.legal-hero-inner { max-width: 760px; }
.legal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; color: var(--white);
  margin: 16px 0 24px; line-height: 1.1;
}
.legal-content { background: var(--charcoal); padding: 72px 10% 80px; }
.legal-inner {
  max-width: 760px;
  color: rgba(250,248,245,0.6);
  font-size: 0.88rem; line-height: 1.9;
}
.legal-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400;
  color: var(--beige); margin: 48px 0 14px;
  letter-spacing: 0.02em;
}
.legal-inner h2:first-child { margin-top: 0; }
.legal-inner h3 {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; font-weight: 400;
  color: var(--beige-light); margin: 24px 0 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.legal-inner p { margin-bottom: 14px; }
.legal-inner a { color: var(--beige); text-decoration: none; transition: opacity 0.2s; }
.legal-inner a:hover { opacity: 0.7; }
.legal-inner strong { color: rgba(250,248,245,0.85); font-weight: 400; }
.legal-list {
  list-style: none; margin: 12px 0 16px 0; padding: 0;
}
.legal-list li {
  padding: 6px 0 6px 20px; position: relative;
  border-bottom: 1px solid rgba(200,184,154,0.08);
}
.legal-list li::before {
  content: '–'; position: absolute; left: 0;
  color: var(--beige); opacity: 0.7;
}
.legal-important {
  color: var(--beige); font-family: 'Jost', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  vertical-align: middle; margin-left: 8px;
}
.legal-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif; font-size: 0.55rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--black); background: var(--beige);
  padding: 2px 8px; border-radius: 2px;
  vertical-align: middle; margin-left: 10px;
  font-weight: 500;
}
.legal-back { max-width: 760px; margin-top: 52px; }
@media (max-width: 768px) {
  .legal-hero { padding: 100px 20px 40px; }
  .legal-content { padding: 48px 20px 60px; }
}

