/* ===== Kosmetikstudio Basel – Shared Stylesheet ===== */
/* Fonts werden direkt im HTML <head> via <link preconnect> + <link preload> geladen (schneller als @import) */

:root {
  --black: #000000;
  --white: #ffffff;
  --cream: #f3e9d4;
  --gold: #c9a96e;
  --gold-dark: #a8874d;
  --text: #2b2b2b;
  --muted: #767676;
  --line: rgba(201, 169, 110, 0.3);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.75;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: 'Montserrat', 'Raleway', sans-serif; }
h1 { font-family: 'Raleway', sans-serif; }
.hero h1, .page-hero h1 { font-family: 'Playfair Display', Georgia, serif; }
.hero h1 em, .page-hero h1 em { font-family: 'Playfair Display', Georgia, serif; font-style: italic; }
a { color: var(--gold-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }

/* ===== Accessibility: Skip Link ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--black);
  color: var(--gold);
  padding: 0.8rem 1.5rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  z-index: 200;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0.5rem;
}

/* ===== Accessibility: Screen Reader Only ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Accessibility: Focus Styles ===== */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ===== Top Bar ===== */
.topbar {
  background: var(--black);
  color: #ccc;
  font-size: 0.8rem;
  padding: 0.6rem 1.5rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.topbar a { color: var(--gold); margin: 0 0.8rem; }

/* ===== Header ===== */
header {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold);
  z-index: 100;
}
.nav {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.brand-lockup {
  text-decoration: none;
  line-height: 1.1;
}
.brand-lockup strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
}
.brand-lockup span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===== Brand Showcase (centered logo section) ===== */
.brand-showcase {
  background: var(--black);
  padding: 5rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.brand-showcase img {
  max-height: 260px;
  width: auto;
  margin: 0 auto 1.5rem;
  display: block;
}
.brand-showcase .tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: nowrap;
}
nav a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  font-weight: 400;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
nav a:hover, nav a.active {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}

/* ===== Sub-Menü (Leistungen Dropdown) ===== */
.has-submenu { position: relative; }
.has-submenu > a::after {
  content: '▾';
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 0.7em;
  color: var(--gold);
  transition: transform 0.2s;
}
.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: -0.5rem;
  background: var(--black);
  border: 1px solid var(--gold);
  min-width: 240px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  z-index: 110;
}
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.has-submenu:hover > a::after { transform: rotate(180deg); }
.submenu li { display: block; }
.submenu a {
  display: block;
  padding: 0.75rem 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: none !important;
  white-space: nowrap;
}
.submenu a:hover {
  background: rgba(201, 169, 110, 0.1);
  color: var(--gold);
}

/* ===== Header CTA Buttons ===== */
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.2rem;
}
.header-cta a {
  padding: 0.55rem 1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--gold);
  transition: all 0.2s;
  white-space: nowrap;
  border-radius: 2px;
}
.header-cta .cta-call {
  background: transparent;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.header-cta .cta-call::before {
  content: '✆';
  font-size: 1.1em;
}
.header-cta .cta-call:hover {
  background: var(--gold);
  color: var(--black);
}
.header-cta .cta-book {
  background: var(--gold);
  color: var(--black);
}
.header-cta .cta-book:hover {
  background: transparent;
  color: var(--gold-dark);
}

/* ===== Language Switcher ===== */
.lang-switch {
  display: inline-flex;
  gap: 0.3rem;
  margin-left: 1.8rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(201, 169, 110, 0.3);
  align-items: center;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lang-switch a {
  color: #aaa;
  padding: 2px 6px;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.lang-switch a.active {
  color: var(--gold);
  border-color: var(--gold);
}
.lang-switch a:hover { color: var(--gold); }
.lang-switch .sep { color: #555; }

/* ===== Hamburger ===== */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--gold); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--gold); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 85vh;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 100%),
    url('bilder/gesichtsmaske-kosmetikstudio-basel.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
  color: var(--white);
}
.hero-inner { max-width: 780px; }
.hero-eyebrow {
  display: inline-block;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 2.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gold);
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2.2rem;
  letter-spacing: 0.02em;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0.5rem 0 2.8rem;
  padding: 0.7rem 1.4rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 169, 110, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.hero-reviews-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
}
.hero-reviews-text {
  color: #e8e0cc;
  font-family: 'Open Sans', sans-serif;
}
.hero-reviews-text strong { color: var(--white); font-weight: 600; }
.hero-reviews-text em {
  font-style: normal;
  color: #bfb195;
  font-size: 0.78rem;
  margin-left: 0.2rem;
}
@media (max-width: 600px) {
  .hero-reviews {
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.7rem 1rem;
  }
  .hero-reviews-text { font-size: 0.78rem; text-align: center; }
}
.hero p {
  font-size: 1.1rem;
  color: #e8e8e8;
  max-width: 620px;
  margin: 0 auto 2.2rem;
  font-weight: 300;
  line-height: 1.75;
}

