/* =============================================================================
   Siam Thaimassage – styles.css
   Modern Thai Wellness · ruhig · warm · hochwertig
   Struktur:
     1. Fonts
     2. Design-Tokens (Custom Properties)
     3. Reset & Basis
     4. Layout-Primitive (container, section, grid)
     5. Typografie-Bausteine
     6. Buttons
     7. Header & Navigation
     8. Mobile-Menü-Overlay
     9. Mobile Sticky-CTA
    10. Hero
    11. Willkommen
    12. Massagen
    13. Preise
    14. Traditionelle Thai-Massage
    15. Studio / Atmosphäre
    16. Bewertungen
    17. Gutschein
    18. Galerie & Lightbox
    19. Kontakt / Anfahrt
    20. Finaler CTA
    21. Footer
    22. Rechtstext-Seiten
    23. Reveal-Animationen
    24. Reduced Motion
   ========================================================================== */

/* 1. Fonts ----------------------------------------------------------------- */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/cormorant-garamond-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/cormorant-garamond-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/cormorant-garamond-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* 2. Design-Tokens ------------------------------------------------------------ */
:root {
  /* Farben */
  --color-background: #f7f3ec;
  --color-surface: #fffdf9;
  --color-surface-alt: #f1ebe0;
  --color-primary: #382a22;
  --color-secondary: #8c7968;
  --color-accent: #c5a24a;
  /* accent-dark & text-muted gegenüber der Empfehlung leicht abgedunkelt,
     damit kleiner Text auf allen hellen Flächen WCAG AA (≥ 4.5:1) erreicht */
  --color-accent-dark: #856421;
  --color-text: #2f2924;
  --color-text-muted: #6b6259;
  --color-border: #ded5ca;
  --color-overlay: rgba(28, 21, 17, 0.52);

  /* Typografie */
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --step-xs: 0.78rem;
  --step-sm: 0.875rem;
  --step-base: 1rem;
  --step-md: clamp(1.05rem, 0.98rem + 0.35vw, 1.2rem);
  --step-lg: clamp(1.35rem, 1.15rem + 1vw, 1.75rem);
  --step-xl: clamp(1.9rem, 1.5rem + 2vw, 2.75rem);
  --step-2xl: clamp(2.2rem, 1.7rem + 2.5vw, 3.75rem);
  --step-3xl: clamp(2.35rem, 1.7rem + 3.1vw, 5rem);

  /* Raster & Abstände */
  --container: 1180px;
  --container-narrow: 820px;
  --gutter: clamp(1.15rem, 4vw, 2.25rem);
  --section-y: clamp(3.75rem, 8vw, 7rem);
  --radius: 3px;
  --radius-lg: 6px;
  --shadow-sm: 0 1px 2px rgba(56, 42, 34, 0.06);
  --shadow-md: 0 12px 30px -12px rgba(56, 42, 34, 0.22);
  --shadow-lg: 0 30px 60px -20px rgba(56, 42, 34, 0.28);

  --header-h: 4.5rem;
  --header-h-scrolled: 3.75rem;
  --mobile-cta-h: 3.75rem;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* 3. Reset & Basis --------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* clip (nicht hidden) kappt Overflow durch fixierte Off-Canvas-Elemente,
     ohne den Scroll-Kontext für position: sticky zu zerstören */
  overflow-x: clip;
}

body {
  margin: 0;
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--step-base);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-color: var(--color-border);
  text-underline-offset: 0.18em;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

:target {
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

/* Sichtbarer Fokus – niemals entfernen */
:focus-visible {
  outline: 2px solid var(--color-accent-dark);
  outline-offset: 3px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--color-primary);
  color: var(--color-surface);
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius);
  font-size: var(--step-sm);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus {
  transform: translateY(0);
}

