/* ── TOKENS ────────────────────────────────── */
:root {
  --cream:      #F7F3ED;
  --cream-dark: #EDE8DF;
  --sage:       #8FA882;
  --sage-light: #B8CCB0;
  --sage-dark:  #5E7A54;
  --brown:      #3B2B24;
  --brown-mid:  #6B4F43;
  --blush:      #E8D0C4;
  --warm-grey:  #9A9088;
  --text:       #2A2220;
  --border:     rgba(42,34,32,0.10);
}

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family:'DM Sans', sans-serif;
  background:var(--cream);
  color:var(--text);
  overflow-x:hidden;
  cursor:none;
}
img { display:block; max-width:100%; }
a { text-decoration:none; color:inherit; }

/* ── CURSOR ─────────────────────────────────── */
.cursor {
  width:10px; height:10px;
  background:var(--sage-dark); border-radius:50%;
  position:fixed; pointer-events:none; z-index:9999;
  transform:translate(-50%,-50%);
  transition:width .25s, height .25s, background .25s;
}
.cursor-ring {
  width:36px; height:36px;
  border:1px solid var(--sage); border-radius:50%;
  position:fixed; pointer-events:none; z-index:9998;
  transform:translate(-50%,-50%); opacity:.5;
  transition:width .3s, height .3s, opacity .3s;
}

/* ── NAV ────────────────────────────────────── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 4rem; height:72px;
  background:rgba(247,243,237,.95);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  transition:background .4s;
}
.nav-logo {
  font-family:'Cormorant Garamond', serif;
  font-size:1.2rem; font-weight:300; letter-spacing:.06em; color:var(--text);
}
.nav-logo em { font-style:italic; color:var(--sage-dark); }
.nav-links { display:flex; gap:2.5rem; list-style:none; align-items:center; }
.nav-links a {
  font-size:.72rem; letter-spacing:.12em; text-transform:uppercase;
  color:var(--warm-grey); position:relative; transition:color .3s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-2px; left:0; right:0;
  height:1px; background:var(--sage-dark);
  transform:scaleX(0); transform-origin:left; transition:transform .4s;
}
.nav-links a:hover,
.nav-links a.active { color:var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { transform:scaleX(1); }
.nav-cta {
  background:var(--text) !important; color:var(--cream) !important;
  padding:.5rem 1.3rem !important; border-radius:2px;
  transition:background .3s !important;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { background:var(--sage-dark) !important; }
.nav-hamburger {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; padding:4px; background:none; border:none;
}
.nav-hamburger span {
  display:block; width:22px; height:1.5px; background:var(--text);
  transition:transform .3s, opacity .3s;
}

/* ── MOBILE MENU ────────────────────────────── */
.mobile-menu {
  position:fixed; top:72px; left:0; right:0; bottom:0;
  background:var(--cream); z-index:99;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:2.5rem; transform:translateX(100%); transition:transform .4s ease;
}
.mobile-menu.open { transform:translateX(0); }
.mobile-menu a {
  font-family:'Cormorant Garamond', serif; font-size:2.2rem;
  font-weight:300; color:var(--text); letter-spacing:.04em;
}

/* ── BUTTONS ────────────────────────────────── */
.btn-primary {
  background:var(--text); color:var(--cream);
  padding:.85rem 2.2rem; border:none; cursor:pointer;
  font-family:'DM Sans', sans-serif; font-size:.78rem;
  letter-spacing:.1em; text-transform:uppercase;
  display:inline-block; border-radius:2px;
  transition:background .3s, transform .2s;
}
.btn-primary:hover { background:var(--sage-dark); transform:translateY(-2px); }
.btn-ghost {
  background:transparent; color:var(--text);
  padding:.85rem 2.2rem; border:1px solid var(--border); cursor:pointer;
  font-family:'DM Sans', sans-serif; font-size:.78rem;
  letter-spacing:.1em; text-transform:uppercase;
  display:inline-block; border-radius:2px;
  transition:border-color .3s, transform .2s;
}
.btn-ghost:hover { border-color:var(--text); transform:translateY(-2px); }