/* ===== Blog ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(201, 169, 110, 0.18);
  border-color: var(--gold);
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.8rem 1.8rem 2rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
}
.blog-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.blog-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.2rem;
}
.blog-card-more {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

/* ===== Blog Article ===== */
.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.article-meta {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}
.article-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--black);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.article-lead {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-dark);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.article-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--black);
  margin: 2.5rem 0 1rem;
  text-align: left;
}
.article-content h2::after { display: none; }
.article-content p {
  color: #444;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.article-content ul, .article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.article-content li {
  color: #444;
  margin-bottom: 0.5rem;
  line-height: 1.8;
}
.article-content strong { color: var(--black); }
.article-content a { color: var(--gold-dark); border-bottom: 1px solid var(--gold); }
.article-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1.1rem;
}
.article-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin: 0 auto 2.5rem;
  border: 1px solid var(--line);
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
  background: var(--cream);
  padding: 0.9rem 1.5rem;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--line);
}
.breadcrumbs ol {
  max-width: 1300px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  padding: 0;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  color: var(--muted);
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.05em;
}
.breadcrumbs li:not(:last-child)::after {
  content: '›';
  color: var(--gold);
  margin-left: 0.5rem;
  font-size: 1.1em;
}
.breadcrumbs a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs li[aria-current="page"] {
  color: var(--black);
  font-weight: 500;
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 6rem 1.5rem 5rem;
}
.page-hero .hero-eyebrow { margin-bottom: 1.2rem; }
.page-hero h1 {
  font-family: 'Montserrat', 'Raleway', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { color: #ddd; max-width: 620px; margin: 1rem auto 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--gold);
  transition: all 0.3s;
  cursor: pointer;
  font-family: inherit;
}
.btn:hover { background: transparent; color: var(--gold); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  margin-left: 0.8rem;
}
.btn-outline:hover { background: var(--white); color: var(--black); }

/* ===== Sections ===== */
section { padding: 6rem 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 4rem; }
.eyebrow {
  display: inline-block;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
h2 {
  font-family: 'Montserrat', 'Raleway', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1.2;
}
h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem auto 0;
}
.section-head p {
  color: var(--muted);
  max-width: 620px;
  margin: 1.5rem auto 0;
  font-size: 1rem;
}

/* ===== About ===== */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h3 {
  font-family: 'Montserrat', 'Raleway', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 1.2rem;
}
.about-text p { margin-bottom: 1rem; color: #444; }
.about-sig {
  margin-top: 1.5rem;
  font-family: 'Montserrat', 'Raleway', sans-serif;
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1.1rem;
}
.about-img {
  aspect-ratio: 4/5;
  background: var(--cream);
  border: 1px solid var(--gold);
  box-shadow: 20px 20px 0 -5px var(--gold);
}

/* ===== Services Overview ===== */
.services-overview { background: var(--black); color: var(--white); }
.services-overview h2 { color: var(--white); }
.services-overview .eyebrow { color: var(--gold); }
.services-overview .section-head p { color: #bbb; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: transparent;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201, 169, 110, 0.25);
  transition: all 0.3s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-card h3 { color: var(--white); }
.service-card p { color: #999; }
.service-card:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.06);
  transform: translateY(-5px);
}
.service-card .icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-family: 'Montserrat', 'Raleway', sans-serif;
  font-size: 1.4rem;
}
.service-card h3 {
  font-family: 'Montserrat', 'Raleway', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.service-card p { color: #999; font-size: 0.92rem; }

/* ===== Pricing ===== */
.pricing { background: var(--cream); }
.price-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.tab {
  padding: 0.7rem 1.4rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s;
  font-family: inherit;
}
.tab:hover { border-color: var(--gold); }
.tab.active {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}
.price-panel { display: none; }
.price-panel.active { display: block; animation: fade 0.4s; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.price-category { max-width: 820px; margin: 0 auto 2.5rem; }
.price-category h3 {
  font-family: 'Montserrat', 'Raleway', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold-dark);
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.9rem 0;
  gap: 1rem;
}
.price-item + .price-item { border-top: 1px dashed rgba(0,0,0,0.08); }
.price-item .name { font-weight: 500; color: var(--black); }
.price-item .desc { display: block; font-size: 0.82rem; color: var(--muted); font-weight: 400; margin-top: 2px; }
.price-item .dots {
  flex: 1;
  border-bottom: 1px dotted #ccc;
  margin: 0 0.6rem;
  min-width: 20px;
  transform: translateY(-4px);
}
.price-item .price { color: var(--gold-dark); font-weight: 600; white-space: nowrap; }
.price-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2rem;
  font-style: italic;
}

/* ===== Brands ===== */
.brands { background: var(--white); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
}
.brand {
  aspect-ratio: 2/1;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: all 0.3s;
  text-align: center;
}
.brand:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201,169,110,0.15);
}
.brand span {
  font-family: 'Montserrat', 'Raleway', sans-serif;
  font-size: 1.1rem;
  color: var(--black);
  letter-spacing: 0.03em;
}
.brand small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===== Service Image Cards ===== */
.service-img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-img-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.3s;
}
.service-img-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(201,169,110,0.15);
}
.service-img-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-img-card:hover img { transform: scale(1.05); }
.service-img-body { padding: 1.8rem 1.5rem; }
.service-img-body h3 {
  font-family: 'Montserrat', 'Raleway', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.6rem;
}
.service-img-body p { color: #555; font-size: 0.92rem; line-height: 1.6; }

/* ===== Brand Detail Rows ===== */
.brand-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
}
.brand-detail:last-child { border-bottom: none; }
.brand-detail.reverse { grid-template-columns: 2fr 1fr; }
.brand-detail.reverse .brand-logo { order: 2; }
.brand-detail.reverse .brand-info { order: 1; }
.brand-logo {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}
.brand-logo img {
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
}
.brand-info h3 {
  font-family: 'Montserrat', 'Raleway', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.brand-info .brand-tag {
  color: var(--gold-dark);
  font-family: 'Montserrat', 'Raleway', sans-serif;
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.brand-info p:not(.brand-tag) { color: #555; font-size: 1rem; }
@media (max-width: 800px) {
  .brand-detail, .brand-detail.reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
  }
  .brand-detail.reverse .brand-logo { order: 0; }
  .brand-detail.reverse .brand-info { order: 0; }
}

/* ===== Brand Cards with Logos ===== */
.brand-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.brand-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border: 1px solid var(--line);
  text-align: center;
  transition: all 0.3s;
}
.brand-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(201,169,110,0.15);
}
.brand-card img {
  max-height: 70px;
  width: auto;
  margin: 0 auto 1.5rem;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s;
}
.brand-card:hover img { filter: grayscale(0); }
.brand-card p {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== Contact ===== */
.contact { background: var(--black); color: var(--white); }
.contact h2 { color: var(--white); }
.contact .eyebrow { color: var(--gold); }
.contact .section-head p { color: #bbb; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-item {
  text-align: center;
  padding: 2.8rem 1.8rem 2.4rem;
  border-top: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.35s ease;
  position: relative;
}
.contact-item:hover {
  background: rgba(201, 169, 110, 0.07);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.contact-item .contact-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  color: var(--gold);
  transition: all 0.3s;
}
.contact-item:hover .contact-icon {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.05);
}
.contact-item .contact-icon svg { width: 24px; height: 24px; }
.contact-item h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.contact-item .contact-sub {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.contact-item p { color: #ccc; font-size: 0.92rem; line-height: 1.75; }
.contact-item a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.contact-item a:hover { color: var(--white); border-bottom-color: var(--gold); }
.contact-item strong { color: var(--white); font-weight: 500; }
.contact-cta { text-align: center; margin-top: 3.5rem; }

/* ===== Footer ===== */
footer {
  background: #000000;
  color: #888;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}
footer .foot-logo {
  margin-bottom: 1.2rem;
}
footer .foot-logo img {
  max-height: 130px;
  width: auto;
  margin: 0 auto;
  display: block;
}
footer .foot-seo {
  max-width: 780px;
  margin: 1.5rem auto 0;
  font-size: 0.72rem;
  color: #666;
  line-height: 1.7;
}
footer .foot-seo strong { color: #999; }
footer p { margin-bottom: 0.4rem; }
footer a { color: #aaa; }
footer a:hover { color: var(--gold); }
.socials { margin: 1.2rem 0; }
.socials a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid #333;
  border-radius: 6px;
  line-height: 38px;
  margin: 0 0.3rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.socials a:hover { border-color: var(--gold); background: var(--gold); color: var(--black); }

/* ===== Responsive / Hamburger ===== */
@media (max-width: 900px) {
  .hamburger { display: block; }
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--black);
    padding: 6rem 2rem 3rem;
    transition: right 0.35s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  nav::-webkit-scrollbar { width: 6px; }
  nav::-webkit-scrollbar-track { background: transparent; }
  nav::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
  nav.open { right: 0; }
  nav ul { flex-direction: column; gap: 1.5rem; }
  nav a {
    color: var(--white);
    font-size: 0.95rem;
    letter-spacing: 0.15em;
  }
  nav a:hover, nav a.active { color: var(--gold); border-bottom-color: var(--gold); }

  /* Submenu im Hamburger: immer sichtbar, eingerückt */
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0.5rem 0 0.5rem 1rem;
    border-left: 1px solid rgba(201, 169, 110, 0.3);
    margin-top: 0.5rem;
  }
  .submenu a {
    color: #bbb;
    padding: 0.5rem 0;
    font-size: 0.78rem;
  }
  .submenu a:hover { background: transparent; color: var(--gold); }
  .has-submenu > a::after { display: none; }
  .brand-lockup img { height: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img { aspect-ratio: 3/2; max-height: 300px; box-shadow: 10px 10px 0 -3px var(--gold); }

  /* Header CTAs im Mobile-Nav */
  .header-cta {
    flex-direction: column;
    gap: 0.8rem;
    margin-left: 0;
    margin-top: 2rem;
    width: 100%;
  }
  .header-cta a {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1rem;
    font-size: 0.78rem;
  }
  /* Sprach-Switcher deutlich abgesetzt im Mobile-Menü */
  .lang-switch {
    margin-left: 0;
    margin-top: 2rem;
    padding-left: 0;
    padding-top: 1.5rem;
    border-left: none;
    border-top: 1px solid rgba(201, 169, 110, 0.3);
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 700px) {
  section { padding: 4rem 1.2rem; }
  .btn-outline { margin-left: 0; margin-top: 0.8rem; }
  .hero { min-height: 70vh; padding: 4rem 1.2rem; }
}

/* ===== EFZ Badge ===== */
.efz-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: rgba(201, 169, 110, 0.08);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.efz-badge::before {
  content: '✓';
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}
.efz-badge.light {
  background: var(--white);
  color: var(--gold-dark);
  border-color: var(--gold);
}
.efz-badge.light::before { background: var(--gold-dark); color: var(--white); }
.hero .efz-badge { margin-bottom: 2.5rem; }
.hero-cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.hero-cta .btn-outline { margin-left: 0; margin-top: 0; }
@media (max-width: 600px) {
  .hero-cta { flex-direction: column; gap: 0.8rem; width: 100%; }
  .hero-cta .btn { width: 100%; max-width: 280px; }
}

/* ===== Treatment Details ===== */
.treatment-section { background: var(--white); }
.treatment-section + .treatment-section { padding-top: 0; }
.treatment-category {
  max-width: 1000px;
  margin: 0 auto 4rem;
}
.treatment-category-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold-dark);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.treatment-category-sub {
  text-align: center;
  color: var(--muted);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
.treatment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 1.5rem;
}
.treatment-item {
  background: var(--white);
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  transition: all 0.25s;
}
.treatment-item:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(201, 169, 110, 0.12);
}
.treatment-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}
.treatment-head h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
  flex: 1;
  min-width: 200px;
}
.treatment-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
}
.treatment-meta {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.treatment-item p {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.65;
}
.treatment-note {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 1.5rem 1.8rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  font-size: 0.88rem;
  color: #555;
}
.treatment-note strong { color: var(--black); }

/* ===== Tech Info Block (BT Nano, Pro Power Peel) ===== */
.tech-info {
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 2.2rem 2.4rem;
  background: var(--black);
  color: #d8d8d8;
  border: 1px solid var(--gold);
  border-left-width: 4px;
}
.tech-info h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  margin: 0 0 1.2rem;
  letter-spacing: 0.01em;
}
.tech-info p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0 0 1rem;
  color: #d8d8d8;
}
.tech-info p:last-child { margin-bottom: 0; }
.tech-info strong { color: var(--white); font-weight: 600; }
.tech-info em { color: var(--gold); font-style: italic; }
.tech-info ul {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 1.2rem;
}
.tech-info li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.4rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #d8d8d8;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.tech-info li:last-child { border-bottom: none; }
.tech-info li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0.55rem;
  color: var(--gold);
  font-size: 0.7rem;
}
.tech-info-why {
  margin-top: 1.5rem !important;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(201,169,110,0.3);
  font-size: 0.95rem;
  color: #eae0cc !important;
}
.tech-info-why strong { color: var(--gold); }
@media (max-width: 720px) {
  .tech-info { padding: 1.6rem 1.4rem; }
  .tech-info h4 { font-size: 1.15rem; }
}

