:root{
  --cream: #F6F1EB;
  --cream-deep: #EFE7D9;
  --sand: #E9DFCB;
  --ink: #423C30;
  --ink-soft: #6B6355;
  --olive: #6E7350;
  --olive-deep: #565A3F;
  --clay: #B97A50;
  --clay-soft: #D9A87D;
  --line: rgba(66,60,48,0.14);
  --maxw: 1120px;

  /* Aktionsfarbe: sanftes Orange-Braun, ergänzt zu den bestehenden Erdtönen */
  --orange: #C4763A;
  --orange-deep: #A35F2C;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,.display{
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0;
}
em{ font-style: italic; font-weight: 400; color: var(--olive-deep); }
a{ color: inherit; }
img{ max-width: 100%; display:block; }
.wrap{ max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.eyebrow{
  font-family:'Karla', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13.4px;
  color: var(--olive-deep);
  font-weight: 600;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- NAV ---------- */
/* Permanent sichtbare Kopfleiste: bleibt beim Scrollen immer als durchgehende,
   helle Bar bestehen, damit das Logo jederzeit gut sichtbar ist. */
header.nav{
  position: fixed; top:0; left:0; right:0; z-index: 50;
  display:flex; align-items:center; justify-content:space-between;
  padding: 6px 32px;
  background: rgba(246,241,235,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow 0.4s ease, padding 0.4s ease;
}
header.nav.scrolled{
  padding: 3px 32px;
  box-shadow: 0 2px 14px -6px rgba(66,60,48,0.22);
}
/* Logo vergrössert (64px -> 80px), Balkenhöhe durch reduziertes Padding
   unverändert gehalten, damit das "surynika"-Wortbild lesbar bleibt. */
.nav-brand{ display:flex; align-items:center; gap:12px; font-family:'Fraunces', serif; font-size: 21.3px; letter-spacing: 0.05em; text-decoration:none; }
.nav-brand img{ height: 80px; width:auto; border-radius:0; object-fit:contain; }
nav.links{ display:flex; gap: 30px; font-size: 15.7px; letter-spacing: 0.03em; }
nav.links a{ text-decoration:none; color: var(--ink); position:relative; padding-bottom: 3px; }
nav.links a::after{
  content:''; position:absolute; left:0; right:0; bottom:-2px; height:1px; background: var(--olive);
  transform: scaleX(0); transform-origin: right; transition: transform 0.35s ease;
}
nav.links a:hover::after{ transform: scaleX(1); transform-origin: left; }
.nav-actions{ display:flex; align-items:center; gap:16px; }
.nav-insta{ display:flex; align-items:center; justify-content:center; width:38px; height:38px; color: var(--ink); transition: transform .25s ease, opacity .25s ease; opacity:.9; flex-shrink:0; }
.nav-insta:hover{ transform: translateY(-2px); opacity:1; }
.nav-insta svg{ width:24px; height:24px; display:block; }
.menu-btn{
  display:none; flex-direction:column; justify-content:center; align-items:flex-end; gap:6px;
  width:34px; height:34px; background:none; border:none; cursor:pointer; padding:0; z-index:70; position:relative;
}
.menu-btn span{ display:block; width:100%; height:2px; background: var(--ink); border-radius:2px; transition: transform .3s ease, opacity .3s ease, width .3s ease; }
.menu-btn.open span:nth-child(1){ width:100%; transform: translateY(8px) rotate(45deg); }
.menu-btn.open span:nth-child(2){ opacity:0; }
.menu-btn.open span:nth-child(3){ width:100%; transform: translateY(-8px) rotate(-45deg); }
.nav-scrim{
  position:fixed; inset:0; background: rgba(40,36,28,0.4); opacity:0; pointer-events:none;
  transition: opacity .35s ease; z-index:45;
}
.nav-scrim.open{ opacity:1; pointer-events:auto; }

/* ---------- INTERACTIVE BUTTONS ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Karla', sans-serif; font-size: 15.7px; font-weight:600; letter-spacing: 0.03em;
  text-decoration:none; cursor:pointer; border:none;
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1), box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
  will-change: transform;
}
.btn:active{ transform: translateY(0) scale(0.97); }
.btn:focus-visible{ outline: 2px solid var(--clay); outline-offset: 3px; }
.btn .arrow{ display:inline-block; transition: transform 0.28s ease; }
.btn:hover .arrow{ transform: translateX(5px); }

.nav-cta{
  font-size: 14.6px; padding: 9px 20px; border: 1px solid var(--ink);
  border-radius: 30px; text-decoration:none;
}
.nav-cta:hover{ background: var(--ink); color: var(--cream); transform: translateY(-2px); box-shadow: 0 10px 20px -10px rgba(66,60,48,0.5); }

.btn-primary{
  background: var(--orange); color: #fff; border-radius: 30px; padding: 13px 30px; font-size: 16.2px;
  box-shadow: 0 12px 26px -12px rgba(163,95,44,0.35);
}
.btn-primary:hover{ background: var(--orange-deep); transform: translateY(-3px); box-shadow: 0 18px 32px -14px rgba(163,95,44,0.42); }

.btn-outline{
  background: transparent; color: var(--ink); border: 1px solid var(--ink); border-radius: 30px; padding: 12px 28px; font-size: 15.7px;
}
.btn-outline:hover{ background: var(--ink); color: var(--cream); transform: translateY(-3px); box-shadow: 0 14px 26px -12px rgba(66,60,48,0.5); }

.btn-card{
  margin-top: 0; font-size: 15.7px; font-weight:700; letter-spacing: 0.02em;
  color: #fff; background: var(--orange);
  padding: 12px 24px; border-radius: 30px;
  box-shadow: 0 12px 24px -12px rgba(163,95,44,0.35);
}
.btn-card:hover{ color:#fff; background: var(--orange-deep); transform: translateY(-3px); box-shadow: 0 18px 30px -14px rgba(163,95,44,0.42); }

button.submit{
  margin-top: 6px; align-self:flex-start; background: var(--orange); color: #fff; border:none;
  padding: 13px 30px; border-radius: 30px; font-size: 16.2px; letter-spacing: 0.03em; cursor:pointer;
  transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 12px 26px -12px rgba(163,95,44,0.35);
}
button.submit:hover{ background: var(--orange-deep); transform: translateY(-3px); box-shadow: 0 18px 32px -14px rgba(163,95,44,0.42); }
button.submit:active{ transform: translateY(0) scale(0.97); }

.btn-secondary{
  background: transparent; color: var(--orange); border: 1.5px solid var(--orange); border-radius: 30px;
  padding: 12px 26px; font-size: 15.7px;
}
.btn-secondary:hover{ background: var(--orange); color:#fff; transform: translateY(-3px); box-shadow: 0 14px 26px -12px rgba(163,95,44,0.32); }
.action-row{ display:flex; flex-wrap:wrap; gap: 14px; align-items:center; }

/* ---------- SCROLL REVEAL (sanftes Einblenden statt harter Kanten) ---------- */
/* Standardmässig sichtbar — erst JS aktiviert die Animation (verhindert, dass */
/* Inhalte unsichtbar bleiben, falls JavaScript aus irgendeinem Grund nicht läuft) */
.reveal{ transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1); }
.reveal.pre{ opacity: 0; transform: translateY(28px); }
.reveal.in{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal.pre{ opacity:1; transform:none; }
}

/* ---------- HERO ---------- */
.hero{
  position:relative; min-height: 100vh; display:flex; align-items:flex-end;
  overflow:hidden;
}
.hero img.bg{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position: 60% 52%;
  filter: saturate(1.02) brightness(1.02);
}
.hero::after{
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(35,30,20,0.5) 0%, rgba(35,30,20,0.24) 40%, rgba(35,30,20,0.04) 62%, transparent 78%),
    linear-gradient(180deg, rgba(35,30,20,0.14) 0%, rgba(30,26,17,0.08) 30%, rgba(24,21,14,0.82) 100%);
}
.hero-inner{ position:relative; z-index:2; width:100%; padding: 0 32px 90px; color: var(--cream); }
.hero-inner .eyebrow{ color: var(--clay-soft); margin-bottom: 18px; display:block; text-shadow: 0 1px 10px rgba(20,18,12,0.35); }
.hero h1{
  color: var(--cream);
  font-size: clamp(40px, 6.2vw, 76px);
  line-height: 1.02;
  max-width: 1180px;
  font-weight: 400;
  text-shadow: 0 2px 24px rgba(20,18,12,0.35), 0 1px 3px rgba(20,18,12,0.4);
}
.hero h1 em{ color: var(--clay-soft); }
.hero-sub{
  max-width: 460px; margin-top: 22px; font-size: 17.9px; color: rgba(246,241,235,0.9);
  text-shadow: 0 1px 12px rgba(20,18,12,0.3);
}
.hero-scroll{
  position:absolute; right: 40px; bottom: 40px; z-index:3;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  color: var(--cream); text-decoration:none;
}
.breath{
  width: 30px; height:30px; border-radius:50%; border: 1px solid rgba(246,241,235,0.7);
  animation: breathe 4.6s ease-in-out infinite;
}
@keyframes breathe{
  0%,100%{ transform: scale(0.72); opacity:0.55; }
  50%{ transform: scale(1); opacity:1; }
}
.hero-scroll span{ font-size: 12.3px; letter-spacing: 0.18em; text-transform: uppercase; writing-mode: vertical-rl; }

/* ---------- PAGE HEADER (Unterseiten ohne Vollbild-Hero) ---------- */
.page-header{
  padding: 168px 0 60px;
  background: linear-gradient(160deg, var(--sand) 0%, var(--cream-deep) 55%, var(--cream) 100%);
}
.page-header .back-link{
  display:inline-flex; align-items:center; gap:6px; font-size: 14.6px; color: var(--ink-soft);
  text-decoration:none; margin-bottom: 22px; transition: color 0.25s ease, transform 0.25s ease;
}
.page-header .back-link:hover{ color: var(--clay); transform: translateX(-3px); }
.page-header h1{ font-size: clamp(33.6px, 4.4vw, 53.8px); font-weight:400; margin-top: 10px; }
.page-header p.lead{ margin-top: 16px; max-width: 620px; color: var(--ink-soft); font-size: 18.5px; }

/* ---------- ANGEBOTS-BANNER (Bild im Hintergrund, Text davor — im Stil des Hero) ---------- */
.offer-banner{
  position:relative; min-height: 58vh; display:flex; align-items:flex-end; overflow:hidden;
}
.offer-banner img.bg{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  filter: saturate(1.02) brightness(1.02);
}
.offer-banner::after{
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(30,25,16,0.68) 0%, rgba(30,25,16,0.42) 46%, rgba(30,25,16,0.14) 68%, transparent 84%),
    linear-gradient(180deg, rgba(24,21,14,0.22) 0%, rgba(24,21,14,0.12) 30%, rgba(20,17,11,0.88) 100%);
}
.offer-banner-inner{ position:relative; z-index:2; width:100%; padding: 150px 32px 60px; }
.offer-banner .back-link{
  display:inline-flex; align-items:center; gap:6px; font-size: 14.6px; color: rgba(246,241,235,0.85);
  text-decoration:none; margin-bottom: 22px; transition: color 0.25s ease, transform 0.25s ease;
  text-shadow: 0 1px 10px rgba(20,18,12,0.35);
}
.offer-banner .back-link:hover{ color: var(--clay-soft); transform: translateX(-3px); }
.offer-banner .eyebrow{ color: var(--clay-soft); margin-bottom: 4px; display:block; text-shadow: 0 1px 10px rgba(20,18,12,0.35); }
.offer-banner h1{
  color: var(--cream); font-size: clamp(33.6px, 4.4vw, 53.8px); font-weight:400; margin-top: 10px;
  text-shadow: 0 2px 24px rgba(20,18,12,0.35), 0 1px 3px rgba(20,18,12,0.4);
}
.offer-banner p.lead{
  margin-top: 16px; max-width: 620px; font-size: 18.5px; color: rgba(246,241,235,0.92);
  text-shadow: 0 1px 12px rgba(20,18,12,0.3);
}
@media (max-width: 860px){
  .offer-banner{ min-height: 62vh; }
}

