/* ==========================================================
   Frauen mit Plan B — Stylesheet
   Farben bewusst dezent eingesetzt (Akzente, nicht Flächen)
   ========================================================== */

@font-face {
  font-family: "Old Standard TT";
  src: url("../assets/fonts/OldStandardTT-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Old Standard TT";
  src: url("../assets/fonts/OldStandardTT-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Old Standard TT";
  src: url("../assets/fonts/OldStandardTT-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/* Self-hosted (SIL Open Font License) - no Google Fonts request, DSGVO-safe. */

:root {
  --color-ink: #232722;
  --color-forest: #5D6E60;
  --color-sand: #dab880;
  --color-cream: #f6f2ea;
  --color-paper: #fbf9f5;
  --color-white: #ffffff;

  --font-headline: "Old Standard TT", Georgia, "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1180px;
  --space-section: clamp(2.75rem, 5vw, 5.5rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }

/* ---------- Demo banner ---------- */
.demo-banner {
  background: var(--color-ink);
  color: var(--color-sand);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.55rem 1rem;
}
.demo-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-forest);
  background: var(--color-cream);
  border: 1px solid rgba(93,110,96,0.35);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.75rem;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: var(--font-headline);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}
h1 {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); letter-spacing: 0.015em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-family: var(--font-body); font-weight: 600; }
em { font-style: italic; color: var(--color-forest); }
p { margin: 0 0 1em; }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-forest);
  margin-bottom: 1rem;
  font-weight: 600;
}
.eyebrow--light { color: var(--color-sand); }

/* ---------- Layout helpers ---------- */
.section {
  padding: var(--space-section) 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 820px) {
  .section__grid { grid-template-columns: 1fr; }
}

/* ---------- Buttons / links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.1rem;
  background: var(--color-ink);
  color: var(--color-paper);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(35,39,34,0.22);
  transition: transform 0.35s var(--ease), background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.btn:hover { background: var(--color-forest); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(35,39,34,0.28); }
.btn--small { padding: 0.65rem 1.4rem; font-size: 0.85rem; }
.btn--light { background: var(--color-sand); color: var(--color-ink); box-shadow: 0 4px 14px rgba(218,184,128,0.35); }
.btn--light:hover { background: #e8cd9c; box-shadow: 0 8px 20px rgba(218,184,128,0.45); }
.btn--whatsapp { background: var(--color-forest); color: var(--color-paper); box-shadow: 0 4px 14px rgba(93,110,96,0.4); }
.btn--whatsapp:hover { background: #4a584c; box-shadow: 0 8px 20px rgba(93,110,96,0.5); }
.btn--outline { background: var(--color-white); color: var(--color-ink); box-shadow: inset 0 0 0 2px var(--color-forest); }
.btn--outline:hover { background: var(--color-forest); color: var(--color-paper); box-shadow: inset 0 0 0 2px var(--color-forest); transform: translateY(-2px); }

.cta-duo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.link-underline {
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
  padding-bottom: 2px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.5s var(--ease);
}
.link-underline:hover { background-size: 100% 1px; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--color-ink);
  color: var(--color-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-style: italic;
  pointer-events: none;
}
.preloader__word { opacity: 0; transform: translateY(12px); }

/* ---------- Custom cursor (letter B) ---------- */
.cursor-b {
  position: fixed;
  top: 0;
  left: 0;
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--color-forest);
  pointer-events: none;
  z-index: 500;
  transform: translate(-50%, -55%);
  transition: color 0.25s ease, transform 0.2s var(--ease);
  will-change: transform;
}
.cursor-b.is-active { color: var(--color-sand); }
@media (hover: none), (max-width: 820px) { .cursor-b { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 1rem;
  padding: 1.25rem clamp(1.5rem, 4vw, 3rem);
  background: rgba(251, 249, 245, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(35, 39, 34, 0.08);
}
.logo { font-family: var(--font-headline); font-size: 1.35rem; display: inline-flex; align-items: center; }
.logo em { color: var(--color-ink); }
.logo-img { height: 34px; width: auto; display: block; }
.site-footer .logo-img { height: 28px; }
.nav { display: flex; gap: clamp(1rem, 2vw, 2rem); }
.nav a { font-size: 0.9rem; font-weight: 600; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-ink);
  padding: 0.25rem 0.4rem;
}

/* Medium widths (tablet, or a narrowed desktop window): nav wraps to
   its own centered row instead of hiding behind a hamburger. */
@media (max-width: 860px) and (min-width: 561px) {
  .site-header .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }
}

