/* ============================================================
   GEESTGLANZ — Skin & Body Concept
   Design system: warm "quiet-luxury" editorial
   Playfair Display (display) + Hanken Grotesk (text)
   ============================================================ */

:root {
  /* palette */
  --paper: #f7f4ef;          /* warm off-white page */
  --paper-2: #efe9e0;        /* alt section / greige */
  --paper-3: #e6dfd4;        /* deeper greige */
  --ink: #23201d;            /* warm near-black text */
  --ink-soft: #5c554e;       /* muted body */
  --ink-faint: #8a827a;      /* captions */
  --navy: #1b2342;           /* deep navy */
  --navy-deep: #131a33;      /* darker navy */
  --gold: #b0935e;           /* brass accent */
  --gold-deep: #8d7446;
  --gold-soft: #cbb98f;
  --ice: #c7dfea;            /* cool accent, used sparingly */
  --blue: #2c6f96;           /* brand blue */
  --blue-deep: #1d4f6e;
  --blue-soft: #e9f1f5;      /* soft blue tint bg */
  --blue-line: rgba(44, 111, 150, 0.22);
  --line: rgba(35, 32, 29, 0.14);
  --line-light: rgba(247, 244, 239, 0.22);
  --white: #ffffff;

  --shadow-soft: 0 24px 60px -28px rgba(19, 26, 51, 0.30);
  --shadow-lift: 0 36px 80px -34px rgba(19, 26, 51, 0.42);

  --serif: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --radius: 4px;
  --section-y: clamp(4.5rem, 9vw, 9rem);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 1.0625rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

/* ---------- layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: 1480px; }
.container--narrow { max-width: 820px; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section--paper2 { background: var(--paper-2); }
/* ---------- dark sections — noble navy family (no light-blue) ---------- */
.section--blue  { background: var(--navy-deep); color: var(--paper); }
.section--ocean { background: var(--navy); color: var(--paper); }
.section--navy  { background: var(--navy); color: var(--paper); }

/* ---------- closing CTA — the golden moment ---------- */
.section--cta {
  position: relative;
  isolation: isolate;
  color: var(--navy);
  background:
    radial-gradient(135% 130% at 50% -20%, rgba(255,255,255,0.34), rgba(255,255,255,0) 55%),
    linear-gradient(135deg, #e0cda3 0%, #cbac72 46%, #ad8c50 100%);
  overflow: hidden;
}
.section--cta::before {
  content: "";
  position: absolute;
  inset: clamp(14px, 2.4vw, 30px);
  border: 1px solid rgba(255,255,255,0.45);
  pointer-events: none;
  z-index: 0;
}
.section--cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(60% 40% at 85% 110%, rgba(255,255,255,0.22), rgba(255,255,255,0) 60%),
    radial-gradient(50% 40% at 12% -10%, rgba(110,83,32,0.18), rgba(110,83,32,0) 60%);
  pointer-events: none;
  z-index: 0;
}
.section--cta .cta-band { position: relative; z-index: 1; }
.section--cta .kicker { color: rgba(19,26,51,0.72); }
.section--cta .kicker::before { background: rgba(19,26,51,0.55); }
.section--cta h2 { color: var(--navy); }
.section--cta h2 em { color: #6b4f1e; font-style: italic; }
.section--cta .lead { color: rgba(19,26,51,0.80); }
.section--cta .btn--gold {
  background: var(--navy); color: var(--paper); border-color: var(--navy);
  box-shadow: 0 10px 26px -12px rgba(19,26,51,0.6);
}
.section--cta .btn--gold:hover { background: var(--navy-deep, #0f1426); border-color: var(--navy-deep, #0f1426); }
.section--cta .btn--ghost-light,
.section--cta .btn--ghost {
  color: var(--navy); border-color: rgba(19,26,51,0.45); background: transparent;
}
.section--cta .btn--ghost-light:hover,
.section--cta .btn--ghost:hover { background: rgba(19,26,51,0.08); border-color: var(--navy); }

:is(.section--blue, .section--ocean, .section--navy) h1,
:is(.section--blue, .section--ocean, .section--navy) h2,
:is(.section--blue, .section--ocean, .section--navy) h3,
:is(.section--blue, .section--ocean, .section--navy) h4 { color: var(--paper); }
:is(.section--blue, .section--ocean, .section--navy) .lead { color: rgba(247, 244, 239, 0.82); }
:is(.section--blue, .section--ocean, .section--navy) .kicker { color: var(--gold-soft); }
:is(.section--blue, .section--ocean, .section--navy) .kicker::before { background: var(--gold-soft); }
:is(.section--blue, .section--ocean, .section--navy) h1 em,
:is(.section--blue, .section--ocean, .section--navy) h2 em,
:is(.section--blue, .section--ocean, .section--navy) h3 em { color: var(--gold-soft); }

/* component overrides on dark sections */
:is(.section--blue, .section--ocean, .section--navy) .tile h3 { color: var(--paper); }
:is(.section--blue, .section--ocean, .section--navy) .tile p { color: rgba(247, 244, 239, 0.72); }
:is(.section--blue, .section--ocean, .section--navy) .tile-num { color: var(--gold-soft); }
:is(.section--blue, .section--ocean, .section--navy) .tile-media { background: rgba(255, 255, 255, 0.05); }
:is(.section--blue, .section--ocean, .section--navy) .link-arrow { color: var(--paper); }

:is(.section--blue, .section--ocean, .section--navy) .value-grid { border-top-color: var(--line-light); }
:is(.section--blue, .section--ocean, .section--navy) .value-item { border-right-color: var(--line-light); }
:is(.section--blue, .section--ocean, .section--navy) .value-num { color: var(--gold-soft); }
:is(.section--blue, .section--ocean, .section--navy) .value-item h3 { color: var(--paper); }
:is(.section--blue, .section--ocean, .section--navy) .value-item p { color: rgba(247, 244, 239, 0.72); }

:is(.section--blue, .section--ocean, .section--navy) .svc-list { border-top-color: var(--line-light); }
:is(.section--blue, .section--ocean, .section--navy) .svc-row { border-right-color: var(--line-light); border-bottom-color: var(--line-light); }
:is(.section--blue, .section--ocean, .section--navy) .svc-row p { color: rgba(247, 244, 239, 0.72); }

:is(.section--blue, .section--ocean, .section--navy) .check-list li { border-top-color: var(--line-light); color: rgba(247, 244, 239, 0.8); }
:is(.section--blue, .section--ocean, .section--navy) .check-list li:last-child { border-bottom-color: var(--line-light); }
:is(.section--blue, .section--ocean, .section--navy) .check-list li::before { border-right-color: var(--gold-soft); border-bottom-color: var(--gold-soft); }

:is(.section--blue, .section--ocean, .section--navy) .info-grid { background: rgba(255, 255, 255, 0.03); border-color: var(--line-light); }
:is(.section--blue, .section--ocean, .section--navy) .info-cell { border-right-color: var(--line-light); border-bottom-color: var(--line-light); }
:is(.section--blue, .section--ocean, .section--navy) .info-cell h3 { color: var(--paper); }
:is(.section--blue, .section--ocean, .section--navy) .info-cell p { color: rgba(247, 244, 239, 0.72); }

:is(.section--blue, .section--ocean, .section--navy) .figure-cap,
:is(.section--blue, .section--ocean, .section--navy) .figure figcaption { color: rgba(247, 244, 239, 0.6); }

:is(.section--blue, .section--ocean, .section--navy) .panel { background: rgba(255, 255, 255, 0.04); border-color: var(--line-light); }
:is(.section--blue, .section--ocean, .section--navy) .panel h3 { color: var(--paper); }
:is(.section--blue, .section--ocean, .section--navy) .panel p { color: rgba(247, 244, 239, 0.78); }

:is(.section--blue, .section--ocean, .section--navy) .price-list { border-top-color: var(--line-light); }
:is(.section--blue, .section--ocean, .section--navy) .price-row { border-bottom-color: var(--line-light); }
:is(.section--blue, .section--ocean, .section--navy) .price-row .price-val { color: var(--gold-soft); }
:is(.section--blue, .section--ocean, .section--navy) .price-row .price-name small,
:is(.section--blue, .section--ocean, .section--navy) .price-row .price-val s { color: rgba(247, 244, 239, 0.55); }

:is(.section--blue, .section--ocean, .section--navy) .faq { border-top-color: var(--line-light); }
:is(.section--blue, .section--ocean, .section--navy) .faq-item { border-bottom-color: var(--line-light); }
:is(.section--blue, .section--ocean, .section--navy) .faq-q { color: var(--paper); }
:is(.section--blue, .section--ocean, .section--navy) .faq-a-inner { color: rgba(247, 244, 239, 0.76); }
:is(.section--blue, .section--ocean, .section--navy) .faq-icon::before,
:is(.section--blue, .section--ocean, .section--navy) .faq-icon::after { background: var(--gold-soft); }

:is(.section--blue, .section--ocean, .section--navy) .quote { border-top-color: var(--line-light); }
:is(.section--blue, .section--ocean, .section--navy) .quote p { color: var(--paper); }

:is(.section--blue, .section--ocean, .section--navy) .step { border-top-color: var(--line-light); }
:is(.section--blue, .section--ocean, .section--navy) .step p { color: rgba(247, 244, 239, 0.78); }

:is(.section--blue, .section--ocean, .section--navy) .badge {
  color: var(--gold-soft);
  background: rgba(176, 147, 94, 0.14);
  border-color: rgba(203, 185, 143, 0.42);
}
:is(.section--blue, .section--ocean, .section--navy) .badge::before { background: var(--gold-soft); }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 400; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.15rem; }

em, .italic { font-style: italic; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--gold-deep); }
.section--navy h1 em, .section--navy h2 em { color: var(--gold-soft); }

p { margin: 0 0 1.1em; }
.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
  font-weight: 350;
}
.section--navy .lead { color: rgba(247, 244, 239, 0.82); }

.measure { max-width: 62ch; }

/* kicker / eyebrow */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1.3rem;
}
.kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.kicker--center { justify-content: center; }
.section--navy .kicker { color: var(--gold-soft); }
.section--navy .kicker::before { background: var(--gold-soft); }

