:root {
  --ink: #302820;
  --muted: #746a60;
  --paper: #fbf6ee;
  --sand: #efe2d0;
  --clay: #6b8f6d;
  --clay-dark: #5a7a5c;
  --sage: #8f9a78;
  --sage-soft: #e7eadc;
  --cream: #fffaf2;
  --green: #6b8f6d;
  --green-dark: #5a7a5c;
  --green-soft: #d7ebd3;
  --line: rgba(48, 40, 32, 0.12);
  --radius: 24px;
  --radius-lg: 30px;
  --max: 1120px;
  --section-pad: clamp(32px, 3.5vw, 52px);
  --section-pad-tight: clamp(22px, 2.5vw, 36px);
  --shadow: 0 28px 80px rgba(78, 57, 39, 0.16);
  --shadow-sm: 0 8px 32px rgba(78, 57, 39, 0.10);
  --transition: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 3%, rgba(201, 120, 95, 0.12), transparent 26%),
    radial-gradient(circle at 94% 16%, rgba(143, 154, 120, 0.14), transparent 28%),
    var(--paper);
  font-family: Avenir, "Avenir Next", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

/* ── Focus visible ─────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Mobile Nav Overlay ────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(251, 246, 238, 0.97);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.nav-overlay nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.nav-overlay-link {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

.nav-overlay-link:hover {
  color: var(--clay);
}

/* ── Header ────────────────────────────────────── */
.site-header {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 50%;
  width: min(calc(100% - 28px), var(--max));
  min-height: 58px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
  padding: 0 16px 0 18px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.7);
  border: 1px solid rgba(48, 40, 32, 0.08);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(78, 57, 39, 0.06);
  backdrop-filter: blur(20px);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 12px 42px rgba(78, 57, 39, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--cream);
  background: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-person {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.2;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

.nav a,
.site-footer a,
.brand,
.nav-cta,
.button,
.text-link {
  text-decoration: none;
}

.nav a {
  transition: color var(--transition);
}

.nav a:hover,
.site-footer a:hover,
.direct-contact a:hover {
  color: var(--clay);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--cream);
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--clay);
  transform: translateY(-1px);
}

/* ── Hamburger ─────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 8px;
  border: none;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Scroll reveal ─────────────────────────────── */
.reveal {
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.will-animate {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Hero ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(900px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 90px 0 44px;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 35%;
  filter: saturate(0.88) contrast(0.96);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 246, 238, 0.96) 0%, rgba(251, 246, 238, 0.80) 42%, rgba(251, 246, 238, 0.08) 80%),
    linear-gradient(180deg, rgba(251, 246, 238, 0.68), rgba(251, 246, 238, 0.12) 44%, rgba(48, 40, 32, 0.28));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) 0;
}

.hero-content > * {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1, h2, h3, p {
  overflow-wrap: anywhere;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.024em;
  overflow-wrap: normal;
  hyphens: auto;
  text-wrap: balance;
}

h1 {
  max-width: 660px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.9vw, 70px);
  font-weight: 500;
  color: var(--ink);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 3.4vw, 50px);
  font-weight: 500;
}

h3 {
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.018em;
}

.hero-greeting {
  margin: 8px 0 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.6vw, 23px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
}

.hero-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* ── Buttons ───────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--cream);
  background: var(--green);
  box-shadow: 0 8px 28px rgba(107, 143, 109, 0.28);
}

.button-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 14px 36px rgba(107, 143, 109, 0.36);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(48, 40, 32, 0.22);
  background: rgba(255, 250, 242, 0.65);
}

.button-secondary:hover {
  background: rgba(255, 250, 242, 0.9);
  border-color: rgba(48, 40, 32, 0.36);
}

.button-light {
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.button-light:hover {
  background: #fff;
  box-shadow: 0 14px 32px rgba(0,0,0,0.14);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 6px 12px;
  border: 1px solid rgba(48, 40, 32, 0.12);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 250, 242, 0.7);
  font-size: 12.5px;
  font-weight: 500;
}

