/* ============================================================
   Raum für dich — landing page styles
   Fonts: Fraunces (display serif), Inter (UI/body), Caveat (script accent)
   ============================================================ */

:root {
  --cream:       #FFFBF5;
  --cream-2:     #F6EFE4;
  --sage:        #B2CBB2;
  --sage-deep:   #8FB08F;
  --charcoal:    #282A29;
  --slate:       #304254;
  --olive:       #565A4F;
  --dark:        #0F1015;
  --white:       #FFFFFF;

  --ink:         var(--charcoal);
  --muted:       #6E7168;

  --maxw:        1120px;
  --radius:      28px;
  --radius-sm:   16px;
  --shadow:      0 24px 60px -30px rgba(40, 42, 41, 0.35);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script:"Mynerve", "Segoe Script", cursive;
}

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

html { scroll-behavior: smooth; }

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

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

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 96, "SOFT" 40;
  line-height: 1.05;
  margin: 0;
}

.script {
  font-family: var(--script);
  font-weight: 400;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.6rem 1rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--charcoal); color: var(--cream); }
.btn--primary:hover { background: var(--slate); }
.btn--ghost { background: transparent; border-color: var(--charcoal); color: var(--charcoal); }
.btn--ghost:hover { background: var(--charcoal); color: var(--cream); }
.btn--sage { background: var(--sage); color: var(--charcoal); }
.btn--sage:hover { background: var(--sage-deep); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 245, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(40, 42, 41, 0.08);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-variation-settings: "opsz" 40, "SOFT" 40;
  text-decoration: none;
  color: var(--charcoal);
  white-space: nowrap;
}
.nav__logo {
  height: 1.5em;
  width: auto;
  display: block;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav__menu a {
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--olive);
  transition: color 0.2s ease;
}
.nav__menu a:hover { color: var(--charcoal); }
.nav__cta {
  color: var(--charcoal) !important;
  font-weight: 600;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* ---------- Layout helpers ---------- */
section { padding: clamp(3.5rem, 8vw, 7rem) 1.5rem; }
.section-head {
  max-width: 680px;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.eyebrow {
  font-family: var(--script);
  font-size: 1.6rem;
  color: var(--sage-deep);
  margin: 0 0 0.4rem;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-variation-settings: "opsz" 120, "SOFT" 50;
}
.section-intro { color: var(--muted); margin-top: 0.8rem; }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-top: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: clamp(1rem, 3vw, 2rem);
}
.hero__card { text-align: left; }
.hero__kicker { font-size: 2rem; color: var(--sage-deep); margin: 0 0 0.2rem; }
.hero__title {
  font-size: clamp(3.4rem, 11vw, 6.4rem);
  font-variation-settings: "opsz" 144, "SOFT" 60, "wght" 380;
  letter-spacing: -0.01em;
}
.hero__title em { font-style: normal; font-variation-settings: "opsz" 144, "SOFT" 80; }
.hero__subtitle {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin: 1.2rem 0 0.3rem;
  color: var(--slate);
}
.hero__tagline {
  text-transform: lowercase;
  letter-spacing: 0.08em;
  color: var(--olive);
  margin: 0.2rem 0 1.4rem;
}
.hero__date {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--charcoal);
  font-weight: 400;
  letter-spacing: 0.03em;
  margin: 0 0 1.5rem;
}
.hero__image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; }

.hero__illustration {
  margin: 0;
  align-self: center;
}
.hero__illustration img {
  display: block;
  width: 100%;
  height: auto;
}

/* Widescreen parallax band (fixed background) */
.parallax {
  height: clamp(720px, 100vh, 1100px);
  background: url("images/valley-sunset.jpg") center bottom / cover no-repeat fixed;
  margin: clamp(1.5rem, 5vw, 3.5rem) 0 0;
}
@media (max-width: 820px), (prefers-reduced-motion: reduce) {
  .parallax {
    background-attachment: scroll;
    background-size: auto 190%;      /* heranzoomen, damit die Berge den Ausschnitt füllen */
    background-position: center 86%; /* Bergkette/Tal in den Fokus, weniger Himmel */
    height: clamp(300px, 48vh, 460px);
  }
}

/* Panels overlapping the band above (home) */
.offer.offer--overlap {
  position: relative;
  z-index: 2;
  padding-top: 0;
  margin-top: -11rem;
}
@media (max-width: 820px) {
  .offer.offer--overlap { margin-top: 1rem; }
}

