/* ── Lokal gehostete Schriften (DSGVO-konform, kein Aufruf an fonts.googleapis.com) ── */
@font-face {
 font-family: 'Cormorant Garamond';
 font-style: normal;
 font-weight: 300;
 font-display: swap;
 src: url('fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
}
@font-face {
 font-family: 'Cormorant Garamond';
 font-style: italic;
 font-weight: 300;
 font-display: swap;
 src: url('fonts/cormorant-garamond-v21-latin-300italic.woff2') format('woff2');
}
@font-face {
 font-family: 'Cormorant Garamond';
 font-style: normal;
 font-weight: 400;
 font-display: swap;
 src: url('fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
}
@font-face {
 font-family: 'Cormorant Garamond';
 font-style: normal;
 font-weight: 500;
 font-display: swap;
 src: url('fonts/cormorant-garamond-v21-latin-500.woff2') format('woff2');
}
@font-face {
 font-family: 'Montserrat';
 font-style: normal;
 font-weight: 300;
 font-display: swap;
 src: url('fonts/montserrat-v29-latin-300.woff2') format('woff2');
}
@font-face {
 font-family: 'Montserrat';
 font-style: normal;
 font-weight: 400;
 font-display: swap;
 src: url('fonts/montserrat-v29-latin-regular.woff2') format('woff2');
}
@font-face {
 font-family: 'Montserrat';
 font-style: normal;
 font-weight: 500;
 font-display: swap;
 src: url('fonts/montserrat-v29-latin-500.woff2') format('woff2');
}
@font-face {
 font-family: 'Montserrat';
 font-style: normal;
 font-weight: 600;
 font-display: swap;
 src: url('fonts/montserrat-v29-latin-600.woff2') format('woff2');
}

:root {
 /* ── Marken-Akzentfarbe (3 Abstufungen) - hier alles anpassen ── */
 --accent: #809671;        /* Aktueller Test-Ton: gedecktes Pink/Mauve - Hauptfarbe: Buttons, Rahmen, Icons, Trennlinien */
 --accent-dark: #947D43;   /* Aktueller Test-Ton: Oliv-Braun - Text/Überschriften-Labels */
 --accent-light: #C2153A;  /* Aktueller Test-Ton: Kräftiges Rot/Karmin - Fortschrittsbalken-Ende */
 
 /* ── Hero-Hintergrund (Startseite, großer Aufmacher-Bereich) - unabhängig von --accent ── */
 --hero-gradient-start: #7A8B8B; /* Verlaufsanfang oben links */
 --hero-gradient-mid: #B4CDCD;   /* Verlaufsmitte */
 --hero-gradient-end: #7A8B8B;   /* Verlaufsende unten rechts */

 /* ── Sonderfarben - bewusst unabhängig von der Akzentfarbe ── */
 --star-color: #f3b61f;      /* Gold-Gelb (Bewertungssterne ★★★★★, neutrales Google-Gelb) */
 --verified-color: #4caf50;  /* Kräftiges Grün ("✓ Beautinda-Eintrag"-Badge) */
 --warning-color: #a85c2a;   /* Orange-Braun (Hinweis-Boxen in der Preisliste, z.B. Altersbeschränkung) */
 --warning-bg: rgba(197, 120, 63, 0.08); /* Sehr helles, transparentes Orange (Hintergrund der Hinweis-Boxen) */

 /* ── Neutrale Grundfarben (Hintergrund, Text, Rahmen) ── */
 --bg-light: #fdfdfd;      /* Fast Weiß - Standard-Seitenhintergrund */
 --bg-cream: #E9F2F2;      /* Warmes Creme - Hintergrund z.B. Bewertungs-Sektion */
 --text-dark: #111111;     /* Fast Schwarz - Haupttextfarbe */
 --text-muted: #666666;    /* Mittelgrau - gedämpfter/sekundärer Text */
 --border-light: #f0ebe4;  /* Sehr helles Beige-Grau - dezente Trennlinien/Rahmen */
 --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);          /* Weicher, neutraler grauer Schatten */
 --shadow-accent: 0 10px 40px rgba(140, 161, 137, 0.15); /* Weicher Schatten (Grundton, unabhängig vom Akzent) */
 --radius-sm: 4px;
 --radius-md: 8px;
 --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
 scroll-behavior: smooth;
 width: 100%;
}

body {
 font-family: 'Montserrat', sans-serif;
 margin: 0;
 padding: 0;
 background-color: var(--bg-light);
 color: var(--text-dark);
 line-height: 1.8;
 letter-spacing: 0.3px;
 overflow-x: hidden;
 width: 100%;
 max-width: 100vw;
 -webkit-font-smoothing: antialiased;
}

::selection {
 background: rgba(140, 161, 137, 0.25);
 color: var(--text-dark);
}

h1, h2, h3, .logo-text {
 font-family: 'Cormorant Garamond', serif;
 font-weight: 300;
 text-transform: uppercase;
 letter-spacing: 2px;
 margin: 0;
 overflow-wrap: break-word;
 word-break: break-word;
 hyphens: auto;
}

img { max-width: 100%; height: auto; }

/* ── Header ── */
header {
 background: #ffffff;
 text-align: center;
 padding: 40px 20px 24px;
 border-bottom: 1px solid var(--border-light);
}

.logo-wrap { display: inline-block; margin-bottom: 5px; }
.logo-wrap a { display: inline-block; line-height: 0; }

.studio-logo {
 width: 420px;
 max-width: 100%;
 height: auto;
 display: block;
 margin: 0 auto;
 transition: opacity var(--transition);
}

.sub-bar {
 font-size: 11px;
 letter-spacing: 5px;
 color: var(--accent);
 text-transform: uppercase;
 margin-top: 12px;
 font-weight: 500;
}

/* ── Navigation ── */
.main-nav {
 background: rgba(255, 255, 255, 0.97);
 backdrop-filter: blur(12px);
 -webkit-backdrop-filter: blur(12px);
 border-bottom: 1px solid var(--border-light);
 padding: 18px 0;
 text-align: center;
 position: sticky;
 top: 0;
 z-index: 1000;
 box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
 transition: box-shadow var(--transition);
}

.nav-links {
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
 width: 100%;
 gap: 4px 0;
}

.nav-links a {
 text-decoration: none;
 color: var(--text-dark);
 font-size: 11px;
 text-transform: uppercase;
 letter-spacing: 3px;
 margin: 0 18px;
 padding: 6px 0;
 font-weight: 400;
 transition: color var(--transition);
 display: inline-block;
 position: relative;
}

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

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

.nav-links a:hover::after {
 width: 100%;
 left: 0;
}

.nav-links a.nav-active {
 color: var(--accent);
 font-weight: 600;
}

.nav-links a.nav-active::after {
 width: 100%;
 left: 0;
}

.menu-toggle { display: none; }

/* ── Hero Split-Screen ── */
.hero-split-screen {
 display: flex;
 width: 100%;
 min-height: 580px;
 height: 85vh;
 max-height: 700px;
 background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-mid) 45%, var(--hero-gradient-end) 100%);
 overflow: hidden;
}