/* ── Scroll hint ───────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.6);
  backdrop-filter: blur(10px);
  animation: bob 2.4s ease-in-out infinite;
  transition: color var(--transition);
}

.scroll-hint:hover {
  color: var(--clay);
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Trust strip ───────────────────────────────── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
}

.trust-strip div {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 168px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.8);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.trust-strip div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.trust-strip div:nth-child(2) {
  background: var(--sage-soft);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 2.7vw, 40px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.trust-strip span {
  max-width: 300px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.52;
}

/* ── Sections ──────────────────────────────────── */
.section {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.section-copy,
.section-heading,
.about-copy {
  max-width: 760px;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.visual-break p:not(.eyebrow),
.about-copy p:not(.eyebrow):not(.credentials),
.price-panel p:not(.eyebrow):not(.price-label):not(.price-note),
.price-details p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(16.5px, 1vw, 18.5px);
  line-height: 1.6;
  margin: 14px 0 0;
}

/* ── Einführung ───────────────────────────────── */
.intro-section {
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: var(--section-pad-tight);
}

.intro-copy {
  max-width: 780px;
  margin: 0 auto;
}

.intro-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(16.5px, 1vw, 18px);
  line-height: 1.68;
}

.intro-copy > p:first-child {
  margin-top: 0;
}

.intro-copy blockquote {
  margin: clamp(22px, 3vw, 30px) 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(107, 143, 109, 0.2);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(215, 235, 211, 0.38);
  box-shadow: 0 8px 28px rgba(78, 57, 39, 0.06);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 28px);
  font-style: italic;
  line-height: 1.35;
}

/* ── Problem section ───────────────────────────── */
.problem-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(36px, 5vw, 56px);
  align-items: stretch;
}

.problem-grid,
.process-grid {
  display: grid;
  gap: 12px;
}

.problem-grid {
  grid-template-rows: repeat(3, 1fr);
}

.problem-grid article,
.process-grid article {
  padding: clamp(24px, 2.6vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.85);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.problem-grid article {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.problem-grid article:hover,
.process-grid article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.problem-grid article:nth-child(2),
.process-grid article:nth-child(2) {
  background: var(--sage-soft);
}

.problem-grid article:nth-child(1) {
  background: rgba(255, 250, 242, 0.88);
}

.problem-grid article:nth-child(2) {
  background: rgba(215, 235, 211, 0.58);
}

.problem-grid article:nth-child(3) {
  background: rgba(239, 226, 208, 0.62);
}

.problem-grid p,
.process-grid p,
.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.56;
}

/* ── Split section ─────────────────────────────── */
.split-section,
.visual-break,
.pricing-section,
.about-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.pricing-section {
  align-items: stretch;
}

.contact-section {
  align-items: stretch;
}

.image-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.image-stack img,
.about-section img,
.gallery-section img,
.visual-break img {
  width: 100%;
  border-radius: 36px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  height: clamp(420px, 40vw, 540px);
  aspect-ratio: auto;
  object-position: 50% 45%;
}

.image-stack img:last-child {
  height: clamp(420px, 40vw, 540px);
  aspect-ratio: auto;
  object-position: 50% 38%;
  margin-bottom: 0;
}

.gallery-section img,
.about-section img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-section img:hover,
.about-section img:hover {
  transform: scale(1.025);
  box-shadow: 0 36px 100px rgba(78, 57, 39, 0.22);
}

/* ── Feature list ──────────────────────────────── */
.feature-list,
.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

.text-link {
  color: var(--clay);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  transition: color var(--transition);
}

.text-link:hover {
  color: var(--clay-dark);
}

/* ── Process section ───────────────────────────── */
.process-section {
  text-align: center;
}

.section-heading {
  margin: 0 auto 30px;
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
  text-align: left;
}

.process-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 0;
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* ── Visual break ──────────────────────────────── */
.visual-break img {
  height: 100%;
  min-height: 440px;
  aspect-ratio: auto;
}

.visual-break div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}

/* ── Pricing ───────────────────────────────────── */
.price-panel,
.price-details,
.about-copy,
.contact-copy,
.contact-form {
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.price-panel,
.price-details {
  height: 100%;
}

.price-panel {
  background: var(--ink);
  color: var(--cream);
}

.price-panel .eyebrow {
  color: rgba(255, 250, 242, 0.6);
}

.price-panel p {
  color: rgba(255, 250, 242, 0.72);
}

.price-panel h2 {
  color: var(--cream);
  margin-top: 8px;
}

.price-panel h2 small {
  font-size: 0.5em;
  font-weight: 400;
  color: rgba(255, 250, 242, 0.58);
  letter-spacing: 0;
}

.price-panel .button {
  margin-top: 20px;
}

.price-details,
.about-copy,
.contact-form {
  background: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow-sm);
}

/* ── About ─────────────────────────────────────── */
.about-section img {
  aspect-ratio: 0.86 / 1;
  object-position: 50% 22%;
}

.credentials {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--sage-soft);
  font-size: 13px;
  line-height: 1.5;
}

/* ── Gallery ───────────────────────────────────── */
.gallery-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 0;
  overflow: hidden;
}

