/* Reither Riese — Frontend & Editor (add_editor_style) */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/fraunces-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('assets/fonts/nunito-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #1C1C1C;
  --ink-soft: #3A3A3A;
  /* Aqua/teal from logo mountains (#7BC5C1 / #4A908D), tuned for white text on bands */
  --teal: #5EB4AD;
  --teal-dark: #3D8380;
  --teal-deep: #1A4543;
  /* Sun gold from logo (~#FDB813), slightly deepened for solid buttons */
  --orange: #E99A1F;
  --orange-dark: #CF850F;
  --orange-light: #FFF6E8;
  --cream: #F3EEE4;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-lg: 28px;
  --container: min(90vw, 960px);
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

.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;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* Inline / text links (not buttons) */
a:not(.btn) {
  color: var(--teal-dark);
  text-decoration: underline;
  text-decoration-color: rgba(94, 180, 173, 0.45);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
a:not(.btn):hover {
  color: var(--teal);
  text-decoration-color: rgba(94, 180, 173, 0.75);
}
a:not(.btn):focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.container {
  width: var(--container);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  text-decoration: none;
  letter-spacing: 0.03em;
  padding: 0.85em 2em;
  border-radius: 60px;
  transition: all 0.2s ease;
}
.btn--solid {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}
.btn--solid:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}
.btn--solid:focus-visible {
  outline-color: var(--white);
}
.section--footer .btn:focus-visible {
  outline-color: var(--white);
}
.btn--large {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  padding: 1em 2.5em;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 10vh, 6rem) clamp(1.25rem, 4vw, 2rem);
  background: var(--white);
  text-align: center;
}
.hero__inner { max-width: 720px; }
.hero__logo {
  width: clamp(250px, 60vw, 320px);
  height: clamp(250px, 60vw, 320px);
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: clamp(1.5rem, 4vh, 3rem);
  box-shadow: 0 8px 40px rgba(94, 180, 173, 0.18);
}
.hero__title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 1.15;
  margin: 0 0 clamp(1rem, 3vh, 1.8rem);
  letter-spacing: -0.02em;
}
.hero__title-line { display: block; }
.hero__title-line.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.hero__title em { font-style: normal; }
.c-teal { color: var(--teal); }
.c-orange { color: var(--orange); }
.hero__lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto clamp(1.5rem, 4vh, 2.5rem);
}
.hero__coop { margin-bottom: clamp(1.25rem, 3.5vh, 2rem); }
.hero__coop a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

.hero__hours {
  max-width: 380px;
  margin: clamp(1.25rem, 3vh, 2rem) auto 0;
  padding: clamp(1rem, 2.5vw, 1.35rem) clamp(1.15rem, 3vw, 1.5rem);
  text-align: left;
  border: 1px solid rgba(28, 28, 28, 0.1);
  border-radius: var(--radius);
  background: rgba(75, 168, 160, 0.06);
}
.hero__hours-heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.35;
  margin: 0 0 0.65em;
  color: var(--ink);
}
.hero__hours-list {
  margin: 0;
  padding: 0;
}
.hero__hours-row {
  display: grid;
  grid-template-columns: minmax(4.5rem, 32%) 1fr;
  gap: 0.5rem 1rem;
  align-items: baseline;
  font-size: clamp(0.88rem, 1.8vw, 0.98rem);
  margin: 0;
  padding: 0.35rem 0;
  border-top: 1px solid rgba(28, 28, 28, 0.08);
}
.hero__hours-row:first-of-type { border-top: none; padding-top: 0; }
.hero__hours-row dt {
  margin: 0;
  font-weight: 700;
  color: var(--teal-dark);
}
.hero__hours-row dd {
  margin: 0;
  color: var(--ink);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: clamp(1.5rem, 4vh, 2.5rem);
}

.divider {
  display: block;
  line-height: 0;
  margin: 0;
  margin-top: -1px;
  margin-bottom: -1px;
  position: relative;
}
/* Cover 1px hairline where divider background bleeds past SVG edge. */
.divider::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  pointer-events: none;
  z-index: 1;
}
.divider--white-to-cream::after { background: var(--cream); }
.divider--cream-to-teal::after { background: var(--teal); }
.divider--cream::after { background: var(--white); }
.divider--orange-light::after { background: var(--orange-light); }
.divider--teal-dark::after { background: var(--teal-deep); }

.divider svg { display: block; width: 100%; height: clamp(50px, 8vw, 120px); }
.divider--teal svg path { fill: var(--teal); }
.divider--white-to-cream { background: var(--white); }
.divider--white-to-cream svg path { fill: var(--cream); }
.divider--cream-to-teal { background: var(--cream); }
.divider--cream-to-teal svg path { fill: var(--teal); }
.divider--cream { background: var(--teal); }
.divider--cream svg path { fill: var(--white); }
.divider--orange-light { background: var(--white); }
.divider--orange-light svg path { fill: var(--orange-light); }
.divider--teal-dark { background: var(--orange-light); }
.divider--teal-dark svg path { fill: var(--teal-deep); }