/* ---------- Offer panels ---------- */
.offer { max-width: var(--maxw); margin: 0 auto; }
.offer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 1.8rem);
}
.panel {
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem);
}
.panel--sage { background: var(--sage); }
.panel--dark { background: #3E4E42; color: var(--cream); }
.panel__label {
  font-family: var(--script);
  font-weight: 400;
  font-size: 2.4rem;
  margin: 0 0 1.2rem;
}
.panel--sage .panel__label { color: var(--charcoal); }
.panel--dark .panel__label { color: var(--sage); }

.ticklist { list-style: none; margin: 0; padding: 0; }
.ticklist li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
}
.ticklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--sage-deep);
}
.ticklist--light li::before { background: var(--sage); }

/* ---------- Feature ---------- */
.feature {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}
.feature__lead {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.35;
  color: var(--slate);
  font-variation-settings: "opsz" 80, "SOFT" 40;
}
.feature__image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.feature__image img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- About ---------- */
.about { max-width: var(--maxw); margin: 0 auto; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 820px;
  margin: 0 auto;
}
.host { margin: 0; text-align: center; }
.host img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.host figcaption h3 {
  font-size: 1.6rem;
  margin: 1.1rem 0 0.3rem;
  font-variation-settings: "opsz" 60, "SOFT" 50;
}
.host figcaption p { color: var(--muted); margin: 0; }

/* ---------- Place ---------- */
.place {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}
.place__image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.place__image img { width: 100%; height: 100%; object-fit: cover; }
.place__text p:last-child { color: var(--muted); }

/* ---------- Pricing ---------- */
.pricing { background: var(--cream-2); }
.pricing__card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.2rem);
  text-align: center;
  box-shadow: var(--shadow);
}
.pricing__price {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 8vw, 4rem);
  margin: 0.3rem 0 0;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.pricing__price span { font-size: 0.45em; color: var(--muted); vertical-align: middle; }
.pricing__vat { color: var(--muted); margin: 0.2rem 0 1.6rem; }
.pricing__list {
  text-align: left;
  display: inline-block;
  margin: 0 auto 2rem;
}

/* ---------- Contact / booking ---------- */
.contact { background: var(--sage); }
/* eyebrow uses sage-deep — too low contrast on the sage band, so darken it here */
.contact .eyebrow { color: var(--charcoal); }
.booking-mount { max-width: 620px; margin: 0 auto; }
.booking-fallback {
  background: var(--cream);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  box-shadow: var(--shadow);
}
.booking-fallback p { margin: 0.4rem 0; }
.booking-fallback__links {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: var(--cream);
  text-align: center;
  padding: 3rem 1.5rem;
}
.footer a { color: var(--sage); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer__brand { font-size: 2rem; margin: 0 0 0.6rem; color: var(--cream); }
.footer__meta { color: rgba(255, 251, 245, 0.55); font-size: 0.85rem; margin-top: 1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(40, 42, 41, 0.1);
    padding: 0.5rem 1.5rem 1.2rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }
  .nav__menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__menu a { padding: 0.7rem 0; border-bottom: 1px solid rgba(40, 42, 41, 0.06); }

  .hero { grid-template-columns: 1fr; }
  .hero__image { aspect-ratio: 4 / 3; max-height: 420px; order: -1; }
  .offer__grid,
  .feature,
  .about__grid,
  .place { grid-template-columns: 1fr; }
  .place__image { order: -1; }
}

/* ============================================================
   Subpage components
   ============================================================ */
.nav__menu a[aria-current="page"] { color: var(--charcoal); font-weight: 600; }

/* Subpage header */
.page-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: 0;
}
.page-hero .eyebrow { font-size: 1.8rem; }
.page-hero__title {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.page-hero__intro { color: var(--muted); font-size: 1.1rem; margin-top: 1rem; }

/* Readable prose */
.prose { max-width: 680px; margin: 0 auto; }
.prose > p { margin: 0 0 1.1rem; }
.lead {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  line-height: 1.4;
  color: var(--slate);
  font-variation-settings: "opsz" 72, "SOFT" 40;
}
.eyebrow--left { text-align: left; }

/* Generic split (image + text), reversible */
.split {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}
.split__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split--reverse .split__media { order: -1; }
.split__body h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-variation-settings: "opsz" 120, "SOFT" 50;
  margin-bottom: 0.8rem;
}

