/* ==========================================================================
   Karin Feil — Energetik & Coaching, Linz
   Design system
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Colour */
  --ink:        #10241C;
  --ink-2:      #2A483B;
  --muted:      #5F7469;
  --muted-2:    #8A9A91;

  --green:      #2F6B52;
  --green-dk:   #1C4634;
  --green-lt:   #E8F0EA;
  --green-mid:  #C9DCCF;

  --teal:       #0E7C86;
  --navy:       #1F3A93;

  --cream:      #FBF9F4;
  --sand:       #F1EADD;
  --sand-dk:    #E2D5C0;
  --white:      #FFFFFF;

  --line:       rgba(16, 36, 28, .12);
  --line-soft:  rgba(16, 36, 28, .07);

  /* Type */
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Space */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --maxw: 1240px;
  --maxw-narrow: 760px;
  --section-y: clamp(4.5rem, 9vw, 8.5rem);

  /* Shape */
  --r-sm: 14px;
  --r:    22px;
  --r-lg: 34px;
  --r-xl: 52px;

  --shadow-sm: 0 2px 10px rgba(16, 36, 28, .05);
  --shadow:    0 18px 48px -22px rgba(16, 36, 28, .30);
  --shadow-lg: 0 40px 90px -40px rgba(16, 36, 28, .45);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.72;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
/* <picture> ist nur ein Wrapper für die WebP-Quellen — es soll das Layout nicht anfassen */
picture { display: contents; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

::selection { background: var(--green-mid); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Type scale ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); line-height: 1.22; }
h4 { font-size: 1.1rem; line-height: 1.3; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  line-height: 1.62;
  color: var(--ink-2);
  letter-spacing: -0.011em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 1.15rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  opacity: .55;
}
.eyebrow--center::before { display: none; }
.eyebrow svg { width: 15px; height: 15px; flex: none; }