/* 4. Layout-Primitive ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: var(--section-y);
}
.section--surface {
  background-color: var(--color-surface);
  border-block: 1px solid var(--color-border);
}
.section--alt {
  background-color: var(--color-surface-alt);
}

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head > .lead,
.section-head > p {
  margin-top: 0.9rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: var(--step-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--color-accent);
}
.section-head--center .eyebrow::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--color-accent);
}

/* 5. Typografie-Bausteine ---------------------------------------------------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--color-primary);
  letter-spacing: 0.005em;
}

.h-display {
  font-size: var(--step-3xl);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.h1,
h1 {
  font-size: var(--step-2xl);
}
.h2,
h2 {
  font-size: var(--step-xl);
}
.h3,
h3 {
  font-size: var(--step-lg);
  font-weight: 600;
}

.lead {
  font-size: var(--step-md);
  color: var(--color-text);
}

.prose p {
  margin-bottom: 1.15rem;
  max-width: 40rem;
}
.prose p:last-child {
  margin-bottom: 0;
}
.text-muted {
  color: var(--color-text-muted);
}

.rule {
  border: 0;
  border-top: 1px solid var(--color-border);
  margin-block: clamp(2.5rem, 6vw, 4.5rem);
}

/* 6. Buttons -------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--color-primary);
  --btn-fg: var(--color-surface);
  --btn-bd: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.9rem;
  padding: 0.85rem 1.6rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: var(--step-sm);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
  transform: translateY(-1px);
}
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--color-primary);
  --btn-bd: var(--color-secondary);
}
.btn--ghost:hover {
  background: transparent;
  color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}
.btn--light {
  --btn-bg: var(--color-surface);
  --btn-fg: var(--color-primary);
  --btn-bd: var(--color-surface);
}
.btn--block {
  width: 100%;
}
.btn svg {
  width: 1.05em;
  height: 1.05em;
  flex: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--step-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-accent-dark);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), gap 0.25s var(--ease);
}
.link-arrow:hover {
  border-color: var(--color-accent);
  gap: 0.7rem;
}

/* 7. Header & Navigation ---------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
  transition: height 0.3s var(--ease);
}
.site-header.is-scrolled .header-inner {
  height: var(--header-h-scrolled);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex: none;
}
.brand img {
  height: 2.6rem;
  width: auto;
  transition: height 0.3s var(--ease);
}
.site-header.is-scrolled .brand img {
  height: 2.2rem;
}
.brand__name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
}
/* Der Wortmarke-Schriftzug steckt bereits im Logo – Text-Dublette nur auf großen Screens */
@media (max-width: 1023px) {
  .brand__name {
    display: none;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.1rem);
}
/* CTA-Button nur im mobilen Overlay, nicht in der Desktop-Navigationszeile */
.site-nav--primary .btn {
  display: none;
}
.site-nav a:not(.btn) {
  font-size: var(--step-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: var(--color-text);
  padding-block: 0.4rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.site-nav a:not(.btn):hover,
.site-nav a:not(.btn)[aria-current="true"] {
  color: var(--color-accent-dark);
  border-color: var(--color-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: none;
}
.header-actions .btn {
  min-height: 2.5rem;
  padding: 0.6rem 1.15rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-primary);
}
.nav-toggle svg {
  width: 1.4rem;
  height: 1.4rem;
}
.nav-toggle .icon-close {
  display: none;
}

/* 8. Mobile-Menü-Overlay -------------------------------------------------------- */
@media (max-width: 899px) {
  .site-nav--primary {
    display: none;
  }
  html.js .nav-toggle {
    display: inline-flex;
  }
  html.js .site-nav--primary {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    background: var(--color-surface);
    padding: 6rem 1.5rem 3rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s var(--ease), visibility 0s linear 0.4s;
  }
  html.js .site-nav--primary.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.4s var(--ease);
  }
  html.js .site-nav--primary a:not(.btn) {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: none;
    color: var(--color-primary);
    border-bottom: 0;
  }
  html.js .site-nav--primary a:not(.btn)[aria-current="true"] {
    color: var(--color-accent-dark);
  }
  html.js .site-nav--primary .btn {
    display: inline-flex;
    margin-top: 1rem;
  }
  body.menu-open {
    overflow: hidden;
  }
  /* No-JS-Fallback: Navigation als einfache Liste unter dem Logo */
  html.no-js .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding-block: 0.9rem;
    gap: 0.75rem 1.25rem;
  }
  html.no-js .site-nav--primary {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 0.4rem 1.25rem;
  }
}

@media (max-width: 560px) {
  .header-actions .btn span {
    display: none;
  }
  .header-actions .btn::after {
    content: "Termin";
  }
}