/* ===== Footer Credit (Mighty Empowerment) ===== */
.footer-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin: 2rem auto 0;
  padding: 1.4rem 1.5rem 0.5rem;
  max-width: 420px;
  border-top: 1px solid rgba(201, 169, 110, 0.18);
}
.footer-credit-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  color: #777;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-credit-link {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold) !important;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.25s, letter-spacing 0.25s;
}
.footer-credit-link:hover {
  color: var(--white) !important;
  letter-spacing: 0.06em;
}
.footer-credit-tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.72rem;
  color: #8a8a8a;
  font-style: italic;
  letter-spacing: 0.02em;
  margin-top: 0.15rem;
}

/* ===== Contact Form ===== */
.contact-form-section { background: var(--white); }
.contact-form {
  max-width: 780px;
  margin: 3rem auto 0;
  padding: 2.5rem 2.8rem;
  background: var(--cream);
  border: 1px solid var(--gold);
  box-shadow: 14px 14px 0 -3px var(--gold);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.contact-form .form-field { margin-bottom: 1.5rem; }
.contact-form label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  margin-bottom: 0.6rem;
}
.contact-form .optional {
  color: var(--muted);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.78rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .form-privacy {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
}
.contact-form .form-privacy label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0;
  cursor: pointer;
}
.contact-form .form-privacy input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--gold-dark);
  flex-shrink: 0;
}
.contact-form .form-submit {
  text-align: center;
  margin-top: 2rem;
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media (max-width: 700px) {
  .contact-form { padding: 1.8rem 1.4rem; box-shadow: 8px 8px 0 -2px var(--gold); }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ===== Studio Gallery (Über uns) ===== */
.studio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}
.studio-gallery-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 12px 12px 0 -3px var(--gold);
  background: var(--white);
  transition: transform 0.35s ease;
}
.studio-gallery-item:hover {
  transform: translateY(-4px);
}
.studio-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
  image-orientation: from-image;
}
.studio-gallery-item figcaption {
  padding: 1rem 1.2rem;
  background: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--black);
  text-align: center;
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) {
  .studio-gallery { grid-template-columns: 1fr; gap: 2rem; max-width: 500px; }
  .studio-gallery-item { box-shadow: 8px 8px 0 -2px var(--gold); }
  .studio-gallery-item img { aspect-ratio: 4 / 5; }
}