/* ---------- SECTION GENERIC ---------- */
section{ padding: 120px 0; position:relative; }
.section-head{ max-width: 620px; margin-bottom: 56px; }
.section-head .eyebrow{ margin-bottom: 14px; display:block; }
.section-head h2{ font-size: clamp(33.6px, 4vw, 51.5px); font-weight: 400; }

/* ---------- ABOUT ---------- */
.about{ background: var(--cream); }
.about-grid{
  display:grid; grid-template-columns: 0.95fr 1.05fr; gap: 72px; align-items:center;
}
.about-photos{ position:relative; }
.about-photos .p1{
  width: 78%; border-radius: 6px; box-shadow: 0 30px 60px -30px rgba(66,60,48,0.4);
  filter: brightness(1.12) saturate(1.08) contrast(0.98);
}
.about-photos .p2{
  width: 52%; position:absolute; right:-32px; bottom:-96px; border-radius: 6px;
  border: 8px solid var(--cream); box-shadow: 0 24px 48px -24px rgba(66,60,48,0.45);
}
.about-text p{ font-size: 18.5px; color: var(--ink-soft); margin: 0 0 18px; }
.about-text p.lead{ font-family:'Fraunces', serif; font-size: 25.8px; color: var(--ink); line-height:1.5; font-weight:400; margin-bottom: 26px;}
.signature{ margin-top: 34px; font-family:'Fraunces', serif; font-style: italic; font-size: 21.3px; color: var(--olive-deep); }