.serif-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  font-style: italic;
}

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

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--cream { background: var(--cream); }
.section--sand  { background: var(--sand); }
.section--mint  { background: var(--green-lt); }
.section--white { background: var(--white); }
.section--dark  { background: var(--green-dk); color: #E7F0E9; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #FFFDF7; }
.section--dark .lead { color: rgba(231, 240, 233, .82); }
.section--dark .eyebrow { color: var(--green-mid); }

.head { max-width: 46ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.head--center { margin-inline: auto; text-align: center; }
.head--center .eyebrow { justify-content: center; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split--wide-left  { grid-template-columns: 1.15fr .85fr; }
.split--wide-right { grid-template-columns: .85fr 1.15fr; }
@media (max-width: 900px) {
  .split, .split--wide-left, .split--wide-right { grid-template-columns: minmax(0, 1fr); }
  .split__media { order: -1; }
  .split--media-last .split__media { order: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--green);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .95em 1.7em;
  border: 1px solid transparent;
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .95rem;
  font-weight: 550;
  letter-spacing: -0.005em;
  line-height: 1;
  cursor: pointer;
  transition: transform .35s var(--ease), background-color .3s var(--ease),
              color .3s var(--ease), box-shadow .35s var(--ease), border-color .3s var(--ease);
  box-shadow: 0 1px 2px rgba(16,36,28,.08);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(47,107,82,.65); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1em; height: 1em; flex: none; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--white); border-color: transparent; box-shadow: var(--shadow); }

.btn--light { --btn-bg: #fff; --btn-fg: var(--green-dk); }
.btn--light:hover { box-shadow: 0 14px 28px -14px rgba(0,0,0,.5); }

.btn--outline-light {
  --btn-bg: transparent; --btn-fg: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn--outline-light:hover { background: rgba(255,255,255,.1); }

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

.textlink {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-weight: 550;
  font-size: .95rem;
  color: var(--green);
  padding-bottom: 2px;
  box-shadow: inset 0 -1px 0 currentColor;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.textlink:hover { gap: .8em; color: var(--green-dk); }
.textlink svg { width: .85em; height: .85em; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 244, .72);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background-color .4s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--line-soft); background: rgba(251, 249, 244, .9); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 76px;
  padding-block: .7rem;
}

.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.16rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.brand__role {
  font-size: .625rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.nav { display: flex; align-items: center; gap: .15rem; }
.nav a {
  position: relative;
  padding: .55rem .8rem;
  font-size: .93rem;
  font-weight: 480;
  color: var(--ink-2);
  border-radius: 100px;
  transition: color .25s var(--ease), background-color .25s var(--ease);
}
.nav a:hover { color: var(--ink); background: rgba(47,107,82,.07); }
.nav a[aria-current="page"] { color: var(--green); font-weight: 600; }
.nav a { white-space: nowrap; }
.nav-cta { display: none; }

.header__cta { margin-left: .6rem; padding: .8em 1.35em; font-size: .9rem; }

.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block; width: 17px; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform .35s var(--ease), opacity .2s var(--ease);
}
.nav-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .burger { display: flex; }
  .nav-cta { display: inline-flex; }
  .header__cta { display: none; }
  .nav {
    position: fixed;
    inset: 76px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    padding: 1rem var(--gutter) 2.25rem;
    border-bottom: 1px solid var(--line-soft);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
  }
  .nav-open .nav { opacity: 1; visibility: visible; transform: none; }
  .nav a {
    padding: .95rem .25rem;
    font-size: 1.15rem;
    font-family: var(--serif);
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
  }
  .nav a:hover { background: transparent; }
  .nav .btn { margin-top: 1.4rem; justify-content: center; border-bottom: 0; font-family: var(--sans); font-size: .95rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 6.5rem) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -22%; right: -14%;
  width: 62vw; height: 62vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle at 50% 50%, rgba(47,107,82,.16), rgba(47,107,82,0) 55%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -30%; left: -18%;
  width: 50vw; height: 50vw;
  max-width: 700px; max-height: 700px;
  background: radial-gradient(circle at 50% 50%, rgba(226,213,192,.55), rgba(226,213,192,0) 55%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); }
}
.hero h1 { margin-bottom: .35em; }
.hero h1 em {
  font-style: italic;
  color: var(--green);
}
.hero__media { position: relative; }
.hero__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 300px 300px 26px 26px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 940px) {
  .hero__img { aspect-ratio: 3 / 4; border-radius: 210px 210px var(--r) var(--r); }
}
@media (max-width: 560px) {
  .hero__img { aspect-ratio: 4 / 5; border-radius: 170px 170px var(--r) var(--r); }
}
.hero__badge {
  position: absolute;
  left: -1.5rem; bottom: 2.2rem;
  background: var(--white);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: .85rem;
  max-width: 250px;
}
@media (max-width: 940px) { .hero__badge { left: 1rem; bottom: -1.4rem; } }
.hero__badge img { width: 46px; height: 46px; border-radius: 100px; object-fit: cover; flex: none; }
.hero__badge b { display: block; font-size: .9rem; font-weight: 600; }
.hero__badge span { font-size: .78rem; color: var(--muted); line-height: 1.45; display: block; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.2rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-soft);
}
.hero__meta div { }
.hero__meta b {
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  margin-bottom: .35rem;
}
.hero__meta span { font-size: .84rem; color: var(--muted); }

/* Page hero (subpages) */
.pagehero {
  position: relative;
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.pagehero::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 55vw; height: 55vw;
  max-width: 760px; max-height: 760px;
  background: radial-gradient(circle at 50% 50%, rgba(47,107,82,.14), rgba(47,107,82,0) 55%);
  pointer-events: none;
}
.pagehero__inner { position: relative; max-width: 44ch; }
.pagehero--wide .pagehero__inner { max-width: 58ch; }

.pagehero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.pagehero__grid .pagehero__inner { max-width: none; }
@media (max-width: 900px) {
  .pagehero__grid { grid-template-columns: minmax(0, 1fr); }
  .pagehero__grid .media { order: -1; }
}
.pagehero h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); }

