/* ============================================================
   Baan Yui — Thai Spa & Massage · Nürnberg
   Design: High-End Wellness · Dunkelgrün / Champagner-Gold
   Fonts: Playfair Display (Display) · Plus Jakarta Sans (Body)
   ============================================================ */

:root {
  /* Farbpalette */
  --green:        #0F2A1D;   /* tiefes Waldgrün (Haupt-Hintergrund) */
  --green-2:      #163828;   /* dunkles Grün (Abstufung) */
  --green-3:      #1C4632;   /* Grün für Karten/Badges auf dunkel */
  --green-ink:    #12281E;   /* Textfarbe auf hellen Flächen */
  --cream:        #F4F6F4;   /* Off-White (helle Flächen) */
  --sage:         #E8EFE9;   /* Salbeigrün-Gegenpol */
  --gold:         #C5A059;   /* Champagner-Gold / Mattgold */
  --gold-2:       #D4AF37;   /* helles Gold (Hover/Highlights) */
  --gold-soft:    rgba(197,160,89,.14);
  --gold-border:  rgba(197,160,89,.38);
  --text-light:   #F1EFE7;   /* Creme-Text auf dunkel */
  --text-muted:   #9DB4A6;   /* gedämpftes Graugrün auf dunkel */
  --text-dark:    #1d2a22;   /* Graphit-Grün auf hell */
  --text-dark-mut:#54655a;   /* gedämpft auf hell */

  /* Typografie */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body:    "Plus Jakarta Sans", system-ui, sans-serif;

  /* Radien & Schatten */
  --r-lg: 22px;   /* rounded-2xl */
  --r-md: 14px;
  --shadow-md: 0 10px 30px rgba(10, 25, 18, .12);
  --shadow-lg: 0 24px 60px rgba(10, 25, 18, .22);

  --container: min(1140px, 100% - 48px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--green);
  color: var(--text-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--green); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  padding: 14px 30px; border-radius: 999px; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  border: 1px solid transparent; white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--green);
  box-shadow: 0 8px 24px rgba(197, 160, 89, .35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(197, 160, 89, .5); }
.btn-outline {
  background: transparent; color: var(--gold-2); border-color: var(--gold-border);
}
.btn-outline:hover { background: var(--gold-soft); border-color: var(--gold); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: .88rem; }

/* ============ Navbar ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.nav.scrolled {
  background: rgba(15, 42, 29, .94);
  box-shadow: 0 6px 30px rgba(0, 0, 0, .35);
  border-bottom: 1px solid rgba(197, 160, 89, .18);
}
/* Glassmorphism NUR Desktop: backdrop-filter am .nav würde auf Mobile das
   Fullscreen-Menü (.nav-links position:fixed) in die Header-Leiste clippen,
   weil backdrop-filter einen Containing Block für fixed-Children erzeugt! */