.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.02rem 1.9rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 0.7rem 1.25rem; font-size: 0.72rem; }

/* booking action = gold */
.btn--gold { background: var(--gold); color: var(--navy-deep); }
.btn--gold:hover { background: var(--gold-deep); color: var(--paper); box-shadow: var(--shadow-soft); }

/* primary dark */
.btn--navy { background: var(--navy); color: var(--paper); }
.btn--navy:hover { background: var(--navy-deep); box-shadow: var(--shadow-soft); }

/* light fill (over dark imagery) */
.btn--light { background: var(--paper); color: var(--navy-deep); }
.btn--light:hover { background: var(--white); box-shadow: var(--shadow-lift); }

/* ghost on light bg */
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: transparent; }

/* ghost on dark bg */
.btn--ghost-light { background: transparent; color: var(--paper); border-color: var(--line-light); }
.btn--ghost-light:hover { border-color: var(--paper); background: rgba(247, 244, 239, 0.06); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 3px;
}
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.link-arrow:hover::after { transform: scaleX(1); }
.link-arrow .arw { transition: transform 0.35s var(--ease); color: var(--gold-deep); }
.link-arrow:hover .arw { transform: translateX(4px); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--paper);
  transition: color 0.4s var(--ease);
}
.brand-mark {
  height: 42px;
  width: auto;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-mark img { height: 100%; width: auto; display: none; }
.brand-mark .bm-gold { display: block; }
.brand-mark .bm-dark { display: none; }
.site-header.is-solid .brand-mark .bm-gold,
.site-header.header--light .brand-mark .bm-gold { display: none; }
.site-header.is-solid .brand-mark .bm-dark,
.site-header.header--light .brand-mark .bm-dark { display: block; }
.brand-word { align-self: center; display: inline-flex; }
.brand-word img {
  width: clamp(128px, 16vw, 152px);
  height: auto;
  display: none;
}
/* dark contexts (index hero default, footer) → gold wordmark */
.brand-word .bw-gold { display: block; }
.brand-word .bw-dark { display: none; }
/* light contexts (scrolled / interior) → black wordmark */
.site-header.is-solid .brand-word .bw-gold,
.site-header.header--light .brand-word .bw-gold { display: none; }
.site-header.is-solid .brand-word .bw-dark,
.site-header.header--light .brand-word .bw-dark { display: block; }

.main-nav { display: flex; align-items: center; gap: 1.35rem; }
.main-nav a {
  position: relative;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--paper);
  padding-block: 0.4rem;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--gold-soft); }