/* ---------- PHILOSOPHY / SIGNATURE MOMENT ---------- */
.philosophy{
  background: var(--olive-deep); color: var(--cream); text-align:center; overflow:hidden;
}
.philosophy .wrap{ position:relative; z-index:2; }
.philosophy .eyebrow{ color: var(--clay-soft); }
.philosophy h2{
  color: var(--cream); font-size: clamp(31.4px, 4.4vw, 56px); font-weight: 400; max-width: 780px; margin: 22px auto 0;
  line-height: 1.35;
}
.philosophy h2 em{ color: var(--clay-soft); }
.circles{ position:relative; width: 260px; height: 260px; margin: 64px auto 0; }
.circles .c{
  position:absolute; border-radius:50%; border: 1px solid rgba(246,241,235,0.55);
}
.circles .c1{ inset: 0; animation: breathe 6s ease-in-out infinite; }
.circles .c2{ inset: 40px; border-color: rgba(217,168,125,0.75); animation: breathe 6s ease-in-out infinite 0.4s; }
.circles .c3{ inset: 80px; background: rgba(217,168,125,0.14); animation: breathe 6s ease-in-out infinite 0.8s; }
.circles .label{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  font-family:'Fraunces', serif; font-style: italic; font-size: 16.8px; color: var(--cream);
}
.philosophy-caption{ margin-top: 26px; font-size: 14.6px; letter-spacing: 0.08em; color: rgba(246,241,235,0.65); text-transform: uppercase; }