.gallery-section img {
  aspect-ratio: 1 / 1;
}

.gallery-section img:nth-child(1) {
  object-position: 50% 48%;
}

.gallery-section img:nth-child(2) {
  object-position: 50% 42%;
}

.gallery-section img:nth-child(3) {
  object-position: 50% 38%;
}

/* ── FAQ ───────────────────────────────────────── */
.faq-section {
  max-width: 880px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.85);
  box-shadow: none;
  transition: box-shadow var(--transition);
}

.faq-item:nth-child(even) {
  background: var(--sage-soft);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: clamp(24px, 2.6vw, 30px);
  border: 0;
  color: var(--ink);
  background: transparent;
  font-family: inherit;
  font-size: clamp(16.5px, 1.3vw, 18px);
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  user-select: none;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sand);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.3s ease, background 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--clay);
  color: var(--cream);
}

.faq-body {
  padding: 0 clamp(24px, 2.6vw, 30px) clamp(24px, 2.6vw, 30px);
}

.faq-body p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ── Contact ───────────────────────────────────── */
.contact-section {
  width: 100%;
  max-width: none;
  padding: clamp(52px, 6vw, 84px) max(18px, calc((100vw - var(--max)) / 2));
  background: var(--sand);
  border-top: 1px solid var(--line);
  align-items: stretch;
}

.contact-copy {
  background:
    radial-gradient(circle at 88% 12%, rgba(107, 143, 109, 0.15), transparent 30%),
    var(--cream);
  box-shadow: var(--shadow-sm);
}

.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--clay);
  font-weight: 700;
  font-size: 15px;
}

.direct-contact a {
  transition: color var(--transition);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1.5px solid rgba(48, 40, 32, 0.1);
  border-radius: 14px;
  padding: 13px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  font: inherit;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(107, 143, 109, 0.58);
  box-shadow: 0 0 0 4px rgba(107, 143, 109, 0.14);
}

.full {
  grid-column: 1 / -1;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
}

.consent input {
  min-height: auto;
  margin-top: 3px;
  accent-color: var(--clay);
}

/* ── Form message ──────────────────────────────── */
.form-message {
  grid-column: 1 / -1;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  padding: 0;
  transition: padding 0.2s ease;
}

.form-message:not(:empty) {
  padding: 14px 18px;
}

.form-message.success {
  color: #3a6b3a;
  background: #edf5ec;
}

.form-message.error {
  color: #8b3030;
  background: #fdecea;
}

/* ── Price label ───────────────────────────────── */
.price-label {
  margin: 4px 0 0;
  color: rgba(255, 250, 242, 0.55);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Price includes list ───────────────────────── */
.price-includes {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.price-includes li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 250, 242, 0.82);
  font-size: 15px;
  line-height: 1.5;
}

.price-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sage);
  font-size: 13px;
  font-weight: 700;
}

/* ── Price note ────────────────────────────────── */
.price-note {
  margin-top: 16px !important;
  color: rgba(255, 250, 242, 0.46) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

/* ── Price details secondary heading ───────────── */
.price-details-h3-secondary {
  margin-top: 24px;
  font-size: clamp(18px, 1.5vw, 21px);
  color: var(--muted);
}

.price-details h3:first-child {
  font-size: clamp(18px, 1.5vw, 21px);
}

/* ── Check list negative ───────────────────────── */
.check-list-no li::before {
  background: rgba(107, 143, 109, 0.27);
}

/* ── Testimonials ──────────────────────────────── */
.testimonials-section {
  padding-bottom: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.testimonial-card {
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.85);
  box-shadow: var(--shadow-sm);
}

.testimonial-text {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.5vw, 20px);
  font-style: italic;
  line-height: 1.55;
}

.testimonial-name {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.testimonials-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.7;
}

/* ── Footer ────────────────────────────────────── */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px max(18px, calc((100vw - var(--max)) / 2));
  color: var(--muted);
  background: var(--paper);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* ── Warum Frauen section ──────────────────────── */
.frauen-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.frauen-copy p {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
  margin: 16px 0 0;
}

.frauen-points {
  display: grid;
  gap: 14px;
}

.frauen-point {
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--green-soft);
  box-shadow: var(--shadow-sm);
}