@media (min-width: 861px) {
  .nav.scrolled {
    background: rgba(15, 42, 29, .82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}
.nav-inner {
  width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; position: relative; z-index: 106; }
.brand-logo { width: 52px; height: 52px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 600;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand-sub {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); border-top: 1px solid var(--gold-border); padding-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a:not(.btn) {
  font-size: .92rem; font-weight: 500; color: var(--text-light);
  position: relative; padding: 4px 0; transition: color .25s;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  transition: width .3s ease; border-radius: 2px;
}
.nav-links a:not(.btn):hover, .nav-links a.active:not(.btn) { color: var(--gold-2); }
.nav-links a:not(.btn):hover::after, .nav-links a.active:not(.btn)::after { width: 100%; }
.nav-cta { padding: 11px 24px; font-size: .88rem; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 110; }
.burger span { display: block; width: 26px; height: 2px; background: var(--gold-2); margin: 6px 0; border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("../img/hero.jpg") center / cover no-repeat;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(15, 42, 29, .55) 0%,
    rgba(15, 42, 29, .72) 45%,
    rgba(15, 42, 29, .96) 100%);
}
.hero-content { position: relative; z-index: 2; width: var(--container); max-width: 860px; padding: 120px 0 80px; }
.hero-eyebrow {
  font-size: .8rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.4rem, 5.6vw, 4.3rem); line-height: 1.14; color: var(--text-light);
  text-shadow: 0 4px 30px rgba(0, 0, 0, .4);
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  margin: 26px auto 0; max-width: 560px;
  font-size: 1.12rem; font-weight: 300; color: var(--text-light); opacity: .92;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

/* ============ Trust Bar ============ */
.trust {
  background: linear-gradient(90deg, var(--green-2), var(--green-3));
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.trust-inner {
  width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  padding: 22px 0;
}
.trust-item {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: .92rem; font-weight: 500; color: var(--text-light); text-align: center;
}
.trust-icon { color: var(--gold-2); font-size: 1.05rem; }

/* ============ Sections (Basis) ============ */
.section { padding: 110px 0; }
.section-light { background: var(--cream); color: var(--text-dark); }
.section-dark  { background: var(--green);  color: var(--text-light); }
.container { width: var(--container); margin: 0 auto; }

.eyebrow {
  font-size: .76rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; font-weight: 600;
}
.eyebrow-gold { color: var(--gold-2); }
.section-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem); line-height: 1.2;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-sub {
  margin-top: 16px; max-width: 620px; font-weight: 400;
}
.section-light .section-sub { color: var(--text-dark-mut); }
.section-dark  .section-sub { color: var(--text-muted); }

/* ============ Massage-Karten ============ */
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 28px; margin-top: 56px;
}
.card {
  position: relative; background: #fff; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid rgba(22, 56, 40, .07);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-featured { border: 1px solid var(--gold-border); box-shadow: 0 14px 40px rgba(197, 160, 89, .18); }
.badge {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--green); font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  padding: 7px 14px; border-radius: 999px; box-shadow: 0 4px 14px rgba(197,160,89,.4);
}
.card-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sage); }
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-body h3 { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; color: var(--green-ink); }
.card-body p { font-size: .92rem; color: var(--text-dark-mut); flex: 1; }
.card-meta { display: flex; gap: 16px; font-size: .84rem; color: var(--text-dark-mut); font-weight: 500; }
.card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid rgba(22, 56, 40, .1);
}
.price {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  color: var(--green-2); white-space: nowrap;
}
.massagen-more { margin-top: 44px; text-align: center; color: var(--text-dark-mut); font-size: .95rem; }
.massagen-more strong { color: var(--green-2); font-weight: 600; }