/* True small screens: collapse into a hamburger-triggered dropdown. */
@media (max-width: 560px) {
  .site-header { position: relative; }
  .site-header .nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.25rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(35,39,34,0.1);
  }
  .site-header .nav.is-open { display: flex; }
  .nav-toggle { display: inline-block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-paper);
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(75% 75% at 50% 0%, rgba(255,255,255,0.12), transparent 60%),
    radial-gradient(70% 70% at 18% 18%, rgba(218,184,128,0.28), transparent 62%),
    radial-gradient(65% 65% at 85% 90%, rgba(218,184,128,0.32), transparent 65%),
    linear-gradient(160deg, #6f7e67 0%, #5d6e60 50%, #4d5c47 100%);
}

/* Intro sequence: our photos cycle full-bleed over the hero, then the
   last one shrinks away into the top-left corner before the headline
   is revealed. Driven by main.js (class toggling), gated so it only
   ever starts once the preloader has actually lifted. */
.hero__intro {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero__intro-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.5s ease, transform 0.6s ease;
}
.hero__intro-img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.hero__intro-img.is-collapsing {
  z-index: 3;
  transform-origin: 8% 10%;
  transition: transform 0.75s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.5s ease 0.3s;
  transform: scale(0.08);
  opacity: 0;
}
.hero__intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,24,19,0.08) 0%, rgba(20,24,19,0.22) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 1.5rem;
  opacity: 1;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero.js-intro .hero__content {
  opacity: 0;
  transform: translateY(14px);
}
.hero.js-intro .hero__content.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .hero__intro-img { transition: none; }
  .hero__intro-img.is-collapsing { transition: none; }
  .hero.js-intro .hero__content { opacity: 1; transform: none; }
}
.hero__headline { font-weight: 700; }
.hero__headline .line { display: block; overflow: hidden; }
.hero__headline em { color: var(--color-sand); font-style: italic; }
.hero .eyebrow, .hero__sub {
  text-shadow: 0 3px 18px rgba(0,0,0,0.65), 0 1px 5px rgba(0,0,0,0.7);
}
.hero .eyebrow { color: var(--color-paper); }
.hero__sub {
  max-width: 560px;
  margin: 1.5rem auto 2.25rem;
  font-size: 1.05rem;
  color: rgba(251, 249, 245, 0.92);
}
.hero__actions { display: flex; align-items: center; justify-content: center; gap: 1.75rem; flex-wrap: wrap; }
.hero .link-underline { color: var(--color-paper); }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 249, 245, 0.7);
}
.scroll-hint span {
  width: 1px;
  height: 34px;
  background: rgba(251, 249, 245, 0.5);
  position: relative;
  overflow: hidden;
}
.scroll-hint span::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-sand);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* ---------- Media frames (placeholder imagery) ---------- */
.media-frame {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  background:
    linear-gradient(160deg, rgba(93,110,96,0.9), rgba(35,39,34,0.95)),
    linear-gradient(0deg, rgba(218,184,128,0.15), rgba(218,184,128,0.15));
  background-blend-mode: overlay;
}
.media-frame--accent { background: linear-gradient(160deg, rgba(218,184,128,0.9), rgba(93,110,96,0.85)); }

/* ---------- Jetzt / pain section ---------- */
.pain-list { list-style: none; margin: 0 0 1.75rem; padding: 0; display: grid; gap: 1.1rem; }
.pain-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1.05rem;
}
.pain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 1px;
  background: var(--color-sand);
}

/* ---------- Manifesto ---------- */
.manifesto {
  max-width: none;
  background: var(--color-ink);
  color: var(--color-paper);
  text-align: center;
}
.manifesto__inner { max-width: 820px; margin: 0 auto; }
.manifesto__statement {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.manifesto__statement em { color: var(--color-sand); }
.manifesto__text { font-size: 1.1rem; color: rgba(251, 249, 245, 0.82); }
.manifesto__text em { color: var(--color-sand); font-style: normal; font-weight: 600; }

/* ---------- Compare (Plan A / Plan B) ---------- */
.compare { text-align: center; }
.compare h2 { max-width: 640px; margin-left: auto; margin-right: auto; }
.compare__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 3rem;
  text-align: left;
}
@media (max-width: 720px) {
  .compare__grid { grid-template-columns: 1fr; }
  .compare__arrow { transform: rotate(90deg); justify-self: center; }
}
.compare__card {
  position: relative;
  padding: 2.25rem;
  border: 1px solid rgba(35,39,34,0.1);
  border-radius: 8px;
  background: var(--color-white);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}