.hero-text-panel {
 width: 50%;
 padding: 50px 40px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #ffffff;
 box-sizing: border-box;
}

.panel-content {
 max-width: 520px;
 width: 100%;
 animation: fadeUp 0.8s ease-out;
}

.brand-badge {
 height: 42px;
 width: auto;
 opacity: 0.8;
 margin: 2px 0 16px;
 display: block;
 filter: grayscale(15%);
}

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

.mini-title-light {
 font-size: 11px;
 text-transform: uppercase;
 letter-spacing: 5px;
 color: rgba(255, 255, 255, 0.85);
 margin-bottom: 18px;
 display: block;
 font-weight: 500;
}

.hero-text-panel h2,
.hero-title {
 font-size: clamp(26px, 3.5vw, 40px);
 font-family: 'Cormorant Garamond', serif;
 font-weight: 300;
 line-height: 1.25;
 margin-bottom: 28px;
 text-transform: uppercase;
 letter-spacing: 2px;
 color: #ffffff;
 word-break: keep-all;
 hyphens: none;
 text-align: left;
}

.heart-icon {
 width: 0.72em;
 height: 0.72em;
 vertical-align: -0.05em;
 color: var(--accent-light, #ffffff);
 margin: 0 2px;
}

.hero-text-panel p {
 font-size: 14.5px;
 font-weight: 300;
 color: rgba(255, 255, 255, 0.95);
 margin-bottom: 16px;
 line-height: 1.75;
}

.hero-image-panel {
 width: 50%;
 position: relative;
 height: 100%;
}

.hero-image-panel::after {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(to right, rgba(140, 161, 137, 0.15) 0%, transparent 40%);
 pointer-events: none;
 z-index: 2;
}

.hero-image-panel img {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 opacity: 0;
 transition: opacity 1.8s ease-in-out;
}

.hero-image-panel img.slide-active { opacity: 1; }

.slideshow-dots {
 position: absolute;
 bottom: 28px;
 left: 50%;
 transform: translateX(-50%);
 display: flex;
 gap: 14px;
 z-index: 10;
}

.dot {
 position: relative;
 width: 40px;
 height: 3px;
 background-color: rgba(255, 255, 255, 0.3);
 cursor: pointer;
 border-radius: 2px;
 padding: 10px 0;
 background-clip: content-box;
 box-sizing: content-box;
 overflow: hidden;
}

.dot::before {
 content: '';
 position: absolute;
 top: 10px;
 left: 0;
 width: 100%;
 height: 3px;
 border-radius: 2px;
 background-color: rgba(255, 255, 255, 0.3);
 transition: background-color 0.3s;
}

.dot:hover::before {
 background-color: rgba(255, 255, 255, 0.5);
}

.dot-fill {
 position: absolute;
 top: 10px;
 left: 0;
 height: 3px;
 width: 0%;
 border-radius: 2px;
 background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
 box-shadow: 0 0 6px rgba(140, 161, 137, 0.6);
}

.dot.active .dot-fill {
 animation: dotFill 5s linear forwards;
}

.dot.done .dot-fill {
 width: 100%;
}

@keyframes dotFill {
 from { width: 0%; }
 to   { width: 100%; }
}

/* ── Story / DALTON Section ── */
.full-width-story {
 display: flex;
 width: 100%;
 min-height: 520px;
 background: #ffffff;
 overflow: hidden;
 border-bottom: 1px solid var(--border-light);
}

.story-image-panel {
 width: 50%;
 height: 100%;
 min-height: 520px;
 overflow: hidden;
 position: relative;
}

.story-image-panel img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 6s ease;
}