.header-cta { display: inline-flex; align-items: center; gap: 1rem; }

/* dropdown */
.has-sub { position: relative; display: inline-flex; align-items: center; }
.has-sub > a { display: inline-flex; align-items: center; gap: 0.35rem; }
.has-sub > a::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -22px; height: 26px;
}
.submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
  z-index: 60;
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.submenu a {
  color: var(--ink) !important;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  padding: 0.6rem 0.85rem;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.submenu a::after { display: none; }
.submenu a:hover { background: var(--paper-3); color: var(--gold-deep) !important; }
/* nested category flyout */
.submenu { overflow: visible; }
.submenu .subitem { position: relative; display: block; }
.submenu .subitem > a { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.submenu .caret--r { font-size: 1.05em; line-height: 1; opacity: 0.5; }
.child-menu {
  position: absolute; top: -7px; left: 100%;
  min-width: 208px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 26px 54px -26px rgba(11,15,30,.5);
  padding: 6px; display: flex; flex-direction: column; gap: 0.1rem;
  opacity: 0; visibility: hidden; transform: translateX(8px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
  z-index: 80;
}
.child-menu::before { content: ""; position: absolute; left: -12px; top: 0; width: 12px; height: 100%; }
.child-menu a { color: var(--ink) !important; font-size: 0.86rem; white-space: nowrap; padding: 0.5rem 0.8rem; border-radius: 8px; transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.child-menu a::after { display: none; }
.child-menu a:hover { background: var(--paper-3); color: var(--gold-deep) !important; }
.submenu .subitem:hover > .child-menu, .submenu .subitem:focus-within > .child-menu { opacity: 1; visibility: visible; transform: translateX(0); }
/* value panels: hover lift */
.media-grid--2 .panel { transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.media-grid--2 .panel:hover { transform: translateY(-5px); box-shadow: 0 26px 54px -30px rgba(11,15,30,.42); }
/* gold section (matches closing CTA) */
.section--gold { background: linear-gradient(160deg, #c9a86c 0%, #b6954f 55%, #9f7e43 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,0.18); }
.section--gold .kicker { color: rgba(19,26,51,0.72); }
.section--gold .kicker::before { background: rgba(19,26,51,0.55); }
.section--gold h2 { color: var(--navy); }
.section--gold .step { border-top-color: rgba(19,26,51,0.28); }
.section--gold .step::before { color: var(--navy); }
.section--gold .step h3 { color: var(--navy); }
.section--gold .step p { color: rgba(19,26,51,0.78); }
/* tidy opening-hours table */
.hours { max-width: 26rem; border-top: 1px solid var(--line); }
.hours-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem; padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
.hours-row dt { color: var(--ink); font-weight: 500; letter-spacing: 0.01em; }
.hours-row dd { margin: 0; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-row--off dt { color: var(--ink-faint); }
.hours-row--off dd { color: var(--ink-faint); font-style: italic; }
/* light-blue mat frame to separate a photo from warm bg */
.figure--blue-frame { border-radius: 14px; box-shadow: 0 0 0 1px var(--blue), 0 0 0 8px var(--blue-soft), 0 26px 56px -30px rgba(29,79,110,.55); }
/* value panels: special treatment */
.panel.panel--value { position: relative; overflow: hidden; background: #fff; border-color: rgba(11,15,30,.06); border-radius: 16px; box-shadow: 0 20px 46px -28px rgba(40,30,12,.5); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.panel--value::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-deep)); }
.panel.panel--value h3 { position: relative; padding-bottom: 0.85rem; color: var(--ink); }
.panel.panel--value h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: var(--gold); }
.panel.panel--value p { color: rgba(28,24,20,.82); }
.media-grid--2 .panel.panel--value:hover { transform: translateY(-6px); box-shadow: 0 32px 64px -28px rgba(40,30,12,.58); }
.panel--value .panel-index { position: absolute; top: 0.9rem; right: 1.5rem; font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600; font-size: 3.1rem; line-height: 1; color: var(--gold-deep); opacity: 0.28; pointer-events: none; transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.media-grid--2 .panel--value:hover .panel-index { opacity: 0.5; transform: translateY(-2px) scale(1.04); }
/* hero direct-online-booking note */
.hero-note { margin-top: 1.1rem; font-size: 0.82rem; letter-spacing: 0.04em; color: rgba(247,244,239,.82); display: inline-flex; align-items: center; gap: 0.55rem; }
.hero-note::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(176,147,94,.25); flex: none; }

/* Behandlungen parent + carets + shop */
.main-nav .caret { font-size: 0.72em; opacity: 0.75; }
.main-nav .nav-parent { cursor: pointer; }
/* first nav item: left-align its dropdown so it doesn't clip near the brand */
.main-nav > .has-sub:first-child .submenu { left: 0; transform: translateX(0) translateY(8px); }
.main-nav > .has-sub:first-child:hover .submenu,
.main-nav > .has-sub:first-child:focus-within .submenu { transform: translateX(0) translateY(0); }
.main-nav .nav-shop .caret { opacity: 0.6; }

/* mobile submenu */
.mobile-sub { display: flex; flex-direction: column; gap: 0.1rem; padding: 0.2rem 0 0.6rem 1rem; }
.mobile-sub a {
  font-family: var(--sans) !important;
  font-size: 1rem !important;
  color: rgba(247,244,239,0.66) !important;
  padding: 0.3rem 0 !important;
  opacity: 1 !important;
  transform: none !important;
}
.mobile-sub a:hover { color: var(--gold-soft) !important; }

/* scrolled / solid header */
.site-header.is-solid {
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.site-header.is-solid .brand,
.site-header.is-solid .main-nav a { color: var(--ink); }
.site-header.is-solid .main-nav a[aria-current="page"] { color: var(--gold-deep); }

/* header on light-hero pages (interior pages) starts solid-ink text */
.site-header.header--light .brand,
.site-header.header--light .main-nav a { color: var(--ink); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--paper);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.is-solid .nav-toggle,
.site-header.header--light .nav-toggle { color: var(--ink); }
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; left: 0; }
.nav-toggle span::after { position: absolute; top: 6px; left: 0; }

/* ---------- mobile menu overlay ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy-deep);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}
.mobile-menu-close {
  width: 46px; height: 46px;
  border: 1px solid var(--line-light);
  background: transparent;
  color: var(--paper);
  border-radius: var(--radius);
  font-size: 1.4rem;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 2rem;
  flex: 1;
  justify-content: center;
}
.mobile-nav a {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  font-weight: 400;
  color: var(--paper);
  padding-block: 0.35rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s var(--ease);
}
.mobile-nav a:hover { color: var(--gold-soft); }
.mobile-menu.is-open .mobile-nav a { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open .mobile-nav a:nth-child(1) { transition-delay: 0.12s; }
.mobile-menu.is-open .mobile-nav a:nth-child(2) { transition-delay: 0.17s; }
.mobile-menu.is-open .mobile-nav a:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu.is-open .mobile-nav a:nth-child(4) { transition-delay: 0.27s; }
.mobile-menu.is-open .mobile-nav a:nth-child(5) { transition-delay: 0.32s; }
.mobile-menu.is-open .mobile-nav a:nth-child(6) { transition-delay: 0.37s; }
.mobile-menu.is-open .mobile-nav a:nth-child(7) { transition-delay: 0.42s; }
.mobile-menu.is-open .mobile-nav a:nth-child(8) { transition-delay: 0.47s; }
.mobile-menu.is-open .mobile-nav a:nth-child(9) { transition-delay: 0.52s; }
.mobile-menu-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
}

/* ---------- hero (home) ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(94vh, 920px);
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 26, 51, 0.86) 0%, rgba(19, 26, 51, 0.58) 42%, rgba(19, 26, 51, 0.12) 80%),
    linear-gradient(0deg, rgba(19, 26, 51, 0.72) 0%, rgba(19, 26, 51, 0) 52%);
}
.hero-inner { position: relative; z-index: 2; padding-block: clamp(3rem, 8vw, 6rem); width: 100%; }
.hero h1 { color: var(--paper); max-width: 16ch; margin-bottom: 1.5rem; }
.hero .hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 48ch;
  color: rgba(247, 244, 239, 0.88);
  font-weight: 350;
}
.hero .kicker { color: var(--gold-soft); }
.hero .kicker::before { background: var(--gold-soft); }
.hero-scroll {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: clamp(2rem, 5vw, 3.2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.7);
  writing-mode: vertical-rl;
}
.hero-scroll .bar {
  writing-mode: horizontal-tb;
  width: 1px; height: 54px;
  background: linear-gradient(var(--gold-soft), transparent);
}

/* ---------- page hero (interior pages) ---------- */
.page-hero {
  padding-top: clamp(9rem, 14vw, 12rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--paper-2);
  position: relative;
}
.page-hero .breadcrumb {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.5rem;
}
.page-hero .breadcrumb a { color: var(--gold-deep); }
.page-hero h1 { max-width: 18ch; margin-bottom: 1.4rem; }
.page-hero .lead { margin-bottom: 0; }

/* ---------- editorial split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split--text-img { grid-template-columns: 1fr 1.05fr; }
.split--narrow-img { grid-template-columns: 1.2fr 0.9fr; }
.split--top { align-items: start; }

.figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-3);
}
.figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.figure--tall { aspect-ratio: 4 / 5; }
.figure--portrait { aspect-ratio: 3 / 4; }
.figure--wide { aspect-ratio: 16 / 11; }
.figure--devices { aspect-ratio: 5 / 6; max-width: 540px; margin-inline: auto; }
.figure--banner { aspect-ratio: 16 / 9; }
.figure--square { aspect-ratio: 1 / 1; }
.figure--banner img { object-fit: contain; background: #fff; }
.figure--video { aspect-ratio: 4 / 5; background: #fff; max-width: 540px; margin-inline: auto; }
.figure video { width: 100%; height: 100%; object-fit: cover; display: block; background: #fff; }
.figure--device { aspect-ratio: auto; height: clamp(340px, 36vw, 440px); background: #fff; }
.figure--device img { object-fit: contain; padding: clamp(0.6rem, 2vw, 1.6rem); }
.figure--square { aspect-ratio: 1 / 1; }
.figure figcaption {
  font-size: 0.82rem;
  color: var(--ink-faint);
  padding-top: 0.85rem;
  line-height: 1.5;
}
.figure-cap {
  font-size: 0.82rem;
  color: var(--ink-faint);
  padding-top: 0.85rem;
  line-height: 1.5;
  max-width: 46ch;
}

/* framed image with offset gold border accent */
.figure-frame { position: relative; }
.figure-frame::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.55;
}

/* ---------- why grid (airy, iconed) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}
.why-item { display: flex; flex-direction: column; align-items: flex-start; }
.why-ico {
  width: 66px; height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(203, 185, 143, 0.42);
  border-radius: 50%;
  margin-bottom: 1.6rem;
  position: relative;
}
.why-ico::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(203, 185, 143, 0.14);
  border-radius: 50%;
}
.why-ico svg { width: 28px; height: 28px; display: block; position: relative; z-index: 1; }
.why-item h3 { margin-bottom: 0.7rem; }
.why-item p { margin: 0; font-size: 0.99rem; line-height: 1.7; color: var(--ink-soft); }
:is(.section--blue, .section--ocean, .section--navy) .why-item p { color: rgba(247, 244, 239, 0.74); }
@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; gap: 2.4rem; }
}

/* ---------- value list (numbered, hairline) ---------- */
.value-grid--4 { grid-template-columns: repeat(4, 1fr) !important; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.value-item {
  padding: 2.2rem clamp(1rem, 2vw, 2rem) 0.5rem;
  border-right: 1px solid var(--line);
}
.value-item:last-child { border-right: none; }
.value-num {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  margin-bottom: 1.4rem;
}
.value-item h3 { margin-bottom: 0.7rem; }
.value-item p { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 1.6rem; }

/* ---------- treatment tiles ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
}
.tiles--3 { grid-template-columns: repeat(3, 1fr); }
.tiles--2 { grid-template-columns: repeat(2, 1fr); }
.tile { display: flex; flex-direction: column; }
.tile-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  background: var(--paper-3);
  margin-bottom: 1.3rem;
}
.tile-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.tile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(19, 26, 51, 0.35), rgba(19, 26, 51, 0) 55%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.tile:hover .tile-media img { transform: scale(1.05); }
.tile:hover .tile-media::after { opacity: 1; }
/* freigestelltes Gerät — schwebend auf hellem Grund */
.tile-media--float { background: linear-gradient(158deg, #faf7f2 0%, #ece4d8 100%); }
.tile-media--float::after { display: none; }
.tile-media--float img {
  object-fit: contain;
  padding: 7% 7%;
  filter: drop-shadow(0 16px 22px rgba(20, 26, 40, 0.20));
}
.tile:hover .tile-media--float img { transform: scale(1.06); }
.tile-num {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--gold-deep);
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}
.tile h3 { margin-bottom: 0.5rem; }
.tile p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1rem; }
.tile .link-arrow { margin-top: auto; }

/* Schwerpunkte als eingefasste Karten (nur Startseite) */
.tiles--cards .tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.1rem, 1.7vw, 1.6rem);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.tiles--cards .tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: transparent; }
.tiles--cards .tile-media { aspect-ratio: 4 / 3; margin-bottom: 1.25rem; }

/* kompakte Kachel-Variante (kleiner, z. B. Spa-Impressionen) */
.tiles--sm { gap: clamp(0.75rem, 1.4vw, 1.15rem); }
.tiles--sm.tiles--cards .tile { padding: clamp(0.7rem, 1.1vw, 0.95rem); }
.tiles--sm .tile-media { aspect-ratio: 4 / 5; margin-bottom: 0.85rem; }
.tiles--sm .tile-num { font-size: 0.78rem; margin-bottom: 0.35rem; }
.tiles--sm .tile h3 { font-size: 1.02rem; margin-bottom: 0.3rem; }
.tiles--sm .tile p { font-size: 0.86rem; line-height: 1.55; margin-bottom: 0; }
@media (max-width: 760px) { .tiles--sm { grid-template-columns: repeat(2, 1fr); } }

/* ---------- service cards ---------- */
.svc-head {
  max-width: 760px;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
}
.svc-head h3 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); margin-top: 0.3rem; }
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
}
.svc-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.7rem, 2.6vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: transparent; }
.svc-card-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1.1rem;
}
.svc-card h3 { margin-bottom: 0.6rem; }
.svc-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0 0 1.4rem; flex: 1; }
.svc-card .link-arrow { margin-top: auto; }

