/* =======================================================
   Monis Massage – statische Seite
   ======================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

svg {
  display: block;
}

/* ---------- Tokens ---------- */
:root {
  --cream: #f7f3ee;
  --paper: #fffdf9;
  --ink: #353330;
  --ink-soft: #4a453f;
  --muted: #746f69;
  --muted-soft: #5c554d;
  --muted-faint: #a49d94;
  --border: #e6ddd3;

  --terracotta: #c87967;
  --terracotta-dark: #b56a58;
  --terracotta-soft: #f4e4de;

  --sage: #97a88f;
  --sage-dark: #869779;
  --sage-soft: #edf1e9;

  --sand: #d7b98c;
  --sand-soft: #f5ecdf;

  --trust-bg: #efe1d2;
  --trust-icon: #ad7e5d;

  --footer-words: #9a8574;
  --footer-legal-sep: rgba(200, 121, 103, 0.5);

  --font-serif: Cambria, 'Times New Roman', Times, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
    Arial, sans-serif;

  --container: 1220px;
  --header-height: 88px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--terracotta-soft);
  color: var(--ink);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section[id] {
  scroll-margin-top: 90px;
}

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

/* ---------- Accent modifiers (reused across cards) ---------- */
.accent-terracotta {
  --accent: var(--terracotta);
  --accent-soft: var(--terracotta-soft);
}
.accent-sage {
  --accent: var(--sage);
  --accent-soft: var(--sage-soft);
}
.accent-sand {
  --accent: var(--sand);
  --accent-soft: var(--sand-soft);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 1rem;
  transition: background-color 0.3s, box-shadow 0.3s, filter 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}
.btn:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.btn:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}
.btn--primary {
  background: var(--terracotta);
  color: #fff;
}
.btn--primary:hover {
  background: var(--terracotta-dark);
}
.btn--secondary {
  background: transparent;
  border: 1px solid rgba(116, 111, 105, 0.4);
  color: var(--ink);
}
.btn--secondary:hover {
  background: rgba(53, 51, 48, 0.05);
}
.btn--white {
  background: #fff;
  color: var(--terracotta);
}
.btn--white:hover {
  background: var(--paper);
}
.btn--green {
  background: var(--sage);
  color: #fff;
}
.btn--green:hover {
  background: var(--sage-dark);
}
.btn--sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}
.btn--block {
  width: 100%;
}

.link-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(151, 168, 143, 0.5);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-soft);
  transition: background-color 0.2s;
}
.link-outline:hover {
  background: var(--sage-soft);
}

/* ---------- Section heading ---------- */
.section-heading {
  margin-bottom: 64px;
  text-align: center;
}
.section-heading--left {
  text-align: left;
}
.section-heading__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 1.3rem + 2vw, 3rem);
  line-height: 1.2;
  color: var(--ink);
}
.section-heading__rule {
  margin-top: 20px;
  width: 56px;
  height: 3px;
  border-radius: 3px;
  background: var(--sand);
}
.section-heading--left .section-heading__rule {
  margin-left: 0;
}
.section-heading:not(.section-heading--left) .section-heading__rule {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Icons ---------- */
.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.chevron {
  transition: transform 0.3s;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 20px 0;
  background: transparent;
  transition: background-color 0.4s, padding 0.4s, box-shadow 0.4s,
    transform 0.3s ease;
}
@media (max-width: 1023px) {
  .site-header {
    padding: 12px 0;
  }
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.site-header.is-scrolled {
  padding: 0;
  background: rgba(255, 253, 249, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1023px) {
  .header-inner {
    padding-left: 24px;
    padding-right: 20px;
  }
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-link:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
  border-radius: 8px;
}
.logo-img {
  height: 68px;
  width: auto;
}
@media (min-width: 768px) {
  .logo-img {
    height: 96px;
  }
}
.logo-signet {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text-main {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--ink);
}
.logo-text-claim {
  display: none;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
@media (min-width: 640px) {
  .logo-text-claim {
    display: block;
  }
}
@media (min-width: 768px) {
  .logo-text-main {
    font-size: 1.5rem;
  }
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}
.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(53, 51, 48, 0.8);
  transition: color 0.2s;
}
.nav-link.is-active,
.mobile-nav-link.is-active {
  color: var(--terracotta);
}
.nav-link:hover {
  color: var(--terracotta);
}
.nav-link:focus-visible {
  outline: 2px solid var(--terracotta);
  border-radius: 4px;
}

.nav-toggle {
  display: flex;
  color: var(--ink);
}
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle .icon {
  width: 26px;
  height: 26px;
}
.nav-toggle-icon--close {
  display: none;
}
.nav-toggle[aria-expanded='true'] .nav-toggle-icon--open {
  display: none;
}
.nav-toggle[aria-expanded='true'] .nav-toggle-icon--close {
  display: block;
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: var(--paper);
  border-top: 0 solid var(--border);
  transition: max-height 0.35s ease, border-top-width 0.35s ease;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu.is-open {
  max-height: 80vh;
  overflow-y: auto;
  border-top-width: 1px;
}
.mobile-menu > .mobile-menu-inner {
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px;
}
.mobile-nav-link {
  text-align: left;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  transition: color 0.2s;
}
.mobile-nav-link:hover {
  color: var(--terracotta);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-inner {
  padding-top: 92px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .hero-inner {
    padding-top: 152px;
    padding-bottom: 80px;
  }
}
.hero-grid {
  display: grid;
  gap: 28px 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 2fr 3fr;
    gap: 40px 56px;
  }
}
.hero-text {
  max-width: 36rem;
}
.hero-badge {
  display: none;
  padding: 6px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .hero-badge {
    display: inline-block;
  }
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 1.6rem + 3vw, 3.75rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--terracotta);
}
.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-cta {
  display: none;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .hero-cta {
    display: flex;
  }
}
@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}
.hero-media {
  position: relative;
  height: 100%;
}
.hero-media-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(53, 51, 48, 0.25);
  height: 100%;
}
.hero-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge-float {
  position: absolute;
  bottom: -24px;
  left: 24px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 20px 30px -10px rgba(53, 51, 48, 0.25);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-badge-float__icon {
  background: var(--terracotta-soft);
  color: var(--terracotta);
  padding: 12px;
  border-radius: 999px;
}
.hero-badge-float__icon .icon {
  width: 22px;
  height: 22px;
}
.hero-badge-float strong {
  display: block;
  color: var(--ink);
  line-height: 1;
  font-weight: 700;
}
.hero-badge-float span {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--trust-bg);
}
.trust-bar-inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .trust-bar-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 16px;
}
@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 32px;
  }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-item .icon {
  width: 32px;
  height: 32px;
  stroke-width: 1.4;
  color: var(--trust-icon);
}
.trust-item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.trust-item span {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.3;
}