.frauen-point h3 {
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.frauen-point p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ── Legal pages ───────────────────────────────── */
.legal-page {
  min-height: 100svh;
}

.legal-main {
  min-height: calc(100svh - 88px);
  padding: 126px 18px 72px;
}

.legal-hero,
.legal-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.legal-hero {
  max-width: 880px;
  padding: 36px 0 44px;
  text-align: center;
}

.legal-hero h1 {
  max-width: none;
  font-size: clamp(44px, 6vw, 72px);
}

.legal-hero > p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(16.5px, 1.2vw, 19px);
  line-height: 1.6;
}

.legal-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.legal-nav-card,
.legal-card,
.legal-notice {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.legal-nav-card {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 6px;
  padding: 14px;
  background: rgba(255, 250, 242, 0.86);
}

.legal-nav-card a {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}

.legal-nav-card a:hover,
.legal-nav-card a[aria-current="page"] {
  color: var(--ink);
  background: var(--sage-soft);
}

.legal-card {
  padding: clamp(30px, 5vw, 58px);
  background: rgba(255, 250, 242, 0.9);
}

.legal-notice {
  margin-bottom: 34px;
  padding: 20px 22px;
  border-color: rgba(107, 143, 109, 0.24);
  background: rgba(215, 235, 211, 0.5);
  box-shadow: none;
}

.legal-notice strong {
  display: block;
  margin-bottom: 4px;
}

.legal-card section + section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.legal-card h3 {
  margin-top: 24px;
  font-size: clamp(18px, 1.7vw, 22px);
}

.legal-card p,
.legal-card li,
.legal-notice p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.legal-card p,
.legal-notice p {
  margin: 12px 0 0;
}

.legal-card ul,
.legal-card ol {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-card a {
  color: var(--green-dark);
  font-weight: 700;
  text-underline-offset: 4px;
}

.legal-placeholder {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 7px;
  color: #6a5224;
  background: #fff0b8;
  font-weight: 700;
}

.legal-update {
  margin-top: 34px !important;
  color: rgba(116, 106, 96, 0.72) !important;
  font-size: 13px !important;
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 940px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .problem-section,
  .split-section,
  .frauen-section,
  .visual-break,
  .pricing-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .problem-section {
    gap: 30px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(251, 246, 238, 0.92), rgba(251, 246, 238, 0.48)),
      linear-gradient(90deg, rgba(251, 246, 238, 0.9), rgba(251, 246, 238, 0.3));
  }

  .gallery-section {
    grid-template-columns: repeat(3, 1fr);
  }

  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-nav-card {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --section-pad: 32px;
    --section-pad-tight: 23px;
  }

  .trust-strip,
  .process-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    gap: 10px;
  }

  .trust-strip div {
    grid-template-columns: 116px 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    min-height: 0;
    padding: 20px 22px;
  }

  .trust-strip strong {
    font-size: 28px;
  }

  .trust-strip span {
    margin: 0 0 0 18px;
  }

  .process-grid article {
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    padding: 22px;
  }

  .process-grid span {
    grid-row: 1 / 3;
    margin: 3px 0 0;
  }

  .process-grid h3,
  .process-grid p {
    grid-column: 2;
  }

  .image-stack img:first-child,
  .image-stack img:last-child {
    height: clamp(330px, 58vw, 440px);
  }

  .visual-break img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
  }

  .brand-name {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    align-items: start;
    min-height: 95svh;
    padding: 88px 0 36px;
  }

  .hero-content {
    width: min(100% - 30px, var(--max));
    padding-top: 20px;
  }

  .hero-content > * {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(36px, 9vw, 46px);
  }

  h2 {
    font-size: clamp(28px, 7.5vw, 38px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-points {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .hero-points li {
    padding: 6px 10px;
    font-size: 12.5px;
  }

  .section,
  .trust-strip {
    width: min(100% - 30px, var(--max));
  }

  .image-stack {
    gap: 8px;
  }

  .image-stack img:first-child,
  .image-stack img:last-child {
    height: 300px;
    border-radius: 24px;
  }

  .problem-grid article,
  .visual-break div,
  .price-panel,
  .price-details,
  .contact-copy,
  .contact-form,
  .faq-question {
    padding: 24px;
  }

  .faq-body {
    padding: 0 24px 24px;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .gallery-section {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .gallery-section img {
    aspect-ratio: 1 / 1;
    border-radius: 24px;
  }

  .site-footer {
    display: grid;
  }

  .legal-main {
    padding: 100px 15px 52px;
  }

  .legal-hero {
    padding: 28px 0 34px;
    text-align: left;
  }

  .legal-hero > p:not(.eyebrow) {
    margin-left: 0;
  }

  .legal-nav-card {
    grid-template-columns: 1fr;
  }

  .legal-card {
    padding: 26px 22px;
    border-radius: 24px;
  }
}