/* ---------- steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  counter-reset: step;
}
.step { position: relative; padding-top: 2.6rem; border-top: 1px solid var(--line); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 1.4rem; left: 0;
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
}
.step h3 { margin-bottom: 0.6rem; }
.step p { color: var(--ink-soft); font-size: 0.97rem; margin: 0; }
.section--navy .step { border-top-color: var(--line-light); }
.section--navy .step p { color: rgba(247, 244, 239, 0.78); }

/* ---------- quotes ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.quote {
  position: relative;
  padding-top: 2.8rem;
  border-top: 1px solid var(--line);
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: 0.4rem; left: -0.1rem;
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--gold);
}
.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.quote .stars { color: var(--gold); letter-spacing: 0.18em; font-size: 0.85rem; margin-top: 1.2rem; }
.section--navy .quote { border-top-color: var(--line-light); }
.section--navy .quote p { color: var(--paper); }

/* ---------- media grid ---------- */
.media-grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.media-grid--2 { grid-template-columns: repeat(2, 1fr); }
.media-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- callout / cta band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 20ch; margin-inline: auto; margin-bottom: 1.3rem; }
.cta-band .lead { margin-inline: auto; margin-bottom: 0; }
.cta-band .btn-row { justify-content: center; }

/* ---------- gift card visual ---------- */
.giftcard {
  position: relative;
  width: 100%;
  aspect-ratio: 1.6 / 1;
  border-radius: 16px;
  padding: clamp(1.5rem, 3.4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(120deg, transparent 40%, rgba(203, 185, 143, 0.14) 50%, transparent 60%),
    linear-gradient(152deg, #26315a 0%, #1b2342 45%, #121931 100%);
  box-shadow: var(--shadow-lift);
}
.giftcard::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(203, 185, 143, 0.38);
  border-radius: 9px;
  pointer-events: none;
}
.giftcard-top { display: flex; align-items: center; gap: 0.75rem; position: relative; z-index: 1; }
.giftcard-mark { height: clamp(36px, 7vw, 50px); width: auto; }
.giftcard-brand {
  font-family: var(--serif);
  color: var(--gold-soft);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  letter-spacing: 0.01em;
}
.giftcard-bottom { position: relative; z-index: 1; }
.giftcard-label {
  font-family: var(--serif);
  color: var(--paper);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.04;
  margin: 0;
}
.giftcard-sub {
  color: rgba(247, 244, 239, 0.62);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0.55rem 0 0;
}

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.6rem);
}
.section--paper2 .panel { background: var(--white); border-color: transparent; box-shadow: var(--shadow-soft); }
.panel h3 { margin-bottom: 0.8rem; }
.panel p { color: var(--ink-soft); }