.full-width-story:hover .story-image-panel img {
 transform: scale(1.04);
}

.dalton-slideshow .dalton-slide {
 position: absolute;
 top: 0;
 left: 0;
 opacity: 0;
 transition: opacity 1.2s ease, transform 6s ease;
 z-index: 1;
}

.dalton-slideshow .dalton-slide.dalton-slide-active {
 opacity: 1;
 z-index: 2;
}

.story-text-panel {
 width: 50%;
 padding: 50px 40px;
 display: flex;
 align-items: center;
 justify-content: center;
 box-sizing: border-box;
}

.mini-title {
 font-size: 11px;
 text-transform: uppercase;
 letter-spacing: 4px;
 color: var(--accent);
 display: block;
 margin-bottom: 16px;
 font-weight: 600;
}

.story-text-panel h2 {
 font-size: clamp(28px, 3vw, 38px);
 line-height: 1.25;
 margin-bottom: 24px;
}

.story-text-panel p {
 font-size: 14.5px;
 font-weight: 300;
 color: #333;
 margin-bottom: 18px;
 line-height: 1.75;
}

/* ── Instagram Grid ── */
.full-width-insta-section {
 text-align: center;
 padding: 80px 0 0;
 background-color: var(--bg-light);
}

.full-width-insta-section h2 { font-size: 34px; margin-bottom: 15px; }

.section-sub {
 font-size: 14px;
 font-weight: 300;
 color: var(--text-muted);
 margin-bottom: 40px;
 padding: 0 20px;
}

.modern-insta-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 width: 100%;
 gap: 0;
}

.insta-grid-item {
 overflow: hidden;
}

.insta-grid-item img {
 width: 100%;
 height: 320px;
 object-fit: cover;
 border-radius: 0;
 transition: transform 0.6s ease, filter 0.4s ease;
 display: block;
}

.insta-grid-item:hover img {
 transform: scale(1.06);
 filter: brightness(0.92);
}

/* ── Homepage Gallery ── */
.home-gallery {
 padding: 0;
 background-color: var(--bg-light);
 clear: both;
 margin: 0;
}

.home-gallery-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 width: 100%;
 gap: 0;
}

.home-gallery-item {
 overflow: hidden;
 position: relative;
}

/* ── Standort-Sektion (Startseite) ── */
.location-section {
 text-align: center;
 padding: 90px 40px;
 background-color: var(--bg-light);
}

.location-section h2 {
 font-size: clamp(26px, 3.5vw, 36px);
 margin: 10px 0 18px;
}

.wip-section {
 min-height: 60vh;
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 padding: 80px 20px;
 background-color: var(--bg-light);
}

.wip-content {
 max-width: 560px;
}