/* ---------- OFFERINGS ---------- */
.offerings{ background: var(--cream); }
.cards{ display:grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 36px; align-items:stretch; }
.card{
  background: var(--cream-deep); border: 1px solid var(--line); border-radius: 8px;
  padding: 36px 30px; transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, border-color 0.35s ease;
  display:flex; flex-direction:column;
}
.card:hover{ transform: translateY(-8px); box-shadow: 0 26px 44px -28px rgba(66,60,48,0.4); border-color: rgba(66,60,48,0.28); }
.card .num{ font-family:'Fraunces', serif; font-style: italic; color: var(--clay); font-size: 16.8px; }
.card h3{ font-size: 25.8px; font-weight: 500; margin: 14px 0 12px; }
.card p{ color: var(--ink-soft); font-size: 16.8px; margin: 0; }
.card-cta{ margin-top: auto; padding-top: 20px; display:flex; flex-direction:column; gap: 16px; align-items:flex-start; }
.badge{
  display:inline-block; font-size: 12.3px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px; background: rgba(110,115,80,0.12); color: var(--olive-deep); font-weight:600;
}

.fact-bundle{ position:relative; }
.save-sticker{
  position:absolute; top: -40px; right: -78px; width: 104px; pointer-events:none; z-index:2;
  filter: drop-shadow(0 8px 14px rgba(66,60,48,0.4));
  animation: sticker-pop 0.5s cubic-bezier(.2,1.4,.4,1) both;
}
.offer-facts .fact .save-sticker svg{ width:100%; height:auto; margin-top:0; display:block; }
@keyframes sticker-pop{
  from{ opacity:0; transform: scale(0.6) rotate(-14deg); }
  to{ opacity:1; transform: scale(1) rotate(-8deg); }
}
@media (max-width: 520px){
  .bundle-price{ max-width: 100px; }
  .save-sticker{ width: 110px; top: -16px; right:auto; left: 140px; }
}