.crumbs {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 1.3rem;
  display: flex;
  gap: .5em;
  align-items: center;
}
.crumbs a:hover { color: var(--green); }
.crumbs span { opacity: .5; }

/* ---------- Media ---------- */
.media { position: relative; }
.media img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.media--tall img { aspect-ratio: 4 / 5; }
.media--wide img { aspect-ratio: 4 / 3; }
.media--square img { aspect-ratio: 1 / 1; }
.media--arch img { border-radius: 260px 260px var(--r) var(--r); }
.media--blob img { border-radius: 58% 42% 46% 54% / 46% 52% 48% 54%; }

.media__caption {
  margin-top: .9rem;
  font-size: .8rem;
  color: var(--muted);
}

.media-stack { position: relative; padding-bottom: 3.5rem; padding-right: 3rem; }
.media-stack__main img { aspect-ratio: 4 / 5; border-radius: var(--r-lg); }
.media-stack__sub {
  position: absolute;
  right: 0; bottom: 0;
  width: 52%;
  border: 8px solid var(--cream);
  border-radius: calc(var(--r) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.media-stack__sub img { aspect-ratio: 1 / 1; border-radius: 0; box-shadow: none; }
.section--white .media-stack__sub { border-color: var(--white); }
.section--sand .media-stack__sub { border-color: var(--sand); }
.section--mint .media-stack__sub { border-color: var(--green-lt); }

/* ---------- Cards ---------- */
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
a.card:hover, .card--hover:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .97rem; }
.card .textlink { margin-top: auto; padding-top: 1.4rem; align-self: flex-start; }

.card__img {
  margin: calc(-1 * clamp(1.6rem, 2.6vw, 2.2rem));
  margin-bottom: clamp(1.4rem, 2.2vw, 1.8rem);
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.card__img img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
a.card:hover .card__img img { transform: scale(1.05); }

.card__icon {
  width: 46px; height: 46px;
  border-radius: 100px;
  background: var(--green-lt);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
}
.card__icon svg { width: 21px; height: 21px; }

.card--num { padding-top: clamp(1.6rem, 2.6vw, 2.2rem); }
.card__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--green-mid);
  margin-bottom: .8rem;
  display: block;
}

.card--soft { background: var(--green-lt); border-color: transparent; }
.card--sand { background: var(--sand); border-color: transparent; }