/* Menü-Schließen-Button innerhalb des Overlays */
.nav-close {
  display: none;
}
@media (max-width: 899px) {
  html.js .site-nav--primary .nav-close {
    display: inline-flex;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2.9rem;
    height: 2.9rem;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
  }
  html.js .site-nav--primary .nav-close svg {
    width: 1.3rem;
    height: 1.3rem;
  }
}

/* 9. Mobile Sticky-CTA -------------------------------------------------------- */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 24px -16px rgba(56, 42, 34, 0.35);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: var(--mobile-cta-h);
  font-size: var(--step-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-primary);
}
.mobile-cta a + a {
  border-left: 1px solid var(--color-border);
}
.mobile-cta svg {
  width: 1.15rem;
  height: 1.15rem;
}
@media (min-width: 900px) {
  .mobile-cta {
    display: none;
  }
}
body.menu-open .mobile-cta {
  display: none;
}
@media (max-width: 899px) {
  body {
    padding-bottom: calc(var(--mobile-cta-h) + env(safe-area-inset-bottom, 0px));
  }
}

/* 10. Hero ------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--color-surface);
  min-height: min(84vh, 780px);
  display: flex;
  align-items: flex-end;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      to top,
      rgba(22, 16, 12, 0.86) 0%,
      rgba(22, 16, 12, 0.5) 42%,
      rgba(22, 16, 12, 0.22) 100%
    );
}
.hero__inner {
  padding-block: clamp(3rem, 9vw, 6rem);
}
.hero__content {
  max-width: 42rem;
}
.hero .eyebrow {
  color: #e7cf8f;
}
.hero .eyebrow::before {
  background: #e7cf8f;
}
.hero__title {
  color: #fff;
  font-size: var(--step-3xl);
  letter-spacing: 0.03em;
  overflow-wrap: break-word;
  margin-bottom: 0.5rem;
}
@media (min-width: 700px) {
  .hero__title {
    letter-spacing: 0.06em;
  }
}
.hero__subtitle {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--step-lg);
  color: #f3e7cf;
  margin-bottom: 1.4rem;
}
.hero__text {
  font-size: var(--step-md);
  color: rgba(255, 253, 249, 0.92);
  max-width: 34rem;
  margin-bottom: 2rem;
}
.hero__address {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.1rem;
  font-size: var(--step-sm);
  letter-spacing: 0.04em;
  color: rgba(255, 253, 249, 0.82);
}
.hero__address svg {
  width: 1.05rem;
  height: 1.05rem;
  opacity: 0.85;
}
.hero__address .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

/* 11. Willkommen ------------------------------------------------------------- */
.welcome-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .welcome-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}
.welcome-figure {
  position: relative;
}
.welcome-figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.welcome-figure::before {
  content: "";
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* 12. Massagen ------------------------------------------------------------------ */
.massage-list {
  display: grid;
  gap: clamp(3rem, 8vw, 6rem);
}
.massage-item {
  display: grid;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 860px) {
  .massage-item {
    grid-template-columns: repeat(2, 1fr);
  }
  .massage-item:nth-child(even) .massage-item__media {
    order: 2;
  }
}
.massage-item__media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.massage-item__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.massage-item:hover .massage-item__media img {
  transform: scale(1.03);
}
.massage-item__index {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-accent-dark);
  letter-spacing: 0.1em;
}
.massage-item__title {
  margin: 0.35rem 0 0.9rem;
}
.massage-item__desc {
  color: var(--color-text-muted);
  max-width: 34rem;
  margin-bottom: 1.4rem;
}
.massage-item__desc .placeholder {
  color: var(--color-accent-dark);
  font-style: italic;
}
.massage-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--color-border);
  font-size: var(--step-sm);
}
.massage-meta dt {
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: var(--step-xs);
}
.massage-meta dd {
  margin: 0;
  font-weight: 600;
  color: var(--color-primary);
}
.massage-meta__pair {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.no-erotic-note {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius);
  background: var(--color-surface);
  font-size: var(--step-sm);
  color: var(--color-text-muted);
  max-width: 46rem;
}