/* ===== Skin Conditions Grid ===== */
.skin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.skin-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.skin-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(201,169,110,0.18);
}
.skin-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.skin-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.skin-card:hover .skin-card-img img { transform: scale(1.05); }
.skin-card-inner {
  padding: 2rem 1.8rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.skin-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
}
.skin-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.3rem;
  padding-right: 3.5rem;
}
.skin-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-dark);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.skin-body { flex: 1; margin-bottom: 1.5rem; }
.skin-body p {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.skin-body strong { color: var(--black); }
.skin-cta {
  display: inline-block;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  font-weight: 600;
  transition: color 0.2s;
}
.skin-cta:hover { color: var(--gold); }

/* ===== FAQ Accordion ===== */
.faq { background: var(--white); }
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 1.6rem 3rem 1.6rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item.open .faq-question { color: var(--gold-dark); }
.faq-item.open .faq-question::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 0 1.6rem 0;
}
.faq-answer strong { color: var(--black); }
.faq-answer a { color: var(--gold-dark); }

/* ===== Legal Pages ===== */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.legal h2 {
  font-family: 'Montserrat', 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-dark);
  margin: 2.5rem 0 1rem;
  text-align: left;
}
.legal h2::after { display: none; }
.legal h2:first-of-type { margin-top: 1rem; }
.legal p, .legal li { color: #444; margin-bottom: 0.8rem; font-size: 0.95rem; line-height: 1.75; }
.legal ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal strong { color: var(--black); }
.legal a { color: var(--gold-dark); }

/* ===== Footer Legal Links ===== */
.footer-legal {
  margin-top: 1rem;
  font-size: 0.78rem;
}
.footer-legal a {
  color: #888;
  margin: 0 0.6rem;
}
.footer-legal a:hover { color: var(--gold); }

/* ===== Directions Cards ===== */
.directions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.direction-card {
  background: var(--white);
  padding: 2.5rem 2rem 2rem;
  border-top: 3px solid var(--gold);
  position: relative;
  transition: all 0.3s;
}
.direction-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(201, 169, 110, 0.18);
}
.direction-card .direction-icon {
  width: 54px;
  height: 54px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold-dark);
  background: var(--cream);
}
.direction-card .direction-icon svg {
  width: 26px;
  height: 26px;
}
.direction-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--black);
  margin-bottom: 0.3rem;
}
.direction-card .direction-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.2rem;
  display: block;
}
.direction-card p {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.75;
}
.direction-card p strong { color: var(--black); }
.direction-card p + p { margin-top: 0.8rem; }