.wip-content h2 {
 font-size: clamp(26px, 4vw, 36px);
 margin: 10px 0 18px;
}

.wip-content p {
 font-family: 'Montserrat', sans-serif;
 font-weight: 300;
 font-size: 15px;
 color: var(--text-muted);
 line-height: 1.7;
 margin-bottom: 36px;
}

.wip-buttons {
 display: flex;
 flex-wrap: wrap;
 gap: 20px;
 justify-content: center;
 align-items: center;
}

.location-address {
 display: inline-block;
 font-family: 'Montserrat', sans-serif;
 font-size: 14px;
 font-weight: 500;
 color: var(--text-dark);
 text-decoration: underline;
 text-underline-offset: 3px;
 margin-bottom: 36px;
 transition: color var(--transition);
}

.location-address:hover { color: var(--accent); }

.map-placeholder {
 display: block;
 position: relative;
 max-width: 900px;
 height: 340px;
 margin: 0 auto;
 border-radius: var(--radius-md);
 overflow: hidden;
 border: 1px solid var(--border-light);
 cursor: pointer;
}

.map-static-img {
 display: block;
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform var(--transition);
}

.map-placeholder:hover .map-static-img { transform: scale(1.03); }

.map-static-overlay {
 position: absolute;
 inset: 0;
 display: flex;
 align-items: center;
 justify-content: center;
 background: rgba(17, 17, 17, 0.12);
 color: #fff;
 font-family: 'Montserrat', sans-serif;
 font-size: 14px;
 font-weight: 500;
 letter-spacing: 0.5px;
 text-shadow: 0 1px 4px rgba(0,0,0,0.5);
 opacity: 1;
 transition: background var(--transition);
}

.map-placeholder:hover .map-static-overlay {
 background: rgba(17, 17, 17, 0.35);
}

.map-container {
 max-width: 900px;
 height: 340px;
 margin: 0 auto;
 border-radius: var(--radius-md);
 overflow: hidden;
 border: 1px solid var(--border-light);
}

.map-attribution {
 max-width: 900px;
 margin: 10px auto 0;
 text-align: right;
 font-size: 10.5px;
 color: var(--text-muted);
}

.map-attribution a { color: var(--text-muted); text-decoration: underline; }

@media (max-width: 600px) {
 .location-section { padding: 60px 20px; }
 .map-placeholder, .map-container { height: 260px; }
}

.home-gallery-item img {
 width: 100%;
 height: 340px;
 object-fit: cover;
 display: block;
 transition: transform 0.7s ease;
}

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

.home-gallery-item::after {
 content: '';
 position: absolute;
 inset: 0;
 background: rgba(140, 161, 137, 0);
 transition: background 0.4s ease;
 pointer-events: none;
}

.home-gallery-item:hover::after {
 background: rgba(140, 161, 137, 0.08);
}

/* ── Page Layout ── */
.wrapper-single {
 max-width: 800px;
 margin: 0 auto;
 padding: 60px 20px;
 clear: both;
}

.page-header {
 text-align: center;
 margin-bottom: 48px;
}

.page-header h2 {
 font-family: 'Cormorant Garamond', serif;
 font-size: clamp(26px, 4vw, 34px);
 font-weight: 300;
 text-transform: uppercase;
 letter-spacing: 2px;
 color: var(--text-dark);
 margin-bottom: 16px;
}

.gold-divider {
 width: 50px;
 height: 2px;
 background: linear-gradient(90deg, transparent, var(--accent), transparent);
 margin: 0 auto 24px;
}

.page-header p {
 font-size: 14.5px;
 font-weight: 300;
 color: var(--text-muted);
 line-height: 1.8;
 max-width: 620px;
 margin: 0 auto;
}

.section-block h2 {
 font-size: 32px;
 margin-bottom: 25px;
 padding-bottom: 15px;
}

/* ── Price List ── */
.cat-title {
 font-size: 12px;
 text-transform: uppercase;
 letter-spacing: 3px;
 color: var(--accent);
 margin: 48px 0 22px;
 font-weight: 600;
 border-bottom: 2px solid var(--accent);
 padding-bottom: 8px;
 display: inline-block;
}

.item {
 display: flex;
 justify-content: space-between;
 align-items: baseline;
 margin-bottom: 6px;
 font-size: 14.5px;
 font-weight: 500;
 padding: 8px 0;
 padding-left: 15px;
 transition: background var(--transition);
 border-radius: var(--radius-sm);
}