/* ---------- Symptom list ---------- */
.ticklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.ticklist li {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.ticklist li::before {
  content: "";
  flex: none;
  width: 22px; height: 22px;
  margin-top: .18em;
  border-radius: 100px;
  background: var(--green-lt) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F6B52' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.section--dark .ticklist li { color: rgba(231,240,233,.9); }
.section--dark .ticklist li::before {
  background-color: rgba(255, 255, 255, .16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFDF7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.dotlist { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.dotlist li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.6;
}
.dotlist li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 7px; height: 7px;
  border-radius: 100px;
  background: var(--green);
}

/* ---------- Values / feature rows ---------- */
.values { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.values li {
  display: grid;
  grid-template-columns: minmax(0, 12rem) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-soft);
  align-items: baseline;
}
.values li:last-child { border-bottom: 1px solid var(--line-soft); }
.values b {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
  color: var(--green);
  letter-spacing: -0.015em;
}
.values span { color: var(--muted); }
@media (max-width: 640px) {
  .values li { grid-template-columns: minmax(0, 1fr); gap: .3rem; }
}

/* ---------- Quote ---------- */
.quote {
  text-align: center;
  max-width: 22ch;
  margin-inline: auto;
}
.quote__mark {
  width: 40px; height: 40px;
  margin: 0 auto 1.5rem;
  opacity: .75;
}
.quote cite {
  display: block;
  margin-top: 1.75rem;
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.section--dark .quote cite { color: var(--green-mid); }

/* ---------- Gallery strip ---------- */
.strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.6rem, 1.4vw, 1.1rem);
}
.strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--r);
}
.strip > *:nth-child(1) { border-top-left-radius: var(--r-xl); }
.strip > *:nth-child(1) img { border-top-left-radius: var(--r-xl); }
.strip > *:last-child img { border-bottom-right-radius: var(--r-xl); }
@media (max-width: 760px) { .strip { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- CTA band ---------- */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--green-dk);
  color: #EAF2EC;
  border-radius: var(--r-xl);
  padding: clamp(2.75rem, 6vw, 5rem);
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute;
  top: -55%; left: 50%;
  translate: -50% 0;
  width: 120%; height: 160%;
  background: radial-gradient(ellipse at 50% 40%, rgba(201, 220, 207, .16), rgba(201,220,207,0) 60%);
}
.cta > * { position: relative; }
.cta h2 { color: #FFFDF7; max-width: 18ch; margin-inline: auto; }
.cta p { color: rgba(234, 242, 236, .8); max-width: 52ch; margin-inline: auto; }
.cta .btn-row { justify-content: center; }

/* ---------- Contact blocks ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.4vw, 2rem);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
a.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-card .card__icon { margin-bottom: 1rem; }
.contact-card small {
  display: block;
  font-size: .74rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45rem;
  font-weight: 550;
}
.contact-card b {
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  display: block;
  line-height: 1.3;
}
.contact-card p { font-size: .92rem; color: var(--muted); margin-top: .5rem; }

/* ---------- Form ---------- */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 620px) { .form__row { grid-template-columns: minmax(0, 1fr); } }
.field { display: grid; gap: .45rem; }
.field label {
  font-size: .82rem;
  font-weight: 550;
  letter-spacing: .02em;
  color: var(--ink-2);
}
.field input, .field textarea, .field select {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: .85rem 1rem;
  width: 100%;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47,107,82,.13);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.form__consent {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.5;
}
.form__consent input { margin-top: .25em; width: 17px; height: 17px; accent-color: var(--green); flex: none; }
.form__consent a { color: var(--green); box-shadow: inset 0 -1px 0 currentColor; }
.form__note {
  font-size: .84rem;
  color: var(--muted);
  background: var(--green-lt);
  border-radius: var(--r-sm);
  padding: .9rem 1.1rem;
}

/* ---------- Accordion ---------- */
.acc { border-top: 1px solid var(--line-soft); }
.acc details {
  border-bottom: 1px solid var(--line-soft);
}
.acc summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 3rem 1.35rem 0;
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  letter-spacing: -0.015em;
  transition: color .25s var(--ease);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { color: var(--green); }
.acc summary::after {
  content: "";
  position: absolute;
  right: .35rem; top: 50%;
  translate: 0 -50%;
  width: 13px; height: 13px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F6B52' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .35s var(--ease);
}
.acc details[open] summary::after { transform: rotate(45deg); }
.acc__body { padding-bottom: 1.6rem; color: var(--muted); max-width: 68ch; }

/* ---------- Price ---------- */
.price {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.03em;
}
.price small {
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--muted);
  letter-spacing: 0;
}

/* ---------- Event card ---------- */
.event {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
@media (max-width: 820px) { .event { grid-template-columns: minmax(0, 1fr); } }
.event__media img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.event__media--poster { background: var(--sand); display: grid; place-items: center; padding: clamp(1.25rem, 2.5vw, 2rem); }
.event__media--poster img { object-fit: contain; height: auto; max-height: 560px; border-radius: var(--r-sm); box-shadow: var(--shadow); }
.event__body { padding: clamp(1.75rem, 3.5vw, 3rem); }
.event__facts { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .7rem; }
.event__facts li { display: flex; gap: .8rem; align-items: center; font-size: .97rem; }
.event__facts svg { width: 17px; height: 17px; color: var(--green); flex: none; }

/* ---------- Disclaimer ---------- */
.disclaimer {
  background: var(--sand);
  margin-inline: auto;
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  font-size: .92rem;
  line-height: 1.68;
  color: var(--muted);
  max-width: 78ch;
}
.disclaimer h3 {
  font-size: 1.05rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink-2);
  margin-bottom: .7rem;
}