.section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  margin: 0;
}
.section--teal { background: var(--teal); color: var(--white); }
.section--cream { background: var(--cream); color: var(--ink); }
.section--mitglied { background: var(--orange-light); color: var(--ink); }
.section--footer {
  background: var(--teal-deep);
  color: var(--white);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.label {
  display: block;
  font-weight: 700;
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 1rem;
}
.label--dark { color: var(--ink); opacity: 0.5; }

h2.label {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  font-weight: 700;
  line-height: 1.7;
}

.section__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.25;
  margin: 0 0 1.2em;
  max-width: 680px;
  text-wrap: balance;
}
.section__heading--dark { color: var(--ink); }
.section__heading strong { font-weight: 700; }
.section__body {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  max-width: 620px;
  margin: 0 0 1.2em;
  line-height: 1.75;
}
.section__body--dark { color: var(--ink-soft); }
.section__cta { text-align: center; margin-top: clamp(2rem, 5vw, 3rem); }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.8rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}
@media (max-width: 768px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
.pillar {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  text-align: center;
}
.pillar__number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  opacity: 0.35;
  margin-bottom: 0.4em;
}
.pillar__text { display: block; font-weight: 600; font-size: clamp(0.78rem, 1.6vw, 0.9rem); }

.section--quote {
  background: var(--white);
  padding: clamp(3.5rem, 10vw, 7rem) 0;
  text-align: center;
}
.blockquote { margin: 0; padding: 0; text-wrap: balance; }
.blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 4.5vw, 3rem);
  line-height: 1.35;
  color: var(--teal-dark);
  max-width: 740px;
  margin: 0 auto;
}

.offerings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(0.8rem, 1.5vw, 1.35rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 1100px) {
  .offerings {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.offering {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.5rem) clamp(1.2rem, 3vw, 1.8rem);
  text-align: center;
  border: 1px solid rgba(28, 28, 28, 0.1);
  box-shadow: 0 2px 14px rgba(28, 28, 28, 0.06);
}
.offering__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin: 0 0 0.3em;
}
.offering__desc { text-wrap: balance; line-height: 1.35; font-size: clamp(0.8rem, 1.5vw, 0.88rem); color: var(--ink-soft); margin: 0; }

.offering-cta {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding: clamp(2rem, 5vw, 2.75rem) clamp(1.5rem, 4vw, 2.25rem);
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(28, 28, 28, 0.1);
  box-shadow: 0 2px 14px rgba(28, 28, 28, 0.06);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.offering-cta__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin: 0 0 0.5em;
  color: var(--ink);
}
.offering-cta__text {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: var(--ink-soft);
  margin: 0 0 1.35em;
  line-height: 1.65;
  text-wrap: balance;
}

.membership {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
@media (max-width: 640px) { .membership { grid-template-columns: 1fr; } }
.membership__price { text-align: center; padding: clamp(0.5rem, 2vw, 1rem); }
.membership__amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  color: var(--orange);
}
.membership__currency {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--orange);
  margin-left: 0.1em;
}
.membership__label {
  display: block;
  font-size: clamp(0.7rem, 1.4vw, 0.8rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-top: 0.8em;
}
.membership__benefits-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  margin: 0 0 0.8em;
}
.membership__list { list-style: none; padding: 0; margin: 0 0 1em; }
.membership__list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
  font-size: clamp(0.88rem, 1.8vw, 0.98rem);
  color: var(--ink-soft);
}
.membership__list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.membership__note { font-size: 0.85rem; color: var(--ink-soft); opacity: 0.7; margin: 0; font-style: italic; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col .label {
  color: var(--white);
  opacity: 0.5;
  font-size: 1rem;
}
.section--footer .footer-grid a:not(.btn) {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.85);
}
.section--footer .footer-grid a:not(.btn):hover {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 1);
}
.section--footer .footer-grid a:not(.btn):focus-visible {
  outline-color: var(--white);
}
.footer-intro { font-size: 1rem; line-height: 1.7; margin: 0 0 1.2em; opacity: 0.85; }
.footer-contact {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 1.2em;
  opacity: 0.85;
}
.footer-contact a {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.45);
}
.footer-contact a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.85);
}
.footer-subtitle { font-family: var(--font-display); font-weight: 600; margin: 0 0 0.6em; opacity: 0.7; }
.goals { list-style: none; padding: 0; margin: 0 0 1.2em; text-wrap: balance; }
.goals li { padding-left: 1.3em; margin-bottom: 0.6em; font-size: 1rem; position: relative; }
.goals li::before { content: "→"; position: absolute; left: 0; opacity: 0.5; }
.footer-note { font-size: 0.85rem; opacity: 0.75; margin: 0; text-wrap: balance; }
.team-list { list-style: none; padding: 0; margin: 0; }
.team-list li { margin-bottom: 0.4em; font-size: 0.9rem; }
.team-role { opacity: 0.65; margin-left: 0.35em; }
.contact-actions { list-style: none; padding: 0; margin: 0; }
.contact-actions a {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.45);
}
.contact-actions a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.85);
}
.contact-actions li { margin-bottom: 0.5em; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
}
.footer-legal a {
  color: var(--white);
  opacity: 0.85;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}
.footer-legal a:hover {
  color: var(--white);
  opacity: 0.85;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}
.footer-legal__sep { opacity: 0.5; }

/* Rechtstexte */
.subnav {
  background: var(--cream);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.subnav a {
  color: var(--teal-dark);
  font-weight: 600;
  text-decoration: none;
}
.subnav a:hover { text-decoration: underline; text-underline-offset: 3px; }
.subnav a:focus-visible {
  outline: 2px solid var(--teal-dark);
  outline-offset: 4px;
  border-radius: 2px;
}

.legal-doc {
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.legal-doc h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}
.legal-doc h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
}
.legal-doc p,
.legal-doc li {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0 0 1em;
}
.legal-doc ul { padding-left: 1.2em; margin: 0 0 1em; }
.legal-doc .hint {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  background: var(--orange-light);
  border-radius: var(--radius);
  line-height: 1.55;
}