.item > span:first-child {
 min-width: 0;
 overflow-wrap: break-word;
 word-break: break-word;
}

.item:hover {
 background: rgba(140, 161, 137, 0.04);
 padding-left: 8px;
 padding-right: 8px;
 margin-left: -8px;
 margin-right: -8px;
}

.dots {
 flex-grow: 1;
 border-bottom: 1px dashed #ddd;
 margin: 0 15px;
 min-width: 20px;
}

.val {
 font-weight: 600;
 color: var(--accent-dark);
 white-space: nowrap;
}

.desc {
 font-size: 13px;
 color: var(--text-muted);
 margin-bottom: 8px;
 font-weight: 300;
 padding-left: 15px;
}

.item-duration {
 color: var(--text-muted);
 font-weight: 300;
 font-size: 12px;
 margin-left: 5px;
}

/* ── Aufklappbare Behandlungsdetails (wie bei Beautinda), reines HTML/CSS ── */
.treatment-details {
 padding-left: 15px;
 margin-bottom: 22px;
}

.treatment-details summary {
 list-style: none;
 cursor: pointer;
 display: inline-flex;
 align-items: center;
 gap: 5px;
 font-size: 12.5px;
 font-weight: 500;
 color: var(--accent-dark);
 letter-spacing: 0.3px;
 padding: 2px 0;
}

.treatment-details summary::-webkit-details-marker { display: none; }

.treatment-details summary::before {
 content: '+';
 display: inline-block;
 width: 14px;
 height: 14px;
 font-size: 13px;
 line-height: 14px;
 text-align: center;
 border: 1px solid var(--accent);
 border-radius: 50%;
 transition: transform var(--transition);
}

.treatment-details[open] summary::before {
 content: '\2212';
 transform: rotate(180deg);
}

.treatment-details summary:hover { color: var(--accent); }

.treatment-details-content {
 margin-top: 10px;
 padding: 14px 16px;
 background: rgba(140, 161, 137, 0.06);
 border-left: 2px solid var(--accent);
 border-radius: var(--radius-sm);
 font-size: 13px;
 color: #444;
 font-weight: 300;
 line-height: 1.7;
}

.treatment-details-content strong {
 color: var(--text-dark);
 font-weight: 500;
}

.treatment-details-content .detail-note {
 color: var(--warning-color);
 background: var(--warning-bg);
 padding: 8px 10px;
 border-radius: var(--radius-sm);
 font-size: 12.5px;
}

.treatment-details-content .detail-note em {
 font-style: normal;
}

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

/* ── About / Story ── */
.modern-container { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }

.story-section { display: flex; align-items: center; gap: 60px; }

.story-text { width: 50%; }

.story-image { width: 50%; }

.story-image img,
.story-image img[src*="valentina.jpg"] {
 width: 100%;
 max-width: 420px;
 aspect-ratio: 1 / 1;
 object-fit: cover;
 border-radius: 50% !important;
 display: block;
 margin: 0 auto;
 box-shadow: var(--shadow-accent);
 border: 3px solid rgba(140, 161, 137, 0.15);
 transition: transform var(--transition), box-shadow var(--transition);
}

.story-image img:hover {
 transform: scale(1.02);
 box-shadow: 0 16px 48px rgba(140, 161, 137, 0.18);
}

.responsive-story {
 display: flex;
 flex-direction: row;
 align-items: center;
 gap: 60px;
 max-width: 1200px;
 margin: 0 auto;
 padding: 60px 20px;
 clear: both;
}

.story-text-block { flex: 1; }

.watermark-bg {
 position: relative;
 z-index: 0;
}

.watermark-img {
 position: absolute;
 top: 50%;
 right: -40px;
 transform: translateY(-50%);
 height: 130%;
 width: auto;
 opacity: 0.06;
 z-index: -1;
 pointer-events: none;
 user-select: none;
}

.story-text-block h2 {
 font-size: clamp(28px, 3vw, 36px);
 margin-bottom: 24px;
}

.story-text-block p {
 font-size: 14.5px;
 font-weight: 300;
 color: #333;
 line-height: 1.8;
 margin-bottom: 16px;
}

.story-image-block { flex: 1; }

/* ── Legal Content ── */
.legal-content p {
 font-size: 14.5px;
 line-height: 1.8;
 font-weight: 300;
 color: #333;
 margin-bottom: 16px;
 overflow-wrap: break-word;
 word-break: break-word;
}

.legal-content p strong { font-weight: 500; color: var(--text-dark); }