/* ---------- Legal / prose ---------- */
.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); margin-top: 2.75rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.15rem; margin-top: 2rem; }
.prose p, .prose li { color: var(--ink-2); }
.prose ul { padding-left: 1.15rem; display: grid; gap: .4rem; margin: 0 0 1.15em; }
.prose a { color: var(--green); box-shadow: inset 0 -1px 0 currentColor; word-break: break-word; }
.prose hr { border: 0; border-top: 1px solid var(--line-soft); margin: 2.5rem 0; }
.prose dl { display: grid; gap: .5rem; margin: 0 0 1.5em; }
.prose dt { font-weight: 600; font-size: .93rem; }
.prose dd { margin: 0 0 .6rem; color: var(--muted); }

/* ---------- Footer ---------- */
.footer {
  background: var(--green-dk);
  color: rgba(231, 240, 233, .78);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem;
  font-size: .93rem;
}
.footer a { transition: color .25s var(--ease); }
.footer a:hover { color: #fff; }
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
}
@media (max-width: 940px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: minmax(0, 1fr); } }
.footer__brand { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.footer__brand img { width: 42px; height: 42px; }
.footer__brand .brand__name { color: #FFFDF7; font-size: 1.24rem; }
.footer__brand .brand__role { color: rgba(231,240,233,.6); }
.footer p { color: rgba(231, 240, 233, .68); max-width: 34ch; }
.footer h2 {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1.1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.11);
  font-size: .82rem;
  color: rgba(231, 240, 233, .55);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.socials { display: flex; gap: .6rem; margin-top: 1.4rem; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center;
  transition: background-color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.socials a:hover { background: rgba(255,255,255,.11); border-color: transparent; transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 1rem; top: -100px;
  background: var(--green); color: #fff;
  padding: .7rem 1.1rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
  z-index: 200; transition: top .25s var(--ease);
}
.skip:focus { top: 0; }

/* ---------- Sticky Kontaktleiste (nur Mobil) ---------- */
.mobilebar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: .6rem;
  padding: .7rem var(--gutter);
  padding-bottom: max(.7rem, env(safe-area-inset-bottom));
  background: rgba(251, 249, 244, .88);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-top: 1px solid var(--line-soft);
  transform: translateY(105%);
  transition: transform .4s var(--ease);
}
.mobilebar.is-in { transform: none; }

.mobilebar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .85em 1em;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--white);
  color: var(--ink);
  font-size: .92rem;
  font-weight: 550;
  line-height: 1;
}
.mobilebar__btn svg { width: 1.05em; height: 1.05em; flex: none; }
.mobilebar__btn--primary {
  background: var(--green);
  border-color: transparent;
  color: #fff;
  flex: 1.35;
}
.mobilebar__btn:active { transform: scale(.98); }

@media (max-width: 720px) {
  .mobilebar { display: flex; }
  /* Platz, damit die Leiste den Footer nicht überdeckt */
  .footer { padding-bottom: 5.5rem; }
}
@media (max-width: 720px) and (prefers-reduced-motion: reduce) {
  .mobilebar { transition: none; }
}

/* ==========================================================================
   Wegweiser — 3 Fragen, eine Empfehlung
   ========================================================================== */
.wiz {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 3.25rem);
  box-shadow: var(--shadow);
  max-width: 940px;
  margin-inline: auto;
}
.section--white .wiz { background: var(--cream); }

.wiz__head { margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }
.wiz__head .eyebrow { gap: .5em; }
.wiz__head .eyebrow::before { display: none; }
.wiz__head .eyebrow svg { width: 15px; height: 15px; }
.wiz__head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: .35em; }
.wiz__head .lead { max-width: 54ch; }