/* stat / info cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.info-cell {
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  border-right: 1px solid var(--line);
}
.info-cell:last-child { border-right: none; }
.info-cell h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.info-cell p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ---------- FAQ accordion ---------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.6rem 0;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 0.35rem;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold-deep);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.faq-icon::before { width: 16px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 16px; }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease);
}
.faq-a-inner { padding: 0 0 1.7rem; max-width: 70ch; color: var(--ink-soft); }
.faq-a-inner p { margin: 0; }
.faq-a-inner a { color: var(--gold-deep); border-bottom: 1px solid var(--gold-soft); }

/* ---------- treatment menu (accordion: ab-price + aufklappen) ---------- */
.treat-q { align-items: center; }
.treat-name { display: flex; flex-direction: column; gap: 0.25rem; }
.treat-sub { font-family: var(--sans); font-size: 0.84rem; line-height: 1.4; color: var(--ink-faint); font-weight: 400; letter-spacing: 0.01em; }
.treat-right { display: flex; align-items: center; gap: 1.3rem; flex: none; }
.treat-price { font-family: var(--serif); color: var(--gold-deep); font-size: clamp(1rem, 1.5vw, 1.2rem); white-space: nowrap; }
.treat-q .faq-icon { margin-top: 0; }
.faq-a-inner ul.treat-points { margin: 0.2rem 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.faq-a-inner ul.treat-points li { display: flex; gap: 0.6rem; align-items: flex-start; }
.faq-a-inner ul.treat-points li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex: none; margin-top: 0.6rem; }
.treat-meta { margin-top: 0.9rem !important; font-size: 0.88rem; color: var(--ink-faint); }
:is(.section--blue, .section--ocean, .section--navy) .treat-sub { color: rgba(247, 244, 239, 0.6); }
:is(.section--blue, .section--ocean, .section--navy) .treat-price { color: var(--gold-soft); }
:is(.section--blue, .section--ocean, .section--navy) .treat-meta { color: rgba(247, 244, 239, 0.6); }