/* ── SECTION HELPERS ────────────────────────── */
.section-eyebrow {
  font-size:.65rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--sage-dark); display:flex; align-items:center; gap:.9rem;
  margin-bottom:1.2rem;
}
.section-eyebrow::before {
  content:''; width:22px; height:1px; background:var(--sage-dark); flex-shrink:0;
}
.section-h2 {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(2.2rem,3.5vw,3.8rem); font-weight:300; line-height:1.1;
}
.section-h2 em { font-style:italic; color:var(--sage-dark); }
.centered { text-align:center; }
.centered .section-eyebrow { justify-content:center; }
.centered .section-eyebrow::before { display:none; }

/* ── REVEAL ─────────────────────────────────── */
.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ══════════════════════════════════════════════
   INDEX PAGE
══════════════════════════════════════════════ */

/* HERO */
.hero {
  min-height:100vh; padding-top:72px;
  display:grid; grid-template-columns:1fr 1fr;
}
.hero-text {
  display:flex; flex-direction:column; justify-content:center;
  padding:5rem 4rem 5rem 5rem;
}
.hero-eyebrow {
  font-size:.65rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--sage-dark); display:flex; align-items:center; gap:1rem; margin-bottom:2rem;
}
.hero-eyebrow::before { content:''; width:32px; height:1px; background:var(--sage-dark); }
.hero-h1 {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(3rem,4.5vw,5.2rem); font-weight:300; line-height:1.05; margin-bottom:2rem;
}
.hero-h1 em { font-style:italic; color:var(--sage-dark); }
.hero-h1 span { display:block; }
.hero-sub {
  font-size:.95rem; line-height:1.85; color:var(--warm-grey);
  font-weight:300; max-width:420px; margin-bottom:2.5rem;
}
.hero-btns { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:3rem; }
.hero-stats {
  display:flex; gap:2.5rem; padding-top:2.5rem; border-top:1px solid var(--border);
}
.stat-num {
  font-family:'Cormorant Garamond', serif;
  font-size:2rem; font-weight:300; display:block; line-height:1;
}
.stat-label {
  font-size:.62rem; letter-spacing:.12em; text-transform:uppercase;
  color:var(--warm-grey); margin-top:.3rem; display:block;
}
.hero-photo-col { overflow:hidden; background:var(--cream-dark); }
.hero-photo-col img { width:100%; height:100%; object-fit:cover; object-position:top center; }

/* PROBLEM SECTION */
.problem-section { padding:7rem 5rem; background:var(--cream); text-align:center; }
.problem-section > .section-h2 { margin-bottom:1.2rem; }
.problem-lead {
  font-size:.95rem; line-height:1.85; color:var(--warm-grey);
  font-weight:300; max-width:600px; margin:0 auto 3.5rem;
}
.pillars { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--border); }
.pillar { background:var(--cream); padding:2.5rem 2rem; transition:background .3s; }
.pillar:hover { background:var(--cream-dark); }
.pillar h3 {
  font-family:'Cormorant Garamond', serif; font-size:1.5rem; font-weight:400; margin-bottom:.8rem;
}
.pillar p { font-size:.85rem; line-height:1.7; color:var(--warm-grey); font-weight:300; }

/* ABOUT TEASER */
.about-teaser {
  padding:7rem 5rem; background:var(--cream-dark);
  display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:center;
}
.about-teaser-photo img { width:100%; aspect-ratio:4/5; object-fit:cover; object-position:top; border-radius:2px; }
.about-teaser-text .section-h2 { margin-bottom:1.5rem; }
.about-teaser-text p { font-size:.95rem; line-height:1.85; color:var(--warm-grey); font-weight:300; margin-bottom:1.2rem; }
.credentials { display:flex; flex-direction:column; gap:.6rem; margin:1.5rem 0 2rem; }
.credential { display:flex; gap:.8rem; font-size:.85rem; color:var(--text); line-height:1.5; }
.cred-dot { color:var(--sage-dark); flex-shrink:0; margin-top:.1rem; }