.wiz__progress {
  list-style: none;
  display: flex;
  gap: .5rem;
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  padding: 0;
}
.wiz__progress li {
  height: 4px;
  flex: 1;
  border-radius: 100px;
  background: var(--green-lt);
  transition: background-color .45s var(--ease);
}
.wiz__progress li.is-active, .wiz__progress li.is-done { background: var(--green); }
.wiz__progress li.is-done { opacity: .45; }

.wiz__step { display: none; border: 0; padding: 0; margin: 0; min-width: 0; }
.wiz__step.is-active { display: block; animation: wizIn .45s var(--ease) both; }
@keyframes wizIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .wiz__step.is-active { animation: none; } }

.wiz__q {
  display: block;
  float: left;           /* damit die Legende volle Breite bekommt */
  width: 100%;
  padding: 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  line-height: 1.25;
  letter-spacing: -0.018em;
  margin-bottom: 1.4rem;
}
.wiz__q span { color: var(--green-mid); margin-right: .35em; }

.wiz__opts { display: grid; gap: .75rem; clear: both; }
.wiz__opts--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wiz__opts--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 760px) {
  .wiz__opts--3, .wiz__opts--2 { grid-template-columns: minmax(0, 1fr); }
}

.wiz__opt { position: relative; display: block; cursor: pointer; height: 100%; }
.wiz__opt input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%; height: 100%;
  margin: 0;
  cursor: pointer;
}
.wiz__optBody {
  display: block;
  height: 100%;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  transition: border-color .28s var(--ease), background-color .28s var(--ease),
              transform .28s var(--ease), box-shadow .28s var(--ease);
}
.section--white .wiz .wiz__optBody { background: var(--white); }
.wiz__opt:hover .wiz__optBody { border-color: var(--green-mid); transform: translateY(-2px); }
.wiz__opt input:focus-visible + .wiz__optBody { outline: 2px solid var(--green); outline-offset: 3px; }
.wiz__opt input:checked + .wiz__optBody {
  border-color: var(--green);
  background: var(--green-lt);
  box-shadow: inset 0 0 0 1px var(--green);
}

.wiz__optIcon {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 100px;
  background: var(--green-lt);
  color: var(--green);
  margin-bottom: .8rem;
  transition: background-color .28s var(--ease);
}
.wiz__opt input:checked + .wiz__optBody .wiz__optIcon { background: var(--white); }
.wiz__optIcon svg { width: 18px; height: 18px; }
.wiz__optBody b { display: block; font-size: 1rem; font-weight: 600; line-height: 1.32; }
.wiz__optBody small { display: block; margin-top: .3rem; font-size: .85rem; color: var(--muted); line-height: 1.45; }

.wiz__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.wiz__hint { font-size: .85rem; color: var(--muted-2); margin: 0; }

/* --- Ergebnis --- */
.wiz__resultCard { animation: wizIn .5s var(--ease) both; }
.wiz__resultCard h3 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: .4em; }
.wiz__resultCard .lead { max-width: 58ch; }

.wiz__combo {
  font-size: .95rem;
  color: var(--muted);
  margin-top: 1rem;
}
.wiz__combo strong { color: var(--ink-2); font-weight: 600; }

.wiz__price {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.wiz__price b {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.5vw, 2.9rem);
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.03em;
}
.wiz__price span { font-size: .92rem; color: var(--muted); }
.wiz__priceNote { font-size: .92rem; color: var(--muted); margin-top: .6rem; }

.wiz__notes { margin-top: 1.5rem; }
.wiz__notes li { font-size: .95rem; }

.wiz__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft);
}
.wiz__foot button.textlink {
  background: none;
  border: 0;
  padding: 0 0 2px;
  cursor: pointer;
  font-family: inherit;
}
.wiz__disclaimer {
  margin-top: 1.4rem;
  font-size: .84rem;
  line-height: 1.6;
  color: var(--muted-2);
}

/* ==========================================================================
   Pollenkalender
   ========================================================================== */