.legal-content h3 {
 font-family: 'Montserrat', sans-serif;
 font-size: 16px;
 font-weight: 500;
 margin: 32px 0 14px;
 color: var(--text-dark);
 text-transform: none;
 letter-spacing: 0.5px;
 overflow-wrap: break-word;
 word-break: break-word;
}

.legal-content strong {
 overflow-wrap: break-word;
 word-break: break-word;
}

.legal-content a {
 color: var(--accent-dark);
 text-decoration: underline;
 transition: color var(--transition);
}

.legal-content a:hover { color: var(--accent); }

.legal-section { margin-bottom: 60px; }

/* ── Forms ── */
.form-group { margin-bottom: 22px; }

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

.form-group label {
 display: block;
 margin-bottom: 8px;
 font-weight: 500;
 font-size: 11px;
 text-transform: uppercase;
 letter-spacing: 1.5px;
 color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
 width: 100%;
 padding: 14px 16px;
 border: 1px solid #ddd;
 border-radius: var(--radius-sm);
 box-sizing: border-box;
 font-family: inherit;
 font-size: 14px;
 background: #fff;
 transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
 outline: none;
 border-color: var(--accent);
 box-shadow: 0 0 0 3px rgba(140, 161, 137, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
 color: #aaa;
 font-weight: 300;
}

.form-group textarea { min-height: 140px; resize: vertical; }

/* ── Buttons ── */
.btn-submit {
 display: block;
 background-color: var(--text-dark);
 color: #ffffff;
 padding: 18px;
 border: none;
 border-radius: var(--radius-sm);
 width: 100%;
 font-weight: 500;
 text-transform: uppercase;
 letter-spacing: 3px;
 cursor: pointer;
 font-size: 12px;
 transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-submit:hover {
 background-color: var(--accent);
 transform: translateY(-1px);
 box-shadow: var(--shadow-accent);
}

.btn-modern-dark {
 display: inline-block;
 background: var(--text-dark);
 color: #ffffff;
 padding: 16px 36px;
 text-decoration: none;
 text-transform: uppercase;
 letter-spacing: 3px;
 font-size: 11px;
 font-weight: 500;
 border-radius: var(--radius-sm);
 transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
 margin-top: 15px;
}

.btn-modern-dark:hover {
 background: var(--accent);
 transform: translateY(-2px);
 box-shadow: var(--shadow-accent);
}

.btn-modern-light {
 display: inline-block;
 background: #ffffff;
 color: var(--text-dark);
 padding: 16px 36px;
 text-decoration: none;
 text-transform: uppercase;
 letter-spacing: 3px;
 font-size: 11px;
 font-weight: 500;
 border-radius: var(--radius-sm);
 transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-modern-light:hover {
 background: var(--bg-cream);
 transform: translateY(-2px);
 box-shadow: var(--shadow-soft);
}

.btn-text-link {
 display: inline-block;
 color: var(--text-dark);
 text-decoration: none;
 text-transform: uppercase;
 letter-spacing: 2px;
 font-size: 11px;
 font-weight: 600;
 border-bottom: 2px solid var(--accent);
 padding-bottom: 4px;
 margin-top: 18px;
 transition: color var(--transition), border-color var(--transition);
}

.btn-text-link:hover {
 color: var(--accent);
 border-color: var(--accent-dark);
}

/* ── Opening Hours ── */
.hours {
 list-style: none;
 padding: 0;
 margin: 0;
 font-size: 14px;
 font-weight: 300;
 background: #fff;
 border-radius: var(--radius-md);
 border: 1px solid var(--border-light);
 overflow: hidden;
}

.hours li {
 display: flex;
 justify-content: space-between;
 padding: 14px 20px;
 border-bottom: 1px solid var(--border-light);
 transition: background var(--transition);
}

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

.hours li:hover { background: rgba(140, 161, 137, 0.04); }

.hours li span:last-child {
 font-weight: 500;
 color: var(--accent-dark);
}

/* ── Reviews ── */
.google-reviews-section {
 text-align: center;
 padding: 90px 40px;
 background-color: var(--bg-cream);
 border-bottom: 1px solid var(--border-light);
}

.google-reviews-section h2 {
 font-size: clamp(28px, 3.5vw, 36px);
 margin-bottom: 50px;
}

.reviews-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
 max-width: 1200px;
 margin: 0 auto;
}

.reviews-slider {
 display: flex;
 justify-content: center;
 gap: 30px;
 max-width: 1100px;
 margin: 0 auto;
 flex-wrap: wrap;
}

.review-card,
.reviews-slider .review-card-dynamic {
 background: #ffffff;
 padding: 36px 30px;
 border-radius: var(--radius-md);
 box-shadow: var(--shadow-soft);
 border: 1px solid rgba(140, 161, 137, 0.1);
 text-align: left;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover,
.reviews-slider .review-card-dynamic:hover {
 transform: translateY(-4px);
 box-shadow: var(--shadow-accent);
}

.reviews-slider .review-card-dynamic {
 flex: 1;
 min-width: 280px;
 max-width: 500px;
 opacity: 1;
 transition: opacity 0.6s ease-in-out, transform var(--transition), box-shadow var(--transition);
}

.google-stars {
 color: var(--star-color);
 font-size: 18px;
 margin-bottom: 16px;
 letter-spacing: 3px;
}

.review-text {
 font-size: 13.5px;
 font-weight: 300;
 color: #333;
 line-height: 1.75;
 margin: 0 0 24px;
 font-style: italic;
 min-height: 70px;
}

.review-text-empty {
 color: var(--text-muted);
 opacity: 0.8;
}

.review-treatment {
 display: inline-block;
 font-size: 11px;
 font-weight: 600;
 letter-spacing: 0.5px;
 text-transform: uppercase;
 color: var(--accent-dark);
 background: rgba(140, 161, 137, 0.1);
 padding: 4px 10px;
 border-radius: 20px;
 margin-bottom: 10px;
}

.review-author {
 font-size: 13px;
 font-weight: 600;
 color: var(--text-dark);
 letter-spacing: 0.5px;
}

.badge-verified {
 display: block;
 font-size: 10px;
 color: var(--verified-color);
 font-weight: 400;
 margin-top: 5px;
 text-transform: uppercase;
 letter-spacing: 1px;
}

.reviews-summary {
 text-align: center;
 color: var(--text-muted);
 font-size: 14px;
 margin-bottom: 50px;
 letter-spacing: 0.5px;
}

.reviews-summary strong { color: var(--text-dark); }

/* ── Footer ── */
footer {
 background: var(--bg-cream);
 color: #222;
 text-align: center;
 padding: 56px 20px 48px;
 font-size: 13px;
 font-weight: 300;
 letter-spacing: 0.5px;
 border-top: 1px solid #e2dacd;
}

footer a {
 color: var(--accent-dark);
 text-decoration: none;
 font-weight: 500;
 transition: color var(--transition);
}

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

.footer-social {
 margin-bottom: 24px;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-wrap: wrap;
 row-gap: 10px;
 column-gap: 26px;
}

.footer-social a {
 font-size: 13px;
 letter-spacing: 1px;
 display: inline-flex;
 align-items: center;
 gap: 8px;
 white-space: nowrap;
}

.footer-links {
 font-size: 12px;
 margin-bottom: 16px;
}

.footer-links a { margin: 0 10px; }

.footer-hours {
 font-size: 12px;
 opacity: 0.85;
 margin-bottom: 16px;
 color: #555;
 font-weight: 400;
}

.footer-contact {
 color: #222;
 font-weight: 400;
}

.footer-contact a {
 color: #222;
 text-decoration: none;
 font-weight: 600;
}

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

/* ── Termin CTA Box ── */
.cta-box {
 text-align: center;
 background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 100%);
 border: 1px solid var(--border-light);
 border-radius: var(--radius-md);
 padding: 48px 32px;
 margin-bottom: 48px;
}

.cta-box p {
 font-size: 14.5px;
 font-weight: 300;
 color: #444;
 max-width: 560px;
 margin: 0 auto 24px;
 line-height: 1.75;
}

/* ── Mobile ── */
@media (max-width: 900px) {
 .main-nav {
  padding: 14px 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
 }

 .menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
 }

 .menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
  border-radius: 1px;
 }

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

/* Suchen Sie diese Stelle in Ihrer style.css (ca. Zeile 31) */
.nav-links {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100vh;
 background: rgba(255, 255, 255, 0.98);
 backdrop-filter: blur(16px);
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 transform: translateY(-100%);
 transition: transform 0.45s cubic-bezier(0.1, 1, 0.1, 1);
 z-index: 1050;
 gap: 0;
 visibility: hidden; /* <-- DIESE ZEILE NEU HINZUFÜGEN */
}

/* Direkt darunter bei der active-Klasse */
.nav-links.active { 
 transform: translateY(0); 
 visibility: visible; /* <-- DIESE ZEILE NEU HINZUFÜGEN */
}


 .nav-links a {
  display: block;
  margin: 18px 0;
  font-size: 15px;
  letter-spacing: 2px;
 }

 header { padding: 32px 20px 20px; }
 .studio-logo { width: 260px; }

 .hero-split-screen {
  flex-direction: column;
  height: auto;
  min-height: auto;
  max-height: none;
 }

 .hero-text-panel { width: 100%; padding: 44px 24px; }
 .hero-text-panel h2, .hero-title { font-size: 26px; }
 .hero-image-panel { width: 100%; height: 320px; }
 .hero-image-panel::after { background: linear-gradient(to top, rgba(197,160,89,0.2) 0%, transparent 30%); }

 .full-width-story { flex-direction: column; min-height: auto; }
 .story-image-panel { width: 100%; height: 280px; min-height: 280px; }
 .story-text-panel { width: 100%; padding: 44px 24px; }
 .story-text-panel h2 { font-size: 26px; }

 .full-width-insta-section { padding: 48px 0 0; }
 .full-width-insta-section h2 { font-size: 26px; }
 .modern-insta-grid { grid-template-columns: repeat(2, 1fr); }
 .insta-grid-item img { height: 180px; }

 .home-gallery-grid { grid-template-columns: 1fr; }
 .home-gallery-item img { height: 240px; }

 .google-reviews-section { padding: 60px 20px; }
 .google-reviews-section h2 { font-size: 26px; margin-bottom: 32px; }
 .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
 .review-card { padding: 28px 22px; }

 .story-section { flex-direction: column; gap: 36px; }
 .story-text, .story-image { width: 100%; }
 .story-image img { width: 280px; max-width: 100%; aspect-ratio: 1 / 1; }

 .responsive-story {
  flex-direction: column-reverse;
  gap: 32px;
  padding: 40px 20px;
 }

 .story-text-block, .story-image-block {
  width: 100%;
  text-align: center;
 }

 .form-row { grid-template-columns: 1fr; }
 .wrapper-single { padding: 44px 20px; }
}
/* Zwischenüberschriften im Behandlungsmenü (z.B. "Pure Skin", "Eyecatcher") */
.subcat-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 45px;
    margin-bottom: 15px;
    border-left: 2px solid var(--accent);
    padding-left: 10px;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}