/* 13. Preise ------------------------------------------------------------------- */
.price-groups {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}
@media (min-width: 720px) {
  .price-groups {
    grid-template-columns: repeat(2, 1fr);
  }
}
.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}
.price-card__title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--color-border);
}
.price-card__title h3 {
  font-size: var(--step-lg);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--step-sm);
}
.price-table th {
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--step-xs);
  color: var(--color-text-muted);
  padding-bottom: 0.5rem;
}
.price-table th:last-child,
.price-table td:last-child {
  text-align: right;
}
.price-table td {
  padding-block: 0.5rem;
  border-top: 1px solid var(--color-border);
}
.price-table .price-value {
  font-weight: 600;
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.price-card__cards {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--color-border);
  display: grid;
  gap: 0.4rem;
  font-size: var(--step-sm);
  color: var(--color-text-muted);
}
.price-card__cards .price-value {
  color: var(--color-accent-dark);
}
.price-card__cards div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.price-note {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.1rem 1.35rem;
  background: var(--color-surface-alt);
  border-radius: var(--radius);
  font-size: var(--step-sm);
}
.price-note strong {
  color: var(--color-primary);
}
.price-note svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: none;
  color: var(--color-accent-dark);
  margin-top: 0.15rem;
}

/* 14. Traditionelle Thai-Massage ------------------------------------------------ */
.tradition {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
}
@media (min-width: 920px) {
  .tradition {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}
.tradition__aspects {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}
.tradition__aspects li {
  padding: 0.4rem 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: var(--step-sm);
  color: var(--color-text-muted);
  background: var(--color-surface);
}

/* 15. Studio / Atmosphäre ----------------------------------------------------- */
.studio-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 1.5rem);
  grid-template-columns: repeat(2, 1fr);
}
.studio-grid figure {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.studio-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.studio-grid .studio-tall {
  grid-row: span 2;
}
.studio-grid .studio-tall img {
  aspect-ratio: 3 / 4;
}
.studio-grid .studio-wide img {
  aspect-ratio: 4 / 3;
}
.studio-copy {
  align-self: center;
}
@media (min-width: 900px) {
  .studio-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
  }
}
@media (max-width: 620px) {
  .studio-grid {
    grid-template-columns: 1fr;
  }
  .studio-grid .studio-tall {
    grid-row: auto;
  }
}

/* 16. Bewertungen ------------------------------------------------------------- */
.reviews-placeholder {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  padding: clamp(2rem, 6vw, 3.5rem);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}
.reviews-placeholder__stars {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
  color: var(--color-border);
}
.reviews-placeholder__stars svg {
  width: 1.4rem;
  height: 1.4rem;
}
.reviews-placeholder code {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.35rem 0.7rem;
  background: var(--color-surface-alt);
  border-radius: var(--radius);
  font-size: var(--step-xs);
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}

/* 17. Gutschein -------------------------------------------------------------- */
.gutschein {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .gutschein {
    grid-template-columns: 1fr 1fr;
  }
}
.gutschein__media {
  display: grid;
  gap: 1rem;
}
.gutschein__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1600 / 766;
  object-fit: cover;
}
.gutschein__media img:nth-child(2) {
  width: 82%;
  margin-left: auto;
}