/* ---------- check list ---------- */
.check-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.check-list li {
  position: relative;
  padding: 0.95rem 0 0.95rem 2.1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.check-list li:last-child { border-bottom: 1px solid var(--line); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 1px; top: 1.2rem;
  width: 6px; height: 11px;
  border-right: 1.5px solid var(--gold-deep);
  border-bottom: 1.5px solid var(--gold-deep);
  border-top: none; border-left: none;
  transform: rotate(45deg);
}

/* ---------- badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(176, 147, 94, 0.12);
  border: 1px solid rgba(176, 147, 94, 0.4);
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
}
.badge--soon { color: var(--gold-deep); }
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ---------- waitlist form ---------- */
.waitlist {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.section--ocean .waitlist, .section--blue .waitlist { box-shadow: var(--shadow-soft); border-color: transparent; }
.waitlist h3 { margin-bottom: 0.5rem; color: var(--gold-deep); }
.waitlist p.note { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.4rem; }
.wl-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.wl-field label { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.wl-field input {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
}
.wl-field input:focus { outline: none; border-color: var(--gold); }
.waitlist .btn { width: 100%; margin-top: 0.4rem; }
.wl-ok { display: none; color: var(--gold-deep); font-weight: 600; padding-top: 0.8rem; }
.waitlist.is-sent .wl-ok { display: block; }

/* ---------- price list ---------- */
.price-list { border-top: 1px solid var(--line); }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.price-row .price-name { font-size: 1.05rem; }
.price-row .price-name small { display: block; color: var(--ink-faint); font-size: 0.85rem; margin-top: 0.2rem; font-weight: 400; letter-spacing: 0; }
.price-row .price-val { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); white-space: nowrap; }
.price-row .price-val s { color: var(--ink-faint); font-size: 0.92rem; margin-right: 0.5rem; }

/* ---------- before / after ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem,2vw,1.6rem); }
.ba-grid .figure { aspect-ratio: auto; }
.ba-grid img { border-radius: var(--radius); }

/* ---------- shop bridge ---------- */
.shop-stack { display: grid; gap: clamp(1rem, 2vw, 1.4rem); }
.uecare-mark { width: clamp(120px, 14vw, 158px); height: auto; display: block; margin-bottom: 1.2rem; }
/* freigestelltes Objekt auf farbigem Grund (transparent, mit Schatten) */
.figure--object { background: transparent; aspect-ratio: 3 / 4; overflow: visible; }
.figure--object img { object-fit: contain; padding: 4%; filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.38)); }