/* ============ Nailstone ============ */
.nailstone { position: relative; overflow: hidden; }
.nailstone::before {
  content: ""; position: absolute; top: -180px; right: -180px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(197,160,89,.16), transparent 68%);
  pointer-events: none;
}
.nailstone-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.nailstone-media { position: relative; }
.nailstone-media img {
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  width: 100%; height: 420px; object-fit: cover;
}
/* Nailstone-Grafik (weißer Hintergrund + Goldrahmen): nicht croppen! */
.nailstone-media img.nailstone-img { height: auto; object-fit: contain; }
.nailstone-frame {
  position: absolute; inset: -14px 14px 14px -14px;
  border: 1px solid var(--gold-border); border-radius: var(--r-lg);
  z-index: -1;
}
.nailstone-text p { color: var(--text-muted); margin-top: 18px; font-weight: 300; }
.check-list { list-style: none; margin: 26px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.check-list li { position: relative; padding-left: 34px; color: var(--text-light); font-size: .96rem; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-soft); border: 1px solid var(--gold-border);
  color: var(--gold-2); font-size: .78rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ============ Preise ============ */
.price-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 26px; margin-top: 56px;
}
.price-card {
  position: relative; background: #fff; border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(22, 56, 40, .07);
  transition: transform .35s ease, box-shadow .35s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card-featured { border: 1px solid var(--gold-border); background: linear-gradient(160deg, #fff, #faf6ec); }
.price-card h3 { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; color: var(--green-ink); }
.price-note { font-size: .8rem; color: var(--gold); font-weight: 600; margin: 6px 0 18px; letter-spacing: .02em; }
.price-card ul { list-style: none; }
.price-card li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0; border-bottom: 1px dashed rgba(22, 56, 40, .14);
  font-size: .94rem;
}
.price-card li:last-child { border-bottom: 0; }
.price-card li span:first-child { color: var(--text-dark-mut); }
.price-card li span:last-child { font-weight: 700; color: var(--green-2); font-family: var(--font-display); white-space: nowrap; }

/* ============ Über Uns ============ */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.about-text p { color: var(--text-muted); margin-top: 18px; font-weight: 300; }
.about-quote {
  margin-top: 26px; padding: 4px 0 4px 22px;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display); font-style: italic;
  font-size: 1.12rem; line-height: 1.55; color: var(--text-light);
}
.about-quote cite {
  display: block; margin-top: 12px;
  font-family: var(--font-body); font-style: normal;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-2);
}
.about-media { position: relative; }
.about-media img.about-main {
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  width: 100%; height: 420px; object-fit: cover;
  border: 1px solid var(--gold-border);
}
.about-media img.about-second {
  position: absolute; left: -34px; bottom: -34px; width: 46%; height: 190px;
  object-fit: cover; border-radius: var(--r-md);
  border: 6px solid var(--green); box-shadow: var(--shadow-lg);
}
.about-stats {
  display: flex; gap: 44px; margin-top: 40px;
  border-top: 1px solid rgba(197, 160, 89, .2); padding-top: 30px;
}
.about-stats strong {
  display: block; font-family: var(--font-display); font-size: 2rem;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.about-stats span { font-size: .8rem; color: var(--text-muted); letter-spacing: .06em; text-transform: uppercase; }

/* ============ Galerie + Lightbox (v1.4) ============ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px;
}
.gallery-grid a {
  display: block; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 4 / 3; box-shadow: var(--shadow-md);
  border: 1px solid rgba(22, 56, 40, .08);
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-grid a:hover img { transform: scale(1.07); }
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 20, 15, .93);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 100%; max-height: 86vh; object-fit: contain;
  border-radius: var(--r-md); box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute; top: 16px; right: 22px;
  background: none; border: 0; cursor: pointer;
  color: var(--gold-2); font-size: 2.4rem; line-height: 1; padding: 8px;
}

/* ============ Footer ============ */
.footer { background: #0A1F16; border-top: 1px solid rgba(197, 160, 89, .16); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding: 90px 0 60px;
}
.footer-logo { width: 110px; margin-bottom: 20px; }
.footer-brand p { color: var(--text-muted); font-size: .92rem; font-weight: 300; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  color: var(--gold-2); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-col li, .footer-col a { color: var(--text-muted); font-size: .92rem; font-weight: 300; transition: color .25s; }
.footer-col a:hover { color: var(--gold-2); }
.footer-col strong { color: var(--text-light); font-weight: 500; }
.footer-disclaimer { margin-top: 22px; font-size: .78rem; color: var(--text-muted); opacity: .8; font-style: italic; }
.footer-bottom {
  border-top: 1px solid rgba(197, 160, 89, .12);
  padding: 22px 0; text-align: center;
  font-size: .82rem; color: var(--text-muted); font-weight: 300;
}

/* ============ Floating WhatsApp ============ */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(197, 160, 89, .45);
  transition: transform .3s ease, box-shadow .3s ease;
  animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 14px 40px rgba(197, 160, 89, .6); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(197, 160, 89, .45), 0 0 0 0 rgba(197, 160, 89, .35); }
  50%      { box-shadow: 0 10px 30px rgba(197, 160, 89, .45), 0 0 0 14px rgba(197, 160, 89, 0); }
}