.compare__card--accent { border-color: rgba(218,184,128,0.5); background: var(--color-cream); }
.compare__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--border-angle), transparent 65%, var(--color-forest) 85%, var(--color-sand) 92%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: pillarBorderRotate 2.6s linear infinite paused;
}
.compare__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(35,39,34,0.14);
}
.compare__card:hover::before {
  opacity: 1;
  animation-play-state: running;
}
@media (prefers-reduced-motion: reduce) {
  .compare__card::before { animation: none; }
  .compare__card:hover::before { opacity: 1; }
}
.compare__label { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-forest); font-weight: 700; }
.compare__arrow { font-size: 1.8rem; color: var(--color-sand); }
.compare__footnote { margin-top: 2.5rem; font-family: var(--font-headline); font-style: italic; font-size: 1.4rem; }

/* ---------- Fit / Zielgruppe ---------- */
.fit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
@media (max-width: 820px) { .fit__grid { grid-template-columns: 1fr; } }
.check-list { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: 0.85rem; }
.check-list li { position: relative; padding-left: 1.6rem; }
.check-list--yes li::before { content: "✓"; position: absolute; left: 0; color: var(--color-forest); font-weight: 700; }
.check-list--no li::before { content: "–"; position: absolute; left: 0; color: var(--color-sand); font-weight: 700; }

/* ---------- Pillars ---------- */
.pillars { text-align: center; }
.pillars h2 { max-width: 700px; margin-left: auto; margin-right: auto; }
.pillars__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}
@media (max-width: 820px) { .pillars__grid { grid-template-columns: 1fr; } }
@property --border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}
.pillar {
  position: relative;
  padding: 2rem;
  background: linear-gradient(160deg, rgba(35,39,34,0.94), rgba(44,51,44,0.88));
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(251,249,245,0.1);
  color: var(--color-paper);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}
.pillar h3 { color: var(--color-paper); }
.pillar p { color: rgba(251, 249, 245, 0.72); }
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--border-angle), transparent 65%, var(--color-forest) 85%, var(--color-sand) 92%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: pillarBorderRotate 2.6s linear infinite paused;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.28);
}
.pillar:hover::before {
  opacity: 1;
  animation-play-state: running;
}
@keyframes pillarBorderRotate {
  to { --border-angle: 360deg; }
}
@media (prefers-reduced-motion: reduce) {
  .pillar::before { animation: none; }
  .pillar:hover::before { opacity: 1; }
}
.pillar__num {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  color: var(--color-sand);
  margin-bottom: 0.75rem;
}

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 820px) { .about__grid { grid-template-columns: 1fr; } }

/* ---------- CTA ---------- */
.cta {
  max-width: none;
  text-align: center;
  background: var(--color-forest);
  color: var(--color-paper);
  border-radius: 16px;
  margin: var(--space-section) 1.5rem;
  padding: clamp(3.5rem, 8vw, 6rem) 1.5rem;
}
.cta__headline {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.cta__headline em { color: var(--color-sand); }
.cta__sub { max-width: 480px; margin: 0 auto 2rem; color: rgba(251,249,245,0.85); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid rgba(35,39,34,0.1);
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
}
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(35,39,34,0.6);
}
.site-footer__legal { display: flex; gap: 1.25rem; }
.site-footer__social { display: flex; gap: 0.9rem; }
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-ink);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s var(--ease);
}
.site-footer__social a:hover { background: var(--color-forest); color: var(--color-paper); transform: translateY(-2px); }
.site-footer__social svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Team ---------- */
.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 2.5rem;
}
@media (max-width: 720px) { .team__grid { grid-template-columns: 1fr; } }
.team-card__media {
  aspect-ratio: 4 / 5;
  margin-bottom: 1.25rem;
  width: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 4px;
  background: var(--color-cream);
}
.team-card h3 { margin-bottom: 0.25rem; }
.team-card__role { display: block; font-size: 0.85rem; color: var(--color-forest); font-weight: 700; margin-bottom: 0.9rem; }