.pk { max-width: 980px; margin-inline: auto; }
.pk__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .5rem;
  scrollbar-width: thin;
}
/* Verlauf am rechten Rand, solange noch etwas zu scrollen ist */
.pk__wrap { position: relative; }
.pk__wrap::after {
  content: "";
  position: absolute;
  top: 0; right: -1px; bottom: .5rem;
  width: 48px;
  pointer-events: none;
  background: linear-gradient(to right, rgba(255,255,255,0), var(--white));
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.section--cream .pk__wrap::after { background: linear-gradient(to right, rgba(251,249,244,0), var(--cream)); }
.pk__wrap.has-more::after { opacity: 1; }

.pk__swipe {
  display: none;
  align-items: center;
  gap: .45em;
  font-size: .8rem;
  color: var(--muted-2);
  margin-bottom: .75rem;
}
.pk__swipe svg { width: 14px; height: 14px; }
@media (max-width: 760px) { .pk__swipe { display: inline-flex; } }
.pk__grid { min-width: 660px; }

.pk__row {
  display: grid;
  grid-template-columns: 9.5rem repeat(12, minmax(0, 1fr));
  gap: 4px;
  align-items: center;
  margin-bottom: 4px;
}
.pk__row--head .pk__name { min-height: 0; }
.pk__row--head { margin-bottom: .6rem; }

.pk__name {
  position: sticky;
  left: 0;
  z-index: 2;
  align-self: stretch;      /* Hintergrund muss die volle Zeilenhöhe decken */
  display: flex;
  align-items: center;
  min-height: 26px;
  /* deckt auch die 4px Lücke zwischen den Zeilen ab, sonst blitzen
     durchscrollende Zellen als feine Linien durch */
  margin-block: -2px;
  padding-block: 2px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-2);
  padding-right: .75rem;
  white-space: nowrap;
  background: var(--white);
  transition: box-shadow .3s var(--ease);
}
.section--cream .pk__name { background: var(--cream); }
.section--mint .pk__name  { background: var(--green-lt); }
/* Trennschatten, sobald horizontal gescrollt wurde */
.pk__wrap.is-scrolled .pk__name { box-shadow: 8px 0 10px -8px rgba(16, 36, 28, .28); }
.pk__row--head .pk__name { border: 0; }

.pk__mon {
  text-align: center;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding-bottom: .2rem;
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}

.pk__cell {
  height: 26px;
  border-radius: 7px;
  background: var(--green-lt);
  opacity: .55;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.pk__cell--1 { background: var(--green-mid); opacity: 1; }
.pk__cell--2 { background: var(--green); opacity: 1; }
.pk__cell--1:hover, .pk__cell--2:hover { transform: scaleY(1.18); }

/* aktueller Monat */
.pk__mon.is-now { color: var(--green); border-bottom-color: var(--green); }
.pk__cell.is-now { box-shadow: 0 0 0 2px var(--cream), 0 0 0 3px var(--green-mid); }
.section--white .pk__cell.is-now { box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--green-mid); }

.pk__legend {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  font-size: .84rem;
  color: var(--muted);
}
.pk__legend span { display: inline-flex; align-items: center; gap: .5em; }
.pk__key { width: 20px; height: 11px; border-radius: 4px; display: inline-block; }
.pk__key--1 { background: var(--green-mid); }
.pk__key--2 { background: var(--green); }
.pk__now { font-weight: 600; color: var(--green); }

.pk__note {
  margin-top: 1.1rem;
  font-size: .85rem;
  line-height: 1.6;
  color: var(--muted-2);
  max-width: 72ch;
}
.pk__note a { color: var(--green); box-shadow: inset 0 -1px 0 currentColor; }

.pk__cta {
  display: grid;
  grid-template-columns: 1.6fr auto;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--green-lt);
  border-radius: var(--r-lg);
}
.pk__cta h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: .4em; }
.pk__cta p { font-size: .96rem; color: var(--muted); margin: 0; max-width: 62ch; }
@media (max-width: 780px) {
  .pk__cta { grid-template-columns: minmax(0, 1fr); }
}