/* ---------- Section base ---------- */
.section {
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (min-width: 768px) {
  .section {
    padding-top: 128px;
    padding-bottom: 128px;
  }
}
.section--bordered {
  border-bottom: 1px solid var(--border);
}
.section--paper {
  background: var(--paper);
}
.section--full {
  width: 100%;
}

/* ---------- Audience ---------- */
.audience-grid {
  display: grid;
  gap: 32px;
  align-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.audience-item {
  display: grid;
  grid-template-columns: 2fr 3fr;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
}
.audience-item__media {
  position: relative;
}
.audience-item__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.audience-item__body {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--accent-soft);
}
.audience-item__visible {
  display: flex;
  flex-direction: column;
}
.audience-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.audience-item__icon .icon {
  width: 17px;
  height: 17px;
}
.audience-item__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--ink);
}
.audience-item__teaser {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-soft);
}
.audience-item__more {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-soft);
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.audience-item__toggle {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}
.audience-item__toggle:focus-visible {
  outline: 2px solid var(--accent);
  border-radius: 4px;
}
.audience-item__toggle .chevron {
  width: 14px;
  height: 14px;
}

/* ---------- Massage cards ---------- */
.massage-grid {
  display: grid;
  gap: 32px;
  align-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .massage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.massage-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
@media (min-width: 768px) {
  .massage-card {
    padding: 36px;
  }
}
.massage-card.is-open {
  border-color: var(--terracotta);
}
.massage-card__visible {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.massage-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.massage-card__icon .icon {
  width: 24px;
  height: 24px;
}
.massage-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ink);
}
.massage-tag {
  margin: 10px 0 16px;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
}
.massage-tag__duration {
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--muted-soft);
}
.massage-tag__price {
  padding: 4px 10px;
  color: var(--accent);
  border-left: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
}
.massage-card__desc {
  color: var(--muted);
  margin-bottom: 24px;
  min-height: 48px;
}
.massage-card__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}
.massage-card__bullet {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--ink);
}
.massage-card__bullet .icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--accent);
  flex-shrink: 0;
}
.massage-card__button {
  margin-top: auto;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 500;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: filter 0.2s, box-shadow 0.2s;
}
.massage-card__button:hover {
  filter: brightness(0.93);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.massage-card__button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.massage-card__button .chevron {
  width: 16px;
  height: 16px;
}
.massage-card__detail {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-soft);
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--border);
}
.massage-note {
  margin-top: 40px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Accordion mechanics (shared) ---------- */
.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.35s ease;
}
.accordion-panel > div {
  overflow: hidden;
  min-height: 0;
}
[data-accordion-item].is-open .accordion-panel {
  grid-template-rows: 1fr;
}
[data-accordion-item] .chevron--rotate {
  transform: rotate(0deg);
}
[data-accordion-item].is-open .chevron--rotate {
  transform: rotate(180deg);
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  gap: 56px 32px;
  position: relative;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.process-step__connector {
  display: none;
  position: absolute;
  top: 28px;
  left: 60%;
  width: 100%;
  border-top: 1px dashed rgba(151, 168, 143, 0.5);
}
@media (min-width: 1024px) {
  .process-step__connector {
    display: block;
  }
}
.process-step__icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #fff;
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}
.process-step__icon .icon {
  width: 22px;
  height: 22px;
}
.process-step__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.process-step__subtitle {
  font-size: 0.875rem;
  color: #5c655a;
  max-width: 220px;
}

