/* =================================================================
   CLAURA — clean static rebuild
   Edit the tokens in :root to re-theme the whole site.
   ================================================================= */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Halant";
  src: url("../assets/fonts/halant-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Halant";
  src: url("../assets/fonts/halant-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("../assets/fonts/geist-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("../assets/fonts/geist-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("../assets/fonts/geist-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  /* surfaces */
  --cream: #fcf6ef;
  --cream-2: #f6f0e9;
  --cream-3: #faf6f2;
  --sand: #efe7dd;
  --tan: #e8d3c0;
  --tan-2: #dab697;

  /* ink / text */
  --ink: #2b180a;
  --ink-2: #3e2407;
  --muted: #94877c;
  --dark: #241405;
  --dark-2: #1c1006;

  /* misc */
  --white: #ffffff;
  --star: #c98a4e;
  --good: #6f9b6a;
  --line: rgba(43, 24, 10, 0.10);
  --line-on-dark: rgba(255, 255, 255, 0.14);

  /* type */
  --font-serif: "Halant", Georgia, "Times New Roman", serif;
  --font-sans: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(64px, 9vw, 128px);

  /* radii & shadow */
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 28px;
  --r-pill: 999px;
  --shadow: 0 24px 60px -28px rgba(43, 24, 10, 0.32);
  --shadow-sm: 0 10px 30px -18px rgba(43, 24, 10, 0.4);
}

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

/* native smooth anchor scrolling, offset for the sticky header */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { margin: 0; font-weight: 400; }

p { margin: 0; }

::selection { background: var(--tan-2); color: var(--ink); }

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

.section { padding-block: var(--section-y); }

.section-head { max-width: 640px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- Typography helpers ---------- */
.h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.2rem + 3.4vw, 3.25rem);
  line-height: 1.07;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.85rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.lead {
  margin-top: 20px;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  color: var(--muted);
  max-width: 56ch;
}
.section-head--center .lead { margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.eyebrow--center { display: flex; justify-content: center; }

.stars { color: var(--star); letter-spacing: 2px; font-size: 0.9rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 11px 18px; font-size: 0.9rem; }
.btn--block { width: 100%; }

.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--ink-2); }

.btn--light { background: var(--cream-3); color: var(--ink); border-color: var(--line); }
.btn--light:hover { background: var(--white); }

.btn__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  font-size: 0.55rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  padding-left: 2px;
}
.btn--dark .btn__play { background: rgba(255, 255, 255, 0.16); }

/* =================================================================
   HEADER / NAV
   ================================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background-color .3s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-size: 0.95rem;
  color: var(--ink-2);
  position: relative;
  transition: color .2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: var(--ink);
  transition: width .25s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.nav__toggle span {
  display: block;
  width: 18px; height: 1.6px;
  background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.3px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.3px) rotate(-45deg); }

.nav__mobile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px var(--gutter) 24px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.nav__mobile[hidden] { display: none; }
.nav__mobile a {
  padding: 12px 4px;
  font-size: 1.05rem;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.nav__mobile a.btn { border: none; margin-top: 12px; color: var(--white); }

/* =================================================================
   HERO — responsive
   Mobile: full-bleed auto-slideshow with text overlaid at the bottom.
   Desktop (>=861px): split — text left, slideshow panel right.
   The same slideshow markup is reused; only the layout changes.
   ================================================================= */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: calc(100vh - 72px);
  min-height: calc(100svh - 72px);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero-1 { background-image: url(../assets/img/hero-1.jpg); }