/* Hauptkategorien (z.B. Gesichts- & Körperbehandlungen) deutlich vergrößern */
.cat-title {
    font-size: 18px !important;         /* Deutlich größer für klare Hierarchie (vorher 12px) */
    font-weight: 600 !important;        /* Kräftigerer Schnitt */
    letter-spacing: 4px !important;     /* Zieht die Buchstaben für den High-End-Look noch edler auseinander */
    margin: 60px 0 30px 0 !important;   /* Mehr Abstand nach oben zum nächsten großen Block */
    padding-bottom: 12px !important;    /* Etwas mehr Luft zur goldenen Unterlinie */
    display: block !important;          /* Sorgt dafür, dass die Unterlinie sauber über die Breite geht */
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    hyphens: auto !important;
    max-width: 100% !important;
}


/* Globale, absolut identische Ausrichtung aller Hauptüberschriften */
.wrapper-single h2,
.page-header h2,
.section-block h2,
h2.title-global {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(22px, 6vw, 32px) !important;  /* Schrumpft auf schmalen Screens statt starr 32px zu bleiben */
    font-weight: 300 !important;           /* Überall der feine, grazil-schlanke Look */
    text-transform: uppercase !important;   /* Einheitlich in Großbuchstaben */
    letter-spacing: 2px !important;       /* Perfekter, edler Zeichenabstand */
    color: #111111 !important;            /* Identischer, tiefer Schwarzton */
    margin: 0 auto 12px auto !important;  /* Vereinheitlicht den Abstand nach unten */
    padding: 0 !important;
    text-align: center !important;
    line-height: 1.2 !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    hyphens: auto !important;
    max-width: 100% !important;
}

/* Vereinheitlichung der goldenen Trennlinien */
.gold-divider {
    width: 50px !important;
    height: 2px !important;
    background-color: var(--accent, #8CA189) !important;
    margin: 14px auto 30px auto !important; /* Exakt gleicher Abstand zum Text darunter */
}

/* Vereinheitlichung des oberen Abstands (Verhindert das Höhen-Springen) */
.wrapper-single {
    padding-top: 50px !important; /* Setzt den Startpunkt auf jeder Seite exakt gleich hoch an */
}