/* schlanke Produkt-Säule: Gerät auf weißer Karte (über dunklem Grund) */
.figure--pillar {
  aspect-ratio: auto;
  height: clamp(420px, 46vw, 560px);
  max-width: 300px;
  margin-inline: auto;
  background: var(--white);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.figure--pillar img { object-fit: contain; padding: clamp(1.6rem, 3.2vw, 2.6rem); }
.figure--video-sq { aspect-ratio: 1 / 1; background: #0c1120; }
.shop-stack .figure { aspect-ratio: 16 / 9; }

/* ---------- map ---------- */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
  background: var(--paper-3);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(247, 244, 239, 0.72);
  padding-top: clamp(4rem, 7vw, 6rem);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}
.footer-brand .brand { color: var(--paper); margin-bottom: 1.4rem; }
.footer-brand p { font-size: 0.92rem; max-width: 34ch; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.3rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a, .footer-col li { font-size: 0.92rem; color: rgba(247, 244, 239, 0.72); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-hours span { display: flex; justify-content: flex-start; gap: 0.6rem; font-size: 0.9rem; }
.footer-hours span b { font-weight: 500; color: var(--paper); white-space: nowrap; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.6rem;
  border-top: 1px solid var(--line-light);
  font-size: 0.82rem;
}
.footer-bottom nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ---------- mobile sticky CTA ---------- */
.mobile-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  display: none;
  gap: 0.6rem;
  padding: 0.7rem;
  background: rgba(19, 26, 51, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-light);
}
.mobile-cta .btn { flex: 1; padding-inline: 0.8rem; }

/* ---------- WhatsApp floating button ---------- */
.wa-fab {
  position: fixed;
  right: clamp(1rem, 3vw, 1.7rem);
  bottom: clamp(1rem, 3vw, 1.7rem);
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.82rem 1.2rem 0.82rem 0.95rem;
  background: var(--navy);
  color: var(--paper);
  border-radius: 999px;
  box-shadow: 0 16px 34px -12px rgba(19, 26, 51, 0.55);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wa-fab:hover { transform: translateY(-2px); background: var(--navy-deep); box-shadow: 0 22px 40px -12px rgba(19, 26, 51, 0.65); }
.wa-fab svg { width: 21px; height: 21px; flex: none; }
.wa-fab svg path { fill: var(--gold-soft); }
.wa-fab .wa-label { white-space: nowrap; }
@media (max-width: 1024px) {
  .wa-fab { bottom: calc(4.6rem + 0.7rem); padding: 0.85rem; }
  .wa-fab .wa-label { display: none; }
}

/* ---------- scroll reveal ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js [data-reveal-delay="1"] { transition-delay: 0.08s; }
.js [data-reveal-delay="2"] { transition-delay: 0.16s; }
.js [data-reveal-delay="3"] { transition-delay: 0.24s; }
.js [data-reveal-delay="4"] { transition-delay: 0.32s; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1080px) {
  .main-nav, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 860px) {
  .split, .split--text-img, .split--narrow-img { grid-template-columns: 1fr; gap: 2.5rem; }
  .split .figure-frame::before { inset: 10px -10px -10px 10px; }
  .value-grid, .svc-list { grid-template-columns: 1fr; border-top: none; }
  .value-item { border-right: none; border-top: 1px solid var(--line); padding-inline: 0; }
  .svc-row { border-right: none; padding-inline: 0; }
  .svc-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .media-grid--2, .media-grid--3 { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .tiles--3 { grid-template-columns: 1fr 1fr; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 4.6rem; }
  .hero { min-height: 88vh; }
  .hero-scroll { display: none; }
}

@media (max-width: 520px) {
  .tiles, .tiles--3, .tiles--2, .info-grid { grid-template-columns: 1fr; }
  .info-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .info-cell:last-child { border-bottom: none; }
  h1 { font-size: clamp(2.3rem, 11vw, 3rem); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   MOBILE-HOCHFORMAT FEINSCHLIFF  (Handy, portrait)
   - Kachelgruppen werden zu wischbaren Karussells (Peek der nächsten Karte)
   - Buttons stapeln sich gut tappbar
   - großzügige, klar lesbare Abstände
   ============================================================ */
@media (max-width: 640px) {

  /* Sicherheitsnetz gegen seitliches Verrutschen der Seite */
  html, body { overflow-x: hidden; }

  /* --- Kachel-Gruppen als horizontale Swipe-Karussells --- */
  .tiles, .tiles--2, .tiles--3, .tiles--sm {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    gap: 0.95rem;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
  }
  .tiles::-webkit-scrollbar,
  .tiles--2::-webkit-scrollbar,
  .tiles--3::-webkit-scrollbar,
  .tiles--sm::-webkit-scrollbar { display: none; }
  .tiles > *, .tiles--2 > *, .tiles--3 > *, .tiles--sm > * {
    scroll-snap-align: start;
    height: auto;
  }
  .tiles--sm { grid-auto-columns: 72%; }

  /* Swipe-Hinweis unter Karussells */
  .tiles-hint {
    display: flex !important;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-top: 0.9rem;
  }

  /* --- Buttons gut tappbar: stapeln, volle Breite --- */
  .btn-row { flex-direction: column; align-items: stretch; gap: 0.7rem; }
  .btn-row .btn { width: 100%; justify-content: center; min-height: 52px; }

  /* --- Etwas kompaktere Sektionsabstände fürs Handy --- */
  .section { padding-block: clamp(2.6rem, 11vw, 3.6rem); }
  .container { padding-inline: 1.25rem; }

  /* Bilder nie abgeschnitten wirken lassen */
  .figure, .figure--portrait, .figure--tall { width: 100%; }

  /* Tabellen / breite Inhalte horizontal scrollbar */
  .hours-table { width: 100%; }
}

/* Sehr schmale Geräte */
@media (max-width: 380px) {
  .tiles, .tiles--2, .tiles--3 { grid-auto-columns: 86%; }
  .tiles--sm { grid-auto-columns: 78%; }
}