.hero-2 { background-image: url(../assets/img/hero-2.jpg); }
.hero-3 { background-image: url(../assets/img/hero-3.jpg); }
.hero-4 { background-image: url(../assets/img/hero-4.jpg); }
.hero-5 { background-image: url(../assets/img/hero-5.jpg); }
.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 16, 6, .86) 0%, rgba(28, 16, 6, .12) 52%, rgba(28, 16, 6, .42) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: clamp(32px, 7vw, 64px) var(--gutter) clamp(40px, 9vw, 76px);
  color: #fff;
}
.hero__content .eyebrow { margin-bottom: 16px; color: rgba(255, 255, 255, .86); }
.hero__content .eyebrow .stars { color: #f0c89a; }
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 1.6rem + 5.2vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero__sub {
  margin-top: 18px;
  max-width: 42ch;
  font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.15rem);
  color: rgba(255, 255, 255, .85);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
/* hero button colours flip between the two layouts */
.hero__cta .btn-primary { background: var(--cream-3); color: var(--ink); }
.hero__cta .btn-primary:hover { background: #fff; }
.hero__cta .btn-secondary { background: transparent; border: 1px solid rgba(255, 255, 255, .6); color: #fff; }
.hero__cta .btn-secondary:hover { background: rgba(255, 255, 255, .14); }

@media (min-width: 861px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: min(86vh, 780px);
  }
  .hero__media { position: relative; grid-column: 2; grid-row: 1; }
  .hero__shade { display: none; }
  .hero__content {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: none;
    color: var(--ink);
    padding: clamp(40px, 5vw, 72px);
    /* align the headline's left edge with the page container content below */
    padding-left: calc(max(0px, (100vw - var(--container)) / 2) + var(--gutter));
  }
  .hero__content .eyebrow { color: var(--ink-2); }
  .hero__content .eyebrow .stars { color: var(--star); }
  .hero__title { color: var(--ink); font-size: clamp(2.4rem, 1.4rem + 3.2vw, 3.9rem); }
  .hero__sub { color: var(--muted); }
  .hero__cta .btn-primary { background: var(--ink); color: #fff; }
  .hero__cta .btn-primary:hover { background: var(--ink-2); }
  .hero__cta .btn-secondary { background: var(--cream-3); border: 1px solid var(--line); color: var(--ink); }
  .hero__cta .btn-secondary:hover { background: #fff; }
}

/* =================================================================
   BRAND MARQUEE
   ================================================================= */
.marquee-section { padding-block: clamp(36px, 5vw, 64px); }
.marquee__label {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 30px;
}
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(40px, 7vw, 84px);
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink-2);
  opacity: 0.8;
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1rem + 1.3vw, 1.9rem);
  white-space: nowrap;
}
.brand::before {
  content: "✦";
  margin-right: 0.7em;
  color: var(--tan-2);
  font-size: 0.55em;
}

/* =================================================================
   ABOUT
   ================================================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about__copy .lead { max-width: 44ch; }
.about__media img {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
}

/* shared stat blocks */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(48px, 7vw, 90px);
  padding-top: clamp(40px, 5vw, 60px);
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 10px; }
.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 1.4rem + 3.6vw, 3.6rem);
  line-height: 1;
  color: var(--ink);
}
.stat__label { color: var(--muted); font-size: 0.98rem; max-width: 22ch; }

/* =================================================================
   SERVICES
   ================================================================= */
.services { background: var(--cream-2); }
.services__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  border-top: 1px solid var(--line);
}
.service-tab {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 6px;
  background: transparent;
  border: none;
  border-top: 2px solid transparent;
  margin-top: -1px;
  color: var(--muted);
  text-align: left;
  transition: color .25s ease, border-color .25s ease;
}
.service-tab__name { font-family: var(--font-serif); font-size: clamp(1.3rem, 1rem + 1vw, 1.7rem); }
.service-tab__num { font-size: 0.85rem; font-variant-numeric: tabular-nums; }
.service-tab:hover { color: var(--ink-2); }
.service-tab.is-active { color: var(--ink); border-top-color: var(--ink); }

.services__panels { margin-top: clamp(28px, 4vw, 44px); }
.service-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  animation: fadeIn .5s ease;
}
.service-panel[hidden] { display: none; }
.service-panel__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.service-panel__body .h3 { margin-bottom: 16px; }
.service-panel__body p { color: var(--muted); font-size: 1.1rem; max-width: 40ch; }
.service-panel__price { margin-top: 18px; font-family: var(--font-serif); font-size: 1.35rem; color: var(--ink); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.services__foot { margin-top: clamp(36px, 5vw, 56px); }

/* =================================================================
   TESTIMONIAL
   ================================================================= */
.testimonial__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.testimonial__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.testimonial__quote blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 1.1rem + 2.2vw, 2.6rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.testimonial__quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 28px;
}
.testimonial__name { font-weight: 500; }
.testimonial__role { color: var(--muted); font-size: 0.95rem; }

/* =================================================================
   PROCESS
   ================================================================= */