/* ===== Custom Map Marker ===== */
.custom-marker { background: none !important; border: none !important; }
.marker-inner {
  width: 70px;
  height: 70px;
  background: var(--black);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  position: relative;
}
.marker-inner::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 14px solid var(--gold);
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.35));
}
.marker-inner img {
  width: 62%;
  height: auto;
  display: block;
}
.leaflet-popup-content-wrapper {
  border-radius: 0 !important;
  border: 1px solid var(--gold);
  font-family: 'Open Sans', Arial, sans-serif;
}
.leaflet-popup-content { font-size: 0.9rem; line-height: 1.5; }
.leaflet-popup-content strong {
  font-family: 'Montserrat', sans-serif;
  color: var(--gold-dark);
  font-size: 1rem;
}

/* ===== Newsletter ===== */
.newsletter-section {
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.newsletter-section h2 { color: var(--white); }
.newsletter-section .eyebrow { color: var(--gold); }
.newsletter-section .section-head p { color: #bbb; }
.newsletter-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 1rem 1.2rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
}
.newsletter-form input[type="email"]::placeholder { color: #888; }
.newsletter-form input[type="email"]:focus {
  background: rgba(201,169,110,0.08);
}
.newsletter-form button { flex-shrink: 0; border: none; cursor: pointer; }
.newsletter-check {
  max-width: 560px;
  margin: 1.2rem auto 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: #bbb;
  text-align: left;
}
.newsletter-check input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--gold);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.newsletter-check a { color: var(--gold); }

/* ===== Voucher Form ===== */
.voucher-form-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  max-width: 680px;
  margin: 0 auto;
}
.voucher-form-card .eyebrow { display: block; text-align: center; margin-bottom: 0.5rem; }
.voucher-form-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--black);
  text-align: center;
  margin-bottom: 0.5rem;
}
.voucher-form-card .form-intro {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.voucher-form { display: block; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--black);
  transition: border-color 0.2s;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 70px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 1.5rem 0 1.2rem;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
}
.form-check input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.form-check label { cursor: pointer; }
.form-check a { color: var(--gold-dark); text-decoration: underline; }
.form-note {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 0.9rem 1.2rem;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 1.5rem;
}
.voucher-form button {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* ===== Voucher Type Toggle ===== */
.voucher-type-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.voucher-type-fieldset legend {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.voucher-type-options {
  display: flex;
  gap: 0.8rem;
}
.voucher-type-label {
  flex: 1;
  position: relative;
  cursor: pointer;
}
.voucher-type-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.voucher-type-label span {
  display: block;
  padding: 1rem 1.2rem;
  text-align: center;
  border: 1px solid var(--line);
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: all 0.2s;
  background: var(--cream);
}
.voucher-type-label input:checked + span {
  background: var(--black);
  color: var(--gold);
  border-color: var(--gold);
}
.voucher-type-label input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.voucher-type-label span:hover {
  border-color: var(--gold);
}
.amount-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--cream);
  transition: border-color 0.2s;
}
.amount-input-wrap:focus-within {
  border-color: var(--gold);
  background: var(--white);
}
.amount-prefix {
  padding: 0.8rem 1rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold-dark);
  border-right: 1px solid var(--line);
  background: rgba(201, 169, 110, 0.08);
}
.amount-input-wrap input {
  border: none !important;
  background: transparent !important;
  flex: 1;
}
.amount-input-wrap input:focus {
  outline: none;
}
.form-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.4rem;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8874d' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
@media (max-width: 600px) {
  .voucher-type-options { flex-direction: column; }
}