/* ============ Reveal-Animation ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============ Unterseiten (v1.1: Gutschein + Impressum) ============ */
.page-hero {
  position: relative; padding: 190px 0 90px; text-align: center; overflow: hidden;
  background: url("../img/gutschein1.jpg") center / cover no-repeat;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,42,29,.62), rgba(15,42,29,.94));
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem); line-height: 1.15; color: var(--text-light);
}
.page-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero .hero-sub { margin-top: 18px; }

/* Gutschein-Seite */
.voucher-layout {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center;
}
.voucher-layout .voucher-img img {
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  width: 100%; object-fit: cover; border: 1px solid var(--gold-border);
}
.voucher-info h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 600; }
.voucher-info p { color: var(--text-muted); margin-top: 16px; font-weight: 300; }
.steps { list-style: none; counter-reset: step; margin: 30px 0; display: flex; flex-direction: column; gap: 18px; }
.steps li { counter-increment: step; position: relative; padding-left: 56px; color: var(--text-light); font-size: .98rem; }
.steps li strong { display: block; font-weight: 600; color: var(--text-light); }
.steps li span { color: var(--text-muted); font-weight: 300; font-size: .92rem; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 2px;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--gold-border); color: var(--gold-2);
  display: flex; align-items: center; justify-content: center;
}
.notice-card {
  margin-top: 8px; padding: 20px 24px; border-radius: var(--r-md);
  background: var(--gold-soft); border: 1px solid var(--gold-border);
  color: var(--text-light); font-size: .94rem;
}
.notice-card strong { color: var(--gold-2); }

/* Info-Karten (Öffnungszeiten/Anfahrt auf Gutschein-Seite) */
.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 70px; }
.info-card {
  background: var(--green-2); border: 1px solid rgba(197,160,89,.2);
  border-radius: var(--r-lg); padding: 32px;
}
.info-card h3 { font-family: var(--font-display); color: var(--gold-2); font-size: 1.15rem; margin-bottom: 16px; }
.info-card p, .info-card li { color: var(--text-muted); font-size: .94rem; font-weight: 300; }
.info-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.info-card strong { color: var(--text-light); font-weight: 500; }
.info-card a { color: var(--gold-2); }
.info-card a:hover { text-decoration: underline; }

/* Impressum-Seite */
.legal { background: var(--cream); color: var(--text-dark); padding: 90px 0; }
.legal-inner { max-width: 780px; margin: 0 auto; }
.legal h2 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--green-ink); margin: 44px 0 14px;
}
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--text-dark-mut); font-size: .96rem; margin-bottom: 12px; }
.legal address { font-style: normal; color: var(--text-dark); line-height: 1.8; margin: 10px 0 18px; }
.legal a { color: var(--green-2); font-weight: 600; }
.legal a:hover { color: var(--gold); }
.legal .divider {
  height: 1px; border: 0; margin: 40px 0;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.legal-note {
  background: #fff; border: 1px solid rgba(22,56,40,.1); border-left: 3px solid var(--gold);
  border-radius: var(--r-md); padding: 20px 24px; margin-top: 14px;
  color: var(--text-dark-mut); font-size: .92rem;
}
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-2); font-size: .9rem; font-weight: 600; margin-bottom: 8px;
}
.back-link:hover { text-decoration: underline; }