.process__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 72px);
}
.process__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 26px; }
.watch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}
.watch__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 0.6rem;
  padding-left: 2px;
  transition: background-color .25s ease, color .25s ease;
}
.watch:hover .watch__icon { background: var(--ink); color: var(--white); border-color: var(--ink); }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.step {
  padding: clamp(26px, 3vw, 38px);
  background: var(--cream-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.step__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.step__num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ink);
}
.step__when {
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--tan);
  color: var(--ink-2);
}
.step__title { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 12px; }
.step p { color: var(--muted); }

/* =================================================================
   LOCATION
   ================================================================= */
.location__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.location__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.location__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 18px);
  margin-top: 32px;
}
.location-card {
  padding: 20px 22px;
  border-radius: var(--r);
  background: var(--cream-3);
  border: 1px solid var(--line);
}
.location-card__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.location-card__value { color: var(--ink-2); line-height: 1.5; }
.location__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* =================================================================
   PRICES
   ================================================================= */
.prices { background: var(--cream-2); }
.price-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
}
.price-group {
  padding: clamp(26px, 3vw, 40px);
  border-radius: var(--r-lg);
  background: var(--cream-3);
  border: 1px solid var(--line);
}
.price-group__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.8rem);
  margin-bottom: 18px;
}
.price-list { list-style: none; margin: 0; padding: 0; }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.price-row:last-child { border-bottom: none; }
.price-row__name { color: var(--ink); font-weight: 500; }
.price-row__meta { display: block; margin-top: 3px; font-weight: 400; font-size: 0.85rem; color: var(--muted); }
.price-row__price {
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ink);
}
.price-group__note { margin: 22px 0 20px; font-size: 0.85rem; color: var(--muted); }

/* =================================================================
   SLIDER (gallery + cards variants)
   ================================================================= */
.slider { position: relative; }
.slider__viewport { overflow: hidden; border-radius: var(--r-lg); }
.slider__track {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider__track::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 100%; scroll-snap-align: center; }

/* gallery variant — one large portrait image per view, centred */
.slider--gallery { max-width: 540px; margin-inline: auto; }
.slider--gallery .slide { flex-basis: 100%; }
.gallery-slide { position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden; }
.gallery-slide img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.gallery-slide figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 28px 22px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 0.9rem + 0.8vw, 1.5rem);
  background: linear-gradient(to top, rgba(28, 16, 6, 0.74), rgba(28, 16, 6, 0));
}

/* cards variant — peek of several */
.slider--cards .slide { flex: 0 0 78%; }
.result-card { margin: 0; border-radius: var(--r-lg); overflow: hidden; background: var(--cream-3); box-shadow: var(--shadow-sm); }
.result-card img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.result-card figcaption { padding: 16px 20px; font-size: 0.98rem; color: var(--ink-2); }

.slider__controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 26px; }
.slider__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream-3);
  color: var(--ink);
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.slider__btn:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.slider__btn:disabled { opacity: 0.35; background: var(--cream-3); color: var(--ink); transform: none; cursor: default; }
.slider__dots { display: flex; align-items: center; gap: 9px; }
.slider__dot {
  width: 8px; height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--tan-2);
  opacity: 0.4;
  transition: opacity .2s ease, transform .2s ease;
}
.slider__dot.is-active { opacity: 1; transform: scale(1.4); }

/* =================================================================
   FAQ
   ================================================================= */
.faq__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.faq__intro { position: sticky; top: 96px; }
.faq__more { margin-top: 24px; color: var(--muted); }
.faq__more a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.faq__list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  font-weight: 500;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}
.faq-item__icon::before { top: 50%; left: 0; width: 100%; height: 1.6px; transform: translateY(-50%); }
.faq-item__icon::after { left: 50%; top: 0; width: 1.6px; height: 100%; transform: translateX(-50%); }
.faq-item[open] .faq-item__icon::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-item__body {
  overflow: hidden;
  /* JS animates height; this transition runs when JS is active */
  transition: height .35s ease;
}
.faq-item__body > p {
  padding-bottom: 26px;
  color: var(--muted);
  max-width: 60ch;
}

/* =================================================================
   FINAL CTA / BOOKING
   ================================================================= */
.cta { background: var(--cream-2); }
.cta__inner {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}
.cta__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.cta__media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }

.cta__panel {
  padding: clamp(28px, 4vw, 52px);
  background: var(--cream-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-align: center;
}
.cta__title { margin-top: 8px; }
.cta__lead { margin-inline: auto; }

.book-form { margin-top: 34px; text-align: left; }
.field { border: none; margin: 0 0 26px; padding: 0; }
.field legend, .field__label { font-size: 0.92rem; font-weight: 500; color: var(--ink-2); margin-bottom: 14px; padding: 0; }
.field__label { display: block; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 11px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink-2);
  font-size: 0.92rem;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.chip:hover { border-color: var(--tan-2); }
.chip.is-selected { background: var(--ink); color: var(--white); border-color: var(--ink); }

.input {
  width: 100%;
  padding: 15px 18px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--cream);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
}
.input:focus { outline: none; border-color: var(--tan-2); box-shadow: 0 0 0 3px rgba(218, 182, 151, 0.3); }
.input.is-error { border-color: #c4583f; }

.book-form .btn { margin-top: 8px; }
.book-form__note { margin-top: 16px; text-align: center; font-size: 0.85rem; color: var(--muted); }
.book-form__success { margin-top: 16px; text-align: center; color: var(--good); font-weight: 500; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: var(--dark); color: rgba(255, 255, 255, 0.72); padding-top: clamp(56px, 7vw, 96px); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.site-footer__logo { font-family: var(--font-serif); font-size: 1.7rem; color: var(--white); }
.site-footer__brand p { margin-top: 12px; max-width: 24ch; color: rgba(255, 255, 255, 0.55); }
.site-footer__col { display: flex; flex-direction: column; gap: 12px; }
.site-footer__col h4 { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); margin-bottom: 6px; }
.site-footer__col a { font-size: 0.95rem; color: rgba(255, 255, 255, 0.72); transition: color .2s ease; }
.site-footer__col a:hover { color: var(--white); }
.site-footer__bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 28px;
  border-top: 1px solid var(--line-on-dark);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

/* =================================================================
   MOTION — intro + scroll-linked fade
   `has-fx` is added to <html> by an inline head script so the
   initial hidden state is set before first paint (and never sticks
   if JS is disabled). JS then drives opacity/transform per scroll.
   ================================================================= */

/* Scroll reveal — fade + slide in once, then stay (JS adds .is-visible) */
.reveal { will-change: opacity, transform; }
.has-fx .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .85s cubic-bezier(.16, 1, .3, 1);
}
.has-fx .reveal.is-visible { opacity: 1; transform: none; }

/* First-load intro veil */
.intro-veil {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream);
  pointer-events: none;
  opacity: 1;
  transition: opacity .85s ease .1s;
}
body.is-loaded .intro-veil { opacity: 0; }

/* First-load hero stagger */
.has-fx .intro-item { opacity: 0; transform: translateY(26px); filter: blur(6px); }
body.is-loaded .intro-item,
body.intro-skip .intro-item { opacity: 1; transform: none; filter: none; }
body.is-loaded .intro-item {
  transition: opacity .9s ease, transform 1s cubic-bezier(.16, 1, .3, 1), filter .9s ease;
  transition-delay: calc(var(--i, 0) * .11s + .25s);
}
.hero__content .intro-item:nth-child(1) { --i: 0; }
.hero__content .intro-item:nth-child(2) { --i: 1; }
.hero__content .intro-item:nth-child(3) { --i: 2; }
.hero__content .intro-item:nth-child(4) { --i: 3; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__actions .btn { display: none; }
  .services__panels .service-panel { grid-template-columns: 1fr; }
  .faq__intro { position: static; }
}

@media (min-width: 861px) {
  .slider--cards .slide { flex-basis: 31%; }
}