/* PHOTO STRIP */
.photo-strip { display:grid; grid-template-columns:repeat(4,1fr); height:420px; gap:2px; }
.photo-strip-cell { overflow:hidden; }
.photo-strip-cell img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.photo-strip-cell.pos-bottom img { object-position:center bottom; }
.photo-strip-cell.pos-top img { object-position:center 20%; }
.photo-strip-cell:hover img { transform:scale(1.04); }

/* FREEBIE SECTION */
.freebie-section { background:var(--sage-dark); padding:6rem 5rem; }
.freebie-grid { display:grid; grid-template-columns:1.1fr 1fr; gap:5rem; align-items:start; max-width:1200px; margin:0 auto; }
.freebie-eyebrow { font-size:.65rem; letter-spacing:.22em; text-transform:uppercase; color:rgba(247,243,237,.6); display:flex; align-items:center; gap:1rem; margin-bottom:1.8rem; }
.freebie-eyebrow::before { content:''; width:32px; height:1px; background:rgba(247,243,237,.4); }
.freebie-h2 { font-family:'Cormorant Garamond', serif; font-size:clamp(2.6rem,4.5vw,4.5rem); font-weight:300; line-height:1.05; color:var(--cream); margin-bottom:1.8rem; }
.freebie-h2 em { font-style:italic; color:var(--blush); }
.freebie-desc { font-size:.95rem; line-height:1.85; color:rgba(247,243,237,.75); font-weight:300; max-width:440px; margin-bottom:2.2rem; }
.freebie-form { display:flex; flex-direction:column; gap:.9rem; max-width:460px; }
.freebie-input {
  width:100%; padding:1rem 1.2rem; background:rgba(247,243,237,.12);
  border:1px solid rgba(247,243,237,.2); color:var(--cream);
  font-family:'DM Sans', sans-serif; font-size:.9rem; outline:none;
  border-radius:1px; box-sizing:border-box; transition:border-color .3s, background .3s;
}
.freebie-input::placeholder { color:rgba(247,243,237,.45); }
.freebie-input:focus { border-color:rgba(247,243,237,.5); background:rgba(247,243,237,.16); }
.freebie-btn {
  background:var(--cream); color:var(--brown);
  padding:1.05rem 2rem; border:none; cursor:pointer;
  font-family:'DM Sans', sans-serif; font-size:.8rem; font-weight:500;
  letter-spacing:.1em; text-transform:uppercase; border-radius:1px;
  transition:background .3s, transform .2s;
}
.freebie-btn:hover:not(:disabled) { background:var(--blush); transform:translateY(-2px); }
.freebie-btn:disabled { opacity:.6; cursor:not-allowed; }
.freebie-note { font-size:.68rem; color:rgba(247,243,237,.4); letter-spacing:.04em; margin-top:.2rem; }
.freebie-error { font-size:.78rem; color:#ffb3b3; margin-top:.4rem; display:none; }
.freebie-success { display:none; text-align:left; max-width:460px; }
.freebie-success .icon { font-size:2rem; margin-bottom:.8rem; }
.freebie-success h3 { font-family:'Cormorant Garamond', serif; font-size:1.6rem; font-weight:300; color:var(--cream); margin-bottom:.6rem; }
.freebie-success p { font-size:.88rem; color:rgba(247,243,237,.7); line-height:1.7; }

.freebie-cards { display:flex; flex-direction:column; gap:1.2rem; }
.freebie-card { background:rgba(247,243,237,.07); border:1px solid rgba(247,243,237,.12); padding:1.6rem 1.8rem; border-radius:2px; display:flex; gap:1.2rem; align-items:flex-start; }
.freebie-card-icon { font-size:1.6rem; flex-shrink:0; line-height:1; margin-top:.1rem; }
.freebie-card h4 { font-family:'Cormorant Garamond', serif; font-size:1.25rem; font-weight:400; color:var(--cream); margin-bottom:.3rem; line-height:1.3; }
.freebie-card p { font-size:.82rem; color:rgba(247,243,237,.6); line-height:1.6; }

/* TESTIMONIALS */
.testimonials { padding:7rem 5rem; background:var(--cream); }
.testimonials .section-h2 { margin-bottom:3.5rem; }
.testimonials-grid {
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:2rem; max-width:900px; margin:0 auto;
}
.testimonial-card { background:var(--cream-dark); padding:2.5rem; border-left:3px solid var(--sage-dark); }
.testimonial-text {
  font-family:'Cormorant Garamond', serif; font-size:1.1rem;
  font-style:italic; line-height:1.6; margin-bottom:1.2rem;
}
.testimonial-name { font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; color:var(--warm-grey); }

/* PHILOSOPHY BAND */
.philosophy-band { padding:7rem 5rem; background:var(--brown); text-align:center; }
.philosophy-band blockquote {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(1.8rem,3vw,2.8rem); font-weight:300; font-style:italic; line-height:1.4;
  color:var(--cream); max-width:750px; margin:0 auto 1.2rem;
}
.philosophy-band cite {
  font-size:.68rem; letter-spacing:.15em; text-transform:uppercase;
  color:rgba(247,243,237,.4); font-style:normal; display:block;
}

/* CTA SECTION */
.cta-section { padding:7rem 5rem; background:var(--cream-dark); text-align:center; }
.cta-section .section-h2 { margin-bottom:1.2rem; }
.cta-lead {
  font-size:.95rem; color:var(--warm-grey); max-width:460px;
  margin:0 auto 2.5rem; line-height:1.85; font-weight:300;
}

/* ══════════════════════════════════════════════
   ÜBER MICH PAGE
══════════════════════════════════════════════ */
.about-hero-split {
  padding-top:72px;
  display:grid; grid-template-columns:1fr 1fr; min-height:90vh;
}
.about-hero-photo { overflow:hidden; height:100%; }
.about-hero-photo img { width:100%; height:100%; object-fit:cover; object-position:top center; }
.about-hero-text {
  display:flex; flex-direction:column; justify-content:center;
  padding:5rem; background:var(--cream);
}
.about-hero-text .section-h2 { margin-bottom:1.8rem; }
.about-hero-text p { font-size:.95rem; line-height:1.85; color:var(--warm-grey); font-weight:300; margin-bottom:1.2rem; }
.about-approach {
  padding:7rem 5rem; background:var(--cream-dark);
  display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:center;
}
.about-approach-photo img { width:100%; aspect-ratio:3/4; object-fit:cover; object-position:center; border-radius:2px; }
.about-approach-text .section-h2 { margin-bottom:1.5rem; }
.about-approach-text p { font-size:.95rem; line-height:1.85; color:var(--warm-grey); font-weight:300; margin-bottom:1.2rem; }

/* ══════════════════════════════════════════════
   INNER PAGES – PAGE HERO
══════════════════════════════════════════════ */
.page-hero { padding-top:72px; background:var(--cream-dark); }
.page-hero-inner { padding:5rem 5rem 4rem; }
.page-hero h1 {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(2.8rem,5vw,5rem); font-weight:300; line-height:1.05;
}
.page-hero h1 em { font-style:italic; color:var(--sage-dark); }
.page-hero p {
  font-size:.95rem; line-height:1.85; color:var(--warm-grey);
  font-weight:300; max-width:520px; margin-top:1.5rem;
}

/* ══════════════════════════════════════════════
   ANGEBOTE PAGE
══════════════════════════════════════════════ */
.angebote-section { padding:5rem 5rem 7rem; background:var(--cream); }
.angebote-intro { text-align:center; max-width:600px; margin:0 auto 4rem; }
.angebote-intro p { font-size:.95rem; color:var(--warm-grey); line-height:1.85; font-weight:300; margin-top:1rem; }
.angebote-grid {
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:2rem; max-width:1000px; margin:0 auto;
}
.angebot-card {
  background:var(--cream-dark); padding:2.8rem;
  border:1px solid var(--border); display:flex; flex-direction:column;
  position:relative; overflow:hidden;
  transition:transform .3s ease, box-shadow .3s ease;
}
.angebot-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0;
  height:2px; background:var(--sage-dark);
  transform:scaleX(0); transform-origin:left; transition:transform .5s;
}
.angebot-card:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(42,34,32,.08); }
.angebot-card:hover::after { transform:scaleX(1); }
.angebot-card.featured { background:var(--brown); grid-column:span 2; }
.angebot-badge {
  display:inline-block; font-size:.6rem; letter-spacing:.12em; text-transform:uppercase;
  background:var(--sage-light); color:var(--sage-dark);
  padding:.3rem .8rem; border-radius:100px; margin-bottom:1.5rem; align-self:flex-start;
}
.angebot-card.featured .angebot-badge { background:var(--sage-dark); color:white; }
.angebot-card h3 {
  font-family:'Cormorant Garamond', serif; font-size:1.8rem;
  font-weight:400; line-height:1.2; color:var(--text); margin-bottom:.5rem;
}
.angebot-card.featured h3 { color:var(--cream); }
.angebot-subtitle {
  font-size:.72rem; letter-spacing:.1em; text-transform:uppercase;
  color:var(--sage-dark); margin-bottom:1rem; display:block;
}
.angebot-card.featured .angebot-subtitle { color:var(--sage-light); }
.angebot-desc {
  font-size:.88rem; line-height:1.75; color:var(--warm-grey);
  font-weight:300; flex:1; margin-bottom:1.5rem;
}
.angebot-card.featured .angebot-desc { color:rgba(247,243,237,.65); }
.angebot-includes { list-style:none; margin-bottom:1.8rem; }
.angebot-includes li {
  font-size:.82rem; color:var(--warm-grey); padding:.3rem 0;
  display:flex; gap:.7rem; line-height:1.5;
}
.angebot-includes li::before { content:'✦'; color:var(--sage-dark); font-size:.65rem; margin-top:.25rem; flex-shrink:0; }
.angebot-card.featured .angebot-includes li { color:rgba(247,243,237,.65); }
.angebot-card.featured .angebot-includes li::before { color:var(--sage-light); }
.angebot-price {
  font-family:'Cormorant Garamond', serif; font-size:2.5rem;
  font-weight:300; color:var(--text); margin-top:auto;
}
.angebot-card.featured .angebot-price { color:var(--cream); }
.angebot-price-note { font-size:.7rem; color:var(--warm-grey); margin-top:.2rem; display:block; }
.angebot-card.featured .angebot-price-note { color:rgba(247,243,237,.4); }
.angebot-cta { margin-top:1.5rem; }