/* ===== Reviews / Trust Section ===== */
.reviews-section {
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.reviews-section h2 { color: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 2.8rem 2rem;
  transition: all 0.3s;
}
.review-card:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
  transform: translateY(-5px);
}
.review-stars {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  display: block;
}
.review-rating {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.review-rating sub {
  font-size: 1.4rem;
  color: var(--gold);
  font-style: italic;
  vertical-align: baseline;
}
.review-count {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.review-source {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.review-link {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--gold);
  transition: all 0.2s;
}
.review-link:hover {
  background: var(--gold);
  color: var(--black);
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: var(--black);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 90;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  line-height: 1;
  padding: 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--gold);
  color: var(--black);
}
.scroll-top svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 700px) {
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
  }
}

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 780px;
  margin: 0 auto;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 1.6rem 1.8rem;
  z-index: 1000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: none;
  animation: cookieIn 0.4s ease;
}
.cookie-banner.show { display: block; }
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cookie-banner p {
  color: #ccc;
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner a:hover { color: var(--white); }
.cookie-details-toggle {
  background: none;
  border: none;
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  margin-bottom: 0.8rem;
  display: inline-block;
}
.cookie-details-toggle:hover { color: var(--white); }
.cookie-details {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  line-height: 1.7;
  color: #bbb;
}
.cookie-details strong { color: var(--gold); }
.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 0.75rem 1.6rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--gold);
  transition: all 0.2s;
  background: transparent;
  color: var(--gold);
}
.cookie-btn:hover { background: var(--gold); color: var(--black); }
.cookie-btn.primary {
  background: var(--gold);
  color: var(--black);
}
.cookie-btn.primary:hover {
  background: transparent;
  color: var(--gold);
}
@media (max-width: 600px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 1.3rem 1.4rem; }
  .cookie-btn { flex: 1; padding: 0.8rem 1rem; font-size: 0.72rem; }
}

/* Body lock when menu open */
body.menu-open { overflow: hidden; }
.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99;
}
.menu-backdrop.show { display: block; }

/* ===== Sticky Mobile Booking Button ===== */
.mobile-book {
  display: none;
}
@media (max-width: 900px) {
  .mobile-book {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--black);
    border-top: 1px solid var(--gold);
    padding: 0.7rem 1rem;
    text-align: center;
  }
  .mobile-book a {
    display: block;
    background: var(--gold);
    color: var(--black);
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    text-decoration: none;
    transition: all 0.2s;
  }
  .mobile-book a:hover {
    background: var(--white);
    color: var(--black);
  }
  /* Extra padding am Footer damit der Button nichts verdeckt */
  footer { padding-bottom: 5rem; }
  /* Cookie-Banner über dem Button */
  .cookie-banner { bottom: 60px; }
}