/* ---------- Voucher ---------- */
.voucher-card {
  background: var(--terracotta);
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: 0 20px 40px -15px rgba(53, 51, 48, 0.3);
}
@media (min-width: 768px) {
  .voucher-card {
    grid-template-columns: 1fr 1fr;
  }
}
.voucher-text {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
@media (min-width: 768px) {
  .voucher-text {
    padding: 64px;
  }
}
.voucher-text .icon {
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}
.voucher-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.25rem);
  margin-bottom: 16px;
  line-height: 1.25;
}
.voucher-desc {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 16px;
}
.voucher-desc--small {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}
.voucher-media {
  position: relative;
  min-height: 280px;
}
.voucher-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voucher-media__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(58, 47, 42, 0.55),
    rgba(58, 47, 42, 0.1) 60%,
    transparent
  );
}
.voucher-media__caption {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
@media (min-width: 768px) {
  .voucher-media__caption {
    padding: 40px;
  }
}
.voucher-media__caption p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  gap: 64px;
  align-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.about-media {
  position: relative;
}
.about-media::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: rgba(244, 228, 222, 0.5);
  border-radius: 48px;
  z-index: -1;
}
.about-media__ratio {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
}
.about-media img {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}
.about-text p + p {
  margin-top: 20px;
}
.about-text p {
  color: var(--ink-soft);
  font-size: 1.125rem;
  line-height: 1.75;
}
.about-quals {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .about-quals {
    grid-template-columns: 1fr 1fr;
  }
}
.about-qual {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-qual .icon {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  color: var(--terracotta);
  flex-shrink: 0;
}
.about-qual span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
}

/* ---------- FAQ ---------- */
.faq-section {
  width: 100%;
  background: rgba(244, 228, 222, 0.4);
}
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.faq-item__question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item__question:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: -2px;
}
.faq-item__question span {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--ink);
}
.faq-item__question .chevron {
  width: 20px;
  height: 20px;
  color: var(--terracotta);
  flex-shrink: 0;
}
.faq-item__answer {
  padding: 0 24px 20px;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 16px;
}
.contact-info__intro {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.7;
}
.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.875rem;
  color: var(--ink);
}
.contact-info__name {
  font-weight: 500;
}
.contact-info__row {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}
.contact-info__row:hover {
  color: var(--terracotta);
}
.contact-info__row .icon {
  width: 18px;
  height: 18px;
  color: var(--terracotta);
  flex-shrink: 0;
}
.contact-info__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
}
.contact-info__note .icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--terracotta);
  flex-shrink: 0;
}

.location-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(151, 168, 143, 0.4);
  padding: 32px;
}
@media (min-width: 768px) {
  .location-card {
    padding: 40px;
  }
}
.location-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.location-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location-card__icon .icon {
  width: 20px;
  height: 20px;
}
.location-card__header h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ink);
}
.location-card__header p {
  font-size: 0.875rem;
  color: var(--muted);
}
.location-card__desc {
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.location-card__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.location-card__link-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(151, 168, 143, 0.3);
  font-size: 0.875rem;
  color: var(--ink);
  transition: border-color 0.2s;
}
.location-card__link-row:hover {
  border-color: var(--sage);
}
.location-card__link-row .icon {
  width: 18px;
  height: 18px;
  color: var(--sage);
  flex-shrink: 0;
}
.location-card__note {
  font-size: 0.75rem;
  color: var(--muted-faint);
  padding: 0 12px;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--ink-soft);
}
.site-footer__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-footer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(250, 246, 240, 0.2);
}
.site-footer__inner {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .site-footer__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.footer-words {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-words__list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 0.875rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--footer-words);
}
.footer-words__rule {
  margin-top: 16px;
  width: 40px;
  height: 1px;
  background: var(--terracotta);
}
.footer-legal {
  margin-top: 10px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--terracotta);
}
.footer-legal a:hover {
  text-decoration: underline;
}
.footer-legal__sep {
  margin: 0 12px;
  color: var(--footer-legal-sep);
}

/* ---------- Responsive helpers ---------- */
@media (max-width: 767px) {
  .hero-cta .btn {
    width: 100%;
  }
}

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */
.legal-content {
  max-width: 42rem;
}
.legal-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.6rem + 1.5vw, 2.75rem);
  color: var(--ink);
  margin-bottom: 12px;
}
.legal-content > .legal-updated {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 48px;
}
.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--ink);
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal-content h2:first-of-type {
  margin-top: 0;
}
.legal-content p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content ul {
  margin: 0 0 14px;
  padding-left: 1.2em;
}
.legal-content li {
  list-style: disc;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 6px;
}
.legal-content a {
  color: var(--terracotta);
  text-decoration: underline;
}
.legal-content strong {
  color: var(--ink);
}