/* FAQ */
.faq-section { padding:7rem 5rem; background:var(--cream-dark); }
.faq-section .section-h2 { margin-bottom:3rem; }
.faq-list { max-width:750px; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-question {
  width:100%; background:none; border:none; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
  padding:1.4rem 0; font-family:'Cormorant Garamond', serif;
  font-size:1.2rem; font-weight:400; color:var(--text); text-align:left;
}
.faq-icon { font-size:1.3rem; color:var(--sage-dark); transition:transform .3s; flex-shrink:0; margin-left:1rem; }
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-answer {
  font-size:.88rem; line-height:1.85; color:var(--warm-grey);
  font-weight:300; max-height:0; overflow:hidden;
  transition:max-height .4s ease, padding .4s;
}
.faq-item.open .faq-answer { max-height:320px; padding-bottom:1.4rem; }

/* ══════════════════════════════════════════════
   KONTAKT PAGE
══════════════════════════════════════════════ */
.kontakt-section { padding:9rem 5rem 6rem; background:var(--cream); text-align:center; }
.kontakt-h1 {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(2.5rem,4vw,4.5rem); font-weight:300; line-height:1.1; margin-bottom:1.5rem;
}
.kontakt-h1 em { font-style:italic; color:var(--sage-dark); }
.kontakt-lead {
  font-size:.95rem; line-height:1.85; color:var(--warm-grey);
  font-weight:300; max-width:480px; margin:0 auto 1.2rem;
}
.kontakt-email-note { font-size:.75rem; color:var(--warm-grey); margin-top:.8rem; letter-spacing:.04em; display:block; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer { background:var(--brown); padding:4rem 5rem 2rem; }
.footer-brand .nav-logo { color:var(--cream); }
.footer-brand .nav-logo em { color:var(--sage-light); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:4rem; margin-bottom:3rem; }
.footer-brand p { font-size:.82rem; line-height:1.7; color:rgba(247,243,237,.45); margin-top:1rem; }
.footer-col h4 {
  font-size:.65rem; letter-spacing:.15em; text-transform:uppercase;
  color:rgba(247,243,237,.5); margin-bottom:1.2rem;
}
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:.6rem; }
.footer-col ul li a { font-size:.82rem; color:rgba(247,243,237,.45); transition:color .3s; }
.footer-col ul li a:hover { color:var(--cream); }
.footer-bottom {
  padding-top:2rem; border-top:1px solid rgba(255,255,255,.08);
  display:flex; justify-content:space-between; align-items:center;
  font-size:.72rem; color:rgba(247,243,237,.3);
}
.footer-social { display:flex; gap:1.5rem; }
.footer-social a { font-size:.72rem; color:rgba(247,243,237,.4); transition:color .3s; }
.footer-social a:hover { color:var(--cream); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width:900px) {
  body { cursor:auto; }
  .cursor, .cursor-ring { display:none; }

  nav { padding:0 1.5rem; }
  .nav-links { display:none; }
  .nav-hamburger { display:flex; }

  .hero { grid-template-columns:1fr; }
  .hero-text { padding:3rem 1.5rem 2rem; }
  .hero-photo-col { height:115vw; }
  .hero-photo-col img { object-position:center 30%; }

  .problem-section { padding:4rem 1.5rem; }
  .pillars { grid-template-columns:1fr; gap:0; }

  .about-teaser { grid-template-columns:1fr; padding:4rem 1.5rem; gap:3rem; }
  .about-teaser-photo img { aspect-ratio:3/4; object-position:center 20%; }

  .photo-strip { grid-template-columns:1fr 1fr; height:auto; }
  .photo-strip-cell { height:50vw; }

  .freebie-section { padding:4rem 1.5rem; }
  .freebie-grid { grid-template-columns:1fr; gap:3rem; }

  .testimonials { padding:4rem 1.5rem; }
  .testimonials-grid { grid-template-columns:1fr; }

  .philosophy-band { padding:5rem 1.5rem; }
  .cta-section { padding:5rem 1.5rem; }

  .about-hero-split { grid-template-columns:1fr; }
  .about-hero-photo { height:125vw; }
  .about-hero-photo img { object-position:center 10%; }
  .about-hero-text { padding:3rem 1.5rem; }
  .about-approach { grid-template-columns:1fr; padding:4rem 1.5rem; gap:3rem; }

  .page-hero-inner { padding:3rem 1.5rem; }
  .angebote-section { padding:3rem 1.5rem 5rem; }
  .angebote-grid { grid-template-columns:1fr; }
  .angebot-card.featured { grid-column:auto; }

  .faq-section { padding:4rem 1.5rem; }
  .kontakt-section { padding:5rem 1.5rem 4rem; }

  footer { padding:3rem 1.5rem 1.5rem; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .footer-bottom { flex-direction:column; gap:1rem; text-align:center; }
}

/* ── LEGAL PAGES ── */
.legal-section { padding: 8rem 5rem 6rem; max-width: 860px; margin: 0 auto; }
.legal-content h1 { margin-bottom: 3rem; }
.legal-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage-dark); margin: 2.5rem 0 .75rem;
}
.legal-content p { font-size: .9rem; line-height: 1.85; color: var(--warm-grey); margin-bottom: 1rem; }
.legal-content strong { color: var(--text); font-weight: 500; }
@media(max-width:768px) { .legal-section { padding: 6rem 1.5rem 4rem; } }