/* ============ Responsive ============ */
@media (max-width: 1020px) {
  .nailstone-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .nailstone-media img:not(.nailstone-img), .about-media img.about-main { height: 320px; }
  .about-media img.about-second { left: -14px; bottom: -24px; height: 160px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 14px; padding: 20px 0; }
  .voucher-layout { grid-template-columns: 1fr; gap: 40px; }
  .info-cards { grid-template-columns: 1fr; margin-top: 52px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .section { padding: 76px 0; }
  .section-title { font-size: clamp(1.65rem, 5.4vw, 2.2rem); }
  .cards { margin-top: 42px; gap: 22px; }
  .price-grid { margin-top: 42px; gap: 20px; }
  .page-hero { padding: 150px 0 64px; }
  .legal { padding: 64px 0; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 0; z-index: 105;
    background: rgba(15, 42, 29, .97);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    flex-direction: column; justify-content: center; gap: 30px;
    opacity: 0; pointer-events: none; transition: opacity .3s ease;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a:not(.btn) { font-size: 1.15rem; }
  .burger { display: block; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 32px); }

  /* Navbar */
  .brand-sub { display: none; }
  .brand-logo { width: 42px; height: 42px; }
  .brand-name { font-size: 1.25rem; }
  .nav-inner { padding: 10px 0; }

  /* Hero */
  .hero { min-height: 92svh; }
  .hero-content { padding: 96px 0 56px; }
  .hero-eyebrow { font-size: .68rem; letter-spacing: .2em; margin-bottom: 16px; }
  .hero-title { font-size: clamp(1.85rem, 8.4vw, 2.4rem); }
  .hero-sub { font-size: .98rem; margin-top: 18px; }
  .hero-ctas { margin-top: 30px; gap: 12px; }
  .hero-ctas .btn { width: 100%; padding: 14px 24px; }

  /* Trust Bar */
  .trust-inner { grid-template-columns: 1fr; gap: 8px; padding: 16px 0; }
  .trust-item { justify-content: flex-start; text-align: left; font-size: .86rem; padding: 4px 0; }

  /* Sektionen */
  .section { padding: 60px 0; }
  .eyebrow { font-size: .68rem; letter-spacing: .22em; }
  .section-sub { font-size: .92rem; margin-top: 12px; }

  /* Karten */
  .cards { grid-template-columns: 1fr; gap: 18px; margin-top: 34px; }
  .card-body { padding: 20px; gap: 10px; }
  .card-body h3 { font-size: 1.15rem; }
  .card-body p { font-size: .88rem; }
  .card-foot { flex-wrap: wrap; gap: 10px; }
  .card-foot .btn { flex: 1; }
  .massagen-more { margin-top: 30px; font-size: .86rem; }

  /* Nailstone / Über Uns */
  .nailstone-grid, .about-grid { gap: 32px; }
  .nailstone-media img:not(.nailstone-img) { height: 230px; }
  .nailstone-frame { display: none; }
  .about-media { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-media img.about-main { grid-column: 1 / -1; height: 230px; }
  .about-media img.about-second { position: static; width: 100%; height: 140px; border: 1px solid var(--gold-border); grid-column: 1 / -1; }
  .about-quote { font-size: 1rem; padding-left: 16px; margin-top: 22px; }
  .check-list { gap: 12px; margin: 20px 0 26px; }
  .check-list li { font-size: .9rem; }
  .about-stats { gap: 22px; flex-wrap: wrap; margin-top: 30px; padding-top: 24px; }
  .about-stats strong { font-size: 1.55rem; }

  /* Galerie */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 34px; }

  /* Preise */
  .price-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 34px; }
  .price-card { padding: 22px 20px; }
  .price-card h3 { font-size: 1.08rem; }
  .price-card li { font-size: .88rem; padding: 9px 0; flex-wrap: wrap; }

  /* Unterseiten */
  .page-hero { padding: 128px 0 48px; }
  .page-hero .hero-sub { font-size: .95rem; }
  .voucher-layout { gap: 32px; }
  .steps { gap: 16px; margin: 24px 0; }
  .steps li { padding-left: 48px; font-size: .92rem; }
  .steps li::before { width: 34px; height: 34px; font-size: .95rem; }
  .notice-card { padding: 16px 18px; font-size: .88rem; }
  .info-cards { margin-top: 44px; gap: 16px; }
  .info-card { padding: 24px 20px; }
  .legal { padding: 52px 0; }
  .legal h2 { font-size: 1.22rem; margin: 34px 0 12px; }
  .legal p { font-size: .9rem; }
  .legal .divider { margin: 30px 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 56px 0 36px; }
  .footer-logo { width: 88px; margin-bottom: 14px; }
  .footer-col h4 { margin-bottom: 14px; }
  .footer-col ul { gap: 12px; }

  /* Floating WhatsApp */
  .wa-float { right: 16px; bottom: 16px; width: 50px; height: 50px; }
}