@media (max-width: 860px) {
  .about__grid,
  .location__grid,
  .testimonial__grid,
  .process__head,
  .faq__grid,
  .cta__inner { grid-template-columns: 1fr; }

  .testimonial__media { order: 2; }
  .about__media img { aspect-ratio: 16 / 12; }
  .location__media img { aspect-ratio: 4 / 5; }
  .price-menu { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cta__media { min-height: 240px; }
  .cta__media img { min-height: 240px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: 1fr; }
  .services__tabs { grid-template-columns: repeat(2, 1fr); gap: 0 16px; }
  .location__cards { grid-template-columns: 1fr; }
  .slider--cards .slide { flex-basis: 86%; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  .has-fx:not(.force-motion) .reveal,
  .has-fx:not(.force-motion) .intro-item { opacity: 1 !important; transform: none !important; filter: none !important; }
  .has-fx:not(.force-motion) .intro-veil { display: none !important; }
  html:not(.force-motion) .marquee__track,
  html:not(.force-motion) .hero__glow { animation: none !important; }
  html:not(.force-motion) { scroll-behavior: auto; }
}

/* =================================================================
   LEGAL PAGES (Impressum / Datenschutz / AGB / Cookies)
   ================================================================= */
.legal-top { border-bottom: 1px solid var(--line); background: var(--cream); }
.legal-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.legal-top__logo { font-family: var(--font-serif); font-size: 1.5rem; color: var(--ink); }
.legal-top__back { font-size: 0.95rem; color: var(--ink-2); }
.legal-top__back:hover { color: var(--ink); }

.legal { padding-block: clamp(44px, 6vw, 88px); }
.legal__inner { max-width: 760px; margin-inline: auto; }
.legal h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.legal__updated { margin-bottom: 36px; color: var(--muted); font-size: 0.9rem; }
.legal h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.7rem);
  margin: 40px 0 12px;
}
.legal h3 { margin: 24px 0 8px; font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.legal p, .legal li { color: var(--ink-2); line-height: 1.7; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal strong { color: var(--ink); }
.legal__note {
  margin: 0 0 36px;
  padding: 18px 20px;
  border-radius: var(--r);
  background: var(--cream-2);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
}
.legal__note strong { color: var(--ink-2); }
.legal__tonav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.legal__tonav a { font-size: 0.95rem; color: var(--ink-2); text-decoration: none; }
.legal__tonav a:hover { color: var(--ink); text-decoration: underline; }
.legal__tonav a[aria-current="page"] { color: var(--ink); font-weight: 500; }

/* =================================================================
   ACCESSIBILITY + FLOATING WHATSAPP (injected by js/site.js)
   ================================================================= */
:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; border-radius: 3px; }

.skip-link {
  position: fixed;
  top: 10px; left: 10px;
  z-index: 300;
  padding: 11px 18px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-size: .95rem;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.wa-fab {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 26px -8px rgba(0, 0, 0, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-fab:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 16px 30px -8px rgba(0, 0, 0, .5); }

/* =================================================================
   404
   ================================================================= */
.notfound {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.notfound__inner { max-width: 520px; padding: var(--gutter); }
.notfound__code { font-family: var(--font-serif); font-size: clamp(4rem, 2rem + 10vw, 7rem); line-height: 1; color: var(--ink); }
.notfound h1 { font-family: var(--font-serif); font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem); margin: 8px 0 14px; }
.notfound p { color: var(--muted); margin-bottom: 28px; }
.notfound__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =================================================================
   HERO SLIDE INDICATORS (built by main.js) — currentColor adapts
   to the white (mobile overlay) / ink (desktop split) text colour.
   ================================================================= */
.hero__dots { display: flex; gap: 8px; margin-top: 30px; }
.hero__dots button {
  width: 26px; height: 3px; padding: 0;
  border: none; border-radius: 3px;
  background: currentColor; opacity: .3;
  cursor: pointer;
  transition: opacity .25s ease, width .25s ease;
}
.hero__dots button:hover { opacity: .6; }
.hero__dots button.is-active { opacity: 1; width: 34px; }

/* =================================================================
   COOKIE CONSENT (injected by js/site.js)
   ================================================================= */
.cc-banner {
  position: fixed;
  left: clamp(12px, 3vw, 24px);
  bottom: clamp(12px, 3vw, 24px);
  z-index: 150;
  display: none;
  max-width: 380px;
  padding: 18px 20px;
  background: var(--cream-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.cc-banner.is-open { display: block; }
.cc-banner__text { margin-bottom: 14px; font-size: .9rem; line-height: 1.55; color: var(--ink-2); }
.cc-banner__text a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.cc-banner__actions { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 460px) { .cc-banner { right: clamp(12px, 3vw, 24px); max-width: none; } }

@media (prefers-reduced-motion: reduce) {
  .wa-fab { transition: none; }
}