/* ---------- DATE / EVENT ---------- */
.event{ background: var(--sand); }
.event-box{
  display:grid; grid-template-columns: auto 1fr; gap: 40px; align-items:center;
  background: var(--cream); border: 1px solid var(--line); border-radius: 10px; padding: 44px 48px;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.event-box:hover{ box-shadow: 0 26px 44px -30px rgba(66,60,48,0.35); transform: translateY(-4px); }
.event-date{
  text-align:center; border-right: 1px solid var(--line); padding-right: 40px; min-width: 140px;
}
.event-date .day{ font-family:'Fraunces', serif; font-size: 62.7px; line-height:1; color: var(--clay); }
.event-date .month{ font-size: 14.6px; letter-spacing: 0.16em; text-transform:uppercase; color: var(--ink-soft); margin-top: 8px; }
.event-info h3{ font-size: 29.1px; font-weight: 500; margin-bottom: 10px; }
.event-info p{ color: var(--ink-soft); font-size: 16.8px; margin: 0 0 16px; }

/* ---------- TERMIN-POPUP (Terminfinder) ---------- */
.offer-actions{ display:flex; flex-wrap:wrap; gap: 14px; align-items:center; margin-top: 6px; }

.term-modal-overlay{
  position:fixed; inset:0; background: rgba(66,60,48,0.45); backdrop-filter: blur(2px);
  display:flex; align-items:center; justify-content:center; padding:24px; z-index:200;
  opacity:0; pointer-events:none; transition: opacity .25s ease;
}
.term-modal-overlay.open{ opacity:1; pointer-events:auto; }
.term-modal{
  background: var(--cream); border-radius: 14px; max-width: 460px; width:100%; padding: 34px 32px 30px;
  position:relative; transform: translateY(14px) scale(.98); transition: transform .3s ease;
  box-shadow: 0 40px 70px -30px rgba(30,26,18,0.5); max-height: 86vh; overflow-y:auto;
}
.term-modal-overlay.open .term-modal{ transform: translateY(0) scale(1); }
.term-modal-close{
  position:absolute; top:16px; right:16px; width:30px; height:30px; border-radius:50%; border:none;
  background: var(--cream-deep); color: var(--ink); cursor:pointer; font-size:17.9px; line-height:1;
}
.term-modal-close:hover{ background: var(--orange); color:#fff; }
.term-modal .eyebrow{ display:block; margin-bottom: 10px; }
.term-modal h3{ font-size: 25.8px; font-weight: 500; margin: 0 0 16px; }
.term-modal-meta{ display:flex; flex-direction:column; gap:6px; font-size:15.7px; color: var(--ink-soft); margin-bottom: 20px; }
.term-modal-meta b{ color: var(--ink); font-weight:500; }
.term-dates{ display:flex; flex-direction:column; gap: 10px; }
.term-date-card{
  display:flex; align-items:center; justify-content:space-between; gap:14px; width:100%; text-align:left;
  background: var(--cream-deep); border: 1px solid var(--line); border-radius: 10px; padding: 14px 18px;
  cursor:pointer; transition: background .25s ease, border-color .25s ease, transform .2s ease;
  font-family:'Karla', sans-serif; color: var(--ink);
}
.term-date-card:hover{ background: var(--orange); color:#fff; border-color: var(--orange); transform: translateY(-2px); }
.term-date-card .tdc-date{ font-family:'Fraunces', serif; font-size: 17.9px; }
.term-date-card .tdc-time{ font-size: 14px; color: var(--ink-soft); }
.term-date-card:hover .tdc-time{ color: rgba(255,255,255,0.85); }
.term-date-card .tdc-arrow{ transition: transform .25s ease; }
.term-date-card:hover .tdc-arrow{ transform: translateX(4px); }
.term-modal-note{ font-size: 14px; color: var(--ink-soft); margin-top: 18px; }

/* ---------- ANMELDE-POPUP (öffnet sich beim Klick auf einen Termin) ---------- */
.term-modal form{ gap: 14px; margin-top: 4px; }
.term-modal label{ color: var(--ink-soft); }
.term-modal input, .term-modal textarea, .term-modal select{
  background: #fbfaf7; border: 1px solid var(--line); color: var(--ink);
}
.term-modal select{
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  font-family: 'Karla', sans-serif !important;
  font-size: 16.2px !important;
  color: var(--ink) !important;
  background-color: #fbfaf7 !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23423C30' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.term-modal select option{ color: var(--ink) !important; background:#fff !important; }
.term-modal input::placeholder, .term-modal textarea::placeholder{ color: var(--ink-soft); opacity:0.6; }
.term-modal input:focus, .term-modal textarea:focus, .term-modal select:focus{ outline: 2px solid var(--orange); outline-offset: 1px; background:#fff; }
.term-modal button.submit{ margin-top: 4px; align-self:stretch; }
.term-modal button.submit:disabled{ opacity:0.6; cursor:default; }
.term-modal-error{ color:#A24B3F; font-size:14.6px; margin:-6px 0 0; }
.term-modal-success{ display:none; text-align:center; padding:6px 0 2px; }
.term-modal-success.show{ display:block; }
.term-modal-success .tms-check{
  width:46px; height:46px; border-radius:50%;
  background: var(--olive); color:#fff;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 16px; font-size:24.6px;
}
.term-modal-success p{ color: var(--ink-soft); font-size:16.2px; }
.term-modal-success .btn{ margin-top:18px; }

/* ---------- SIGNUP / CONTACT ---------- */
.signup{ background: var(--olive); color: var(--cream); }
.signup-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; }
.signup .section-head h2{ color: var(--cream); }
.signup .eyebrow{ color: var(--clay-soft); }
.signup-text p{ color: rgba(246,241,235,0.85); font-size: 17.4px; }
.signup-text a.mail{
  display:inline-block; margin-top: 18px; font-family:'Fraunces', serif; font-style:italic; font-size: 21.3px;
  color: var(--cream); text-decoration: none; border-bottom: 1px solid rgba(246,241,235,0.5); padding-bottom: 3px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.signup-text a.mail:hover{ color: var(--clay-soft); border-color: var(--clay-soft); }
form{ display:flex; flex-direction:column; gap: 16px; }
.row2{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label{ font-size: 13.4px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(246,241,235,0.75); margin-bottom: 6px; display:block; }
input, select, textarea{
  width:100%; background: rgba(246,241,235,0.08); border: 1px solid rgba(246,241,235,0.35);
  border-radius: 6px; padding: 12px 14px; color: var(--cream); font-family:'Karla',sans-serif; font-size: 16.2px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
input::placeholder, textarea::placeholder{ color: rgba(246,241,235,0.5); }
input:focus, select:focus, textarea:focus{ outline: 2px solid var(--clay-soft); outline-offset: 1px; background: rgba(246,241,235,0.13); }
textarea{ resize: vertical; min-height: 90px; }
select option{ color: var(--ink); }
.form-note{ font-size: 14px; color: rgba(246,241,235,0.6); margin-top: 4px; }
.checkbox-row{ margin: 4px 0 16px; }
.checkbox-row label{ display:flex; align-items:center; gap: 8px; font-size: 16.2px; cursor: pointer; }
.checkbox-row input[type="checkbox"]{ width: 17px; height: 17px; accent-color: var(--orange); cursor: pointer; }

/* ---------- FOOTER ---------- */
footer{ background: var(--ink); color: var(--cream-deep); padding: 56px 0 30px; }
.footer-grid{ display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap: 24px; }
.footer-brand{ display:flex; align-items:center; gap: 12px; font-family:'Fraunces', serif; font-size: 21.3px; }
.footer-brand img{ height: 44px; width:auto; border-radius:0; object-fit:contain; }
footer .tag{ font-size: 14.6px; color: rgba(246,241,235,0.55); margin-top: 6px; }
footer .fine{ margin-top: 40px; font-size: 13.4px; color: rgba(246,241,235,0.4); border-top: 1px solid rgba(246,241,235,0.12); padding-top: 22px; }
footer a{ text-decoration:none; }

/* ---------- OFFER DETAIL BOX ---------- */
.offer{
  background: linear-gradient(160deg, var(--sand) 0%, var(--cream-deep) 100%);
}
.offer-box{
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 48px 52px; max-width: 640px;
  box-shadow: 0 30px 60px -34px rgba(66,60,48,0.28);
  border-top: 4px solid var(--orange);
}
.offer-box .eyebrow{ display:block; margin-bottom: 10px; }
.offer-box h3{ font-size: 33.6px; font-weight:500; margin-bottom: 8px; }
.offer-box .offer-sub{ color: var(--ink-soft); font-size: 16.8px; margin-bottom: 26px; }
.offer-facts{
  display:grid; grid-template-columns: 1fr 1fr; gap: 18px 22px;
  background: var(--cream-deep); border: 1px solid var(--line); border-radius: 12px;
  padding: 24px 26px; margin-bottom: 26px;
}
.offer-facts .fact{ display:flex; align-items:flex-start; gap: 12px; }
.offer-facts .fact svg{ width: 20px; height:20px; flex-shrink:0; margin-top: 2px; color: var(--orange); }
.offer-facts div{ font-size: 15.7px; }
.offer-facts .flabel{
  display:block; font-size: 12.3px; letter-spacing: 0.1em; text-transform:uppercase;
  color: var(--olive-deep); font-weight:600; margin-bottom: 3px;
}
.offer-note{
  font-size: 15.1px; color: var(--orange-deep); background: rgba(163,95,44,0.08);
  border: 1px solid rgba(163,95,44,0.25); border-radius: 8px; padding: 12px 16px; margin-bottom: 26px;
}
.offer-box form{ gap: 14px; }
.offer-box label{ color: var(--ink-soft); }
.offer-box input, .offer-box textarea{
  background: #fbfaf7; border: 1px solid var(--line); color: var(--ink);
}
.offer-box input::placeholder, .offer-box textarea::placeholder{ color: var(--ink-soft); opacity:0.6; }
.offer-box input:focus, .offer-box textarea:focus{ outline: 2px solid var(--orange); outline-offset: 1px; background:#fff; }
.offer-box .form-note{ color: var(--ink-soft); }

/* ---------- TERMINE OVERVIEW ---------- */
.termine-list{ display:flex; flex-direction:column; gap: 28px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px){
  .menu-btn{ display:flex; }
  nav.links{
    display:flex; flex-direction:column; align-items:flex-start; justify-content:center; gap:30px;
    position:fixed; top:0; right:-100%; bottom:0; width:min(78vw,320px); height:100vh;
    background: var(--cream); padding: 100px 40px 40px; box-shadow: -12px 0 40px -20px rgba(40,36,28,0.35);
    transition: right .4s cubic-bezier(.2,.8,.2,1); z-index:55; font-size:20.2px;
  }
  nav.links.open{ right:0; }
  nav.links a{ opacity:0; transform: translateX(12px); transition: opacity .3s ease .1s, transform .3s ease .1s; }
  nav.links.open a{ opacity:1; transform:none; }
  .about-grid, .signup-grid{ grid-template-columns: 1fr; }
  .about-photos{ margin-bottom: 90px; }
  .cards{ grid-template-columns: 1fr; }
  .row2{ grid-template-columns: 1fr; }
  .event-box{ grid-template-columns: 1fr; text-align:center; }
  .event-date{ border-right:none; border-bottom: 1px solid var(--line); padding-right:0; padding-bottom: 20px; margin: 0 auto; }
  section{ padding: 84px 0; }
  .hero-scroll{ display:none; }
  .offer-box{ padding: 30px 24px 26px; }
  .offer-facts{ grid-template-columns: 1fr; }

  /* Bild-Ausschnitt fürs Handy anpassen: enger auf Person zoomen statt breite Szene */
  .hero img.bg{ object-position: 70% 22%; }
  .about-photos .p1{ width: 80%; }
  .about-photos .p2{ width: 56%; right:0; bottom:-70px; }
}