/* 18. Galerie & Lightbox --------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.6rem, 2vw, 1.1rem);
}
@media (min-width: 720px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery__item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-surface-alt);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}
.gallery__item:hover img,
.gallery__item:focus-visible img {
  transform: scale(1.05);
  filter: brightness(1.04);
}
@media (min-width: 720px) {
  .gallery__item--wide {
    grid-column: span 2;
  }
  .gallery__item--wide img {
    aspect-ratio: 2 / 1;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: var(--color-overlay);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0s linear 0.3s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s var(--ease);
}
.lightbox__figure {
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.lightbox__figure img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin-inline: auto;
}
.lightbox__caption {
  text-align: center;
  color: rgba(255, 253, 249, 0.9);
  font-size: var(--step-sm);
}
.lightbox__btn {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 253, 249, 0.12);
  border: 1px solid rgba(255, 253, 249, 0.3);
  border-radius: 50%;
  color: #fff;
  transition: background-color 0.2s var(--ease);
}
.lightbox__btn:hover {
  background: rgba(255, 253, 249, 0.28);
}
.lightbox__btn svg {
  width: 1.4rem;
  height: 1.4rem;
}
.lightbox__close {
  top: clamp(0.75rem, 3vw, 1.75rem);
  right: clamp(0.75rem, 3vw, 1.75rem);
}
.lightbox__prev {
  left: clamp(0.5rem, 3vw, 1.75rem);
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__next {
  right: clamp(0.5rem, 3vw, 1.75rem);
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 560px) {
  .lightbox__prev {
    left: 0.5rem;
  }
  .lightbox__next {
    right: 0.5rem;
  }
}

/* 19. Kontakt / Anfahrt ------------------------------------------------------- */
.contact-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 3.5rem);
}
@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-block h3 {
  font-size: var(--step-md);
  margin-bottom: 0.35rem;
}
.contact-list {
  display: grid;
  gap: 1.4rem;
  margin-bottom: 2rem;
}
.contact-list > div {
  display: flex;
  gap: 0.9rem;
}
.contact-list svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
  color: var(--color-accent-dark);
  margin-top: 0.2rem;
}
.contact-list a {
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
}
.contact-list a:hover {
  border-color: var(--color-accent);
}
.hours-table {
  font-size: var(--step-sm);
  border-collapse: collapse;
}
.hours-table td {
  padding: 0.3rem 0;
}
.hours-table td:first-child {
  padding-right: 2rem;
  color: var(--color-text-muted);
}

.map-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  align-self: start;
}
.map-card__address {
  font-style: normal;
  font-size: var(--step-md);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.map-card__hint {
  font-size: var(--step-sm);
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* 20. Finaler CTA ---------------------------------------------------------------- */
.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--color-surface);
  text-align: center;
}
.final-cta__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.final-cta__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(24, 18, 14, 0.72);
}
.final-cta h2 {
  color: #fff;
}
.final-cta p {
  color: rgba(255, 253, 249, 0.9);
  max-width: 34rem;
  margin: 1rem auto 2rem;
}
.final-cta .btn-row {
  justify-content: center;
}

/* 21. Footer ---------------------------------------------------------------------- */
.site-footer {
  background: var(--color-primary);
  color: rgba(255, 253, 249, 0.78);
  padding-block: clamp(3rem, 7vw, 4.5rem);
  font-size: var(--step-sm);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
.site-footer .brand__name,
.site-footer h2 {
  color: var(--color-surface);
}
.site-footer .footer-brand img {
  height: 3.25rem;
  width: auto;
  margin-bottom: 1rem;
}
.footer-col h2 {
  font-family: var(--font-sans);
  font-size: var(--step-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: rgba(255, 253, 249, 0.6);
}
.footer-col ul {
  display: grid;
  gap: 0.6rem;
}
.footer-col a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.footer-col a:hover {
  color: var(--color-surface);
  border-color: var(--color-accent);
}
.footer-note {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 253, 249, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: var(--step-xs);
  color: rgba(255, 253, 249, 0.55);
}

/* 22. Rechtstext-Seiten ------------------------------------------------------- */
.legal-page {
  padding-block: clamp(3rem, 8vw, 6rem);
}
.legal-page .container {
  max-width: 760px;
}
.legal-page h1 {
  margin-bottom: 0.5rem;
}
.legal-page .legal-updated {
  color: var(--color-text-muted);
  font-size: var(--step-sm);
  margin-bottom: 2.5rem;
}
.legal-page h2 {
  font-size: var(--step-lg);
  margin: 2.5rem 0 0.85rem;
}
.legal-page h3 {
  font-size: var(--step-md);
  margin: 1.75rem 0 0.6rem;
}
.legal-page p,
.legal-page li {
  margin-bottom: 0.9rem;
  color: var(--color-text);
}
.legal-page ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 1.2rem;
}
.legal-page a {
  color: var(--color-accent-dark);
}
.legal-page .placeholder {
  background: #f4e9cf;
  color: var(--color-accent-dark);
  padding: 0.05em 0.35em;
  border-radius: 2px;
  font-style: italic;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 3rem;
  font-size: var(--step-sm);
  text-decoration: none;
  color: var(--color-accent-dark);
}

/* 23. Reveal-Animationen ---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
html.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* 24. Reduced Motion ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .massage-item:hover .massage-item__media img,
  .gallery__item:hover img {
    transform: none;
  }
}