/* ---------- Offer cards (Produkte) ---------- */
.offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}
@media (max-width: 940px) { .offers__grid { grid-template-columns: 1fr; } }
.offer-card {
  display: flex;
  flex-direction: column;
  padding: 2.25rem;
  background: var(--color-white);
  border: 1px solid rgba(35,39,34,0.08);
  border-radius: 10px;
}
.offer-card--highlight { border-color: var(--color-sand); background: var(--color-cream); }
.offer-card h3 { margin-bottom: 0.6rem; }
.offer-card__for { font-size: 0.85rem; color: var(--color-forest); font-weight: 600; margin-bottom: 1rem; }
.offer-card ul { margin: 0 0 1.5rem; padding-left: 1.1rem; font-size: 0.95rem; }
.offer-card ul li { margin-bottom: 0.4rem; }
.offer-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Newsletter signup card ---------- */
.newsletter-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--color-cream);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 2rem;
}
.newsletter-card__media { min-height: 320px; }
.newsletter-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.newsletter-card__form { padding: clamp(2rem, 5vw, 3.5rem); display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 820px) {
  .newsletter-card { grid-template-columns: 1fr; }
  .newsletter-card__media { aspect-ratio: 16/9; min-height: 0; }
}

/* ---------- WhatsApp membership card (lanyard) ---------- */
.whatsapp-cta { text-align: center; }
.membership-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.5rem;
  text-decoration: none;
  transform-origin: top center;
  animation: cardSwing 4.5s ease-in-out infinite;
}
.membership-card__strap {
  width: 6px;
  height: 70px;
  background: linear-gradient(180deg, rgba(251,249,245,0.9), rgba(251,249,245,0.5));
  border-radius: 3px;
}
.membership-card__clip {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-sand);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  margin-bottom: -4px;
}
.membership-card__body {
  width: 230px;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(160deg, var(--color-ink), #2c332c);
  border: 1px solid rgba(218,184,128,0.4);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.membership-card:hover .membership-card__body {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 40px rgba(0,0,0,0.38);
}
.membership-card__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-sand);
  font-weight: 700;
}
.membership-card__title {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--color-paper);
}
.membership-card__cta {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-paper);
}
@keyframes cardSwing {
  0%, 100% { transform: rotate(-3.5deg); }
  50% { transform: rotate(3.5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .membership-card { animation: none; }
}

/* ---------- Contact form ---------- */
.contact-form { max-width: 560px; margin-top: 2rem; display: grid; gap: 1.1rem; }
.contact-form label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.4rem; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(35,39,34,0.2);
  border-radius: 6px;
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-ink);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--color-forest);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form__status { font-size: 0.9rem; color: var(--color-forest); font-weight: 600; min-height: 1.2em; }
.contact-alt {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(35,39,34,0.1);
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: 420px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
  z-index: 800;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s ease;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  text-transform: none;
  letter-spacing: normal;
}
.cookie-banner p { font-size: 0.88rem; line-height: 1.55; color: rgba(35,39,34,0.72); margin: 0 0 1.15rem; }
.cookie-banner p a { text-decoration: underline; font-weight: 600; }
.cookie-banner__actions { display: flex; gap: 0.65rem; flex-wrap: wrap; }
.cookie-banner__actions button {
  flex: 1;
  min-width: 130px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: background 0.25s ease, transform 0.25s var(--ease);
}
.cookie-btn--necessary { background: var(--color-paper); box-shadow: inset 0 0 0 1.5px rgba(35,39,34,0.25); color: var(--color-ink); }
.cookie-btn--necessary:hover { background: var(--color-cream); }
.cookie-btn--all { background: var(--color-forest); color: var(--color-paper); }
.cookie-btn--all:hover { background: #4a584c; }
@media (max-width: 480px) { .cookie-banner { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; padding: 1.25rem; } }

/* ---------- Reveal base states (JS toggles .is-visible) ---------- */
[data-reveal], [data-reveal-text] { opacity: 0; }
.is-visible { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-text] { opacity: 1 !important; transform: none !important; }
}