/* Theme cards (workshop topics) */
.theme-grid {
  max-width: var(--maxw);
  margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 3vw, 1.6rem);
}
.theme-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}
.theme-card h3 {
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
  font-variation-settings: "opsz" 60, "SOFT" 50;
}
.theme-card p { margin: 0; color: var(--olive); }

.section-note {
  max-width: 720px;
  margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
  text-align: center;
  color: var(--olive);
}

/* Program — Wochenend-Bogen (Freitag/Samstag/Sonntag) */
.program-grid {
  max-width: var(--maxw);
  margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 1.6rem);
}
.program-day {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}
.program-day__label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 0.3rem;
}
.program-day h3 {
  font-size: 1.45rem;
  margin: 0 0 0.7rem;
  font-variation-settings: "opsz" 60, "SOFT" 50;
}
.program-day p { margin: 0; color: var(--olive); }

/* Polaroid-Wand (Über uns — „Warum dieses Wochenende") */
.pola-wall {
  max-width: 760px;
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.pola {
  margin: 0;
  background: #fff;
  padding: 8px 8px 28px;
  border-radius: 2px;
  width: 150px;
  box-shadow: 0 10px 22px -12px rgba(40, 42, 41, 0.45);
  transform: rotate(var(--r, 0deg));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.pola::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 52px;
  height: 18px;
  background: rgba(178, 203, 178, 0.55);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.pola img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--cream-2);
}
.pola:hover {
  transform: rotate(0) scale(1.05);
  box-shadow: 0 16px 30px -12px rgba(40, 42, 41, 0.5);
  z-index: 2;
}

/* Photo gallery (masonry via columns) */
.gallery {
  max-width: var(--maxw);
  margin: 0 auto;
  columns: 3 240px;
  column-gap: 1rem;
}
.gallery img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  break-inside: avoid;
}
/* Location section (subpage): pin sits above the gallery. Tighter top
   padding keeps it in view without scrolling after the hero; the note's
   bottom margin gives clear separation from the photos. */
.location { padding-top: clamp(1.75rem, 4vw, 2.5rem); }
.location .location-note { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.location-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.location-note svg { flex: none; color: var(--sage-deep); }

/* Pricing cards */
.price-grid {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 1.8rem);
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  box-shadow: var(--shadow);
}
.price-card--featured { background: var(--sage); }
.price-card__badge {
  display: inline-block;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.price-card__label {
  font-family: var(--script);
  font-size: 1.6rem;
  color: var(--sage-deep);
  margin: 0;
}
.price-card--featured .price-card__label { color: var(--slate); }
.price-card__amount {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 3.6rem);
  margin: 0.2rem 0 0;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.price-card__vat { color: var(--muted); font-size: 0.9rem; margin: 0.2rem 0 0; }
.price-card__until { color: var(--olive); margin: 0.7rem 0 0; font-size: 0.95rem; }

/* Legal (Impressum / Datenschutz) */
.legal { max-width: 760px; margin: 0 auto; }
.legal__section { margin-bottom: clamp(2.5rem, 6vw, 4rem); scroll-margin-top: 90px; }
.legal h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 120, "SOFT" 50;
}
.legal h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 1.8rem 0 0.4rem;
}
.legal p, .legal li { color: var(--charcoal); }
.legal a { color: var(--slate); }
.legal__toc { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
.ph {
  background: #FBEAD2;
  border-radius: 5px;
  padding: 0 0.3rem;
  font-style: normal;
}
.legal__disclaimer {
  background: var(--cream-2);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  font-size: 0.9rem;
  color: var(--olive);
  margin-bottom: 2.5rem;
}

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-variation-settings: "opsz" 120, "SOFT" 50;
}
.cta-band .btn { margin-top: 1.5rem; }

@media (max-width: 820px) {
  .split,
  .theme-grid,
  .program-grid,
  .price-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .gallery { columns: 2 160px; }
}

/* FAQ-Accordion („Preise und Infos" – Gut zu wissen) */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--cream-2);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq__item[open] {
  box-shadow: var(--shadow);
}
.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--sage-deep);
  flex: 0 0 auto;
}
.faq__item[open] .faq__q::after { content: "\2013"; }
.faq__q:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: -2px;
}
.faq__a {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
  line-height: 1.65;
}
.faq__a p { margin: 0; }
.faq__a a { color: var(--slate); }
