:root{
  --ink:#20241f;
  --sage:#c9a08c;
  --sage-dark:#8b5e4d;
  --sage-light:#f8ede7;
  --paper:#ffffff;
  --cream:#faf9f6;
  --stone:#e4e2d8;
  --stone-line:#d8d5c8;
  --text-muted:#6b6f63;
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height:1.65;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
.wrap{max-width:1140px; margin:0 auto; padding:0 32px;}
.eyebrow{
  font-family: var(--font-body);
  font-size:12.5px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-weight:600;
  color: var(--sage-dark);
}
h1,h2,h3{font-family: var(--font-display); font-weight:700; line-height:1.15; color:var(--ink); letter-spacing:-0.01em;}
p{color:var(--ink);}
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-body); font-weight:600; font-size:15px;
  padding:13px 24px; border-radius:8px;
  border:1px solid transparent;
  cursor:pointer; transition: all .15s ease;
}
.btn-primary{ background:var(--sage-dark); color:#fff; }
.btn-primary:hover{ background:#485a3d; }
.btn-line{ border-color: var(--stone-line); color:var(--ink); background:transparent; }
.btn-line:hover{ border-color:var(--sage-dark); color:var(--sage-dark); }
.btn-white{ background:#fff; color:var(--ink); }
.btn-white:hover{ background:var(--sage-light); }

/* ---------- HEADER ---------- */
header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--stone-line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 32px; max-width:1140px; margin:0 auto;
}
.logo-img{ height:40px; width:auto; }
.nav-links{ display:flex; gap:30px; align-items:center; }
.nav-links a{
  color:var(--ink); font-size:14.5px; font-weight:500; opacity:.82;
}
.nav-links a.active{ opacity:1; color:var(--sage-dark);}
.nav-links a:hover{opacity:1;}
.nav-cta{ font-size:14px !important; padding:10px 18px !important; }
.burger{display:none; background:none; border:none; color:var(--ink); font-size:26px; cursor:pointer;}
.mobile-panel{display:none;}

@media(max-width:900px){
  .nav-links{display:none;}
  .burger{display:block;}
  .mobile-panel.open{
    display:flex; flex-direction:column; gap:0;
    background:#fff; padding:8px 32px 24px; border-top:1px solid var(--stone-line);
  }
  .mobile-panel a{
    color:var(--ink); padding:12px 0; border-bottom:1px solid var(--stone-line); font-size:15px;
  }
}

/* ---------- HERO ---------- */
.hero{
  position:relative; background:var(--cream);
  overflow:hidden;
  padding: 72px 0 64px;
}
.hero-grid{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center; }
.hero h1{ font-size:clamp(32px, 4.6vw, 52px); margin:16px 0 20px; }
.hero p{ font-size:17px; color:var(--text-muted); max-width:520px; margin-bottom:30px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }
.hero-photo{ border-radius:16px; overflow:hidden; aspect-ratio:4/5; background:var(--stone);}
.hero-photo img{ width:100%; height:100%; object-fit:cover; }
@media(max-width:880px){ .hero-grid{grid-template-columns:1fr;} .hero-photo{max-width:380px; margin:0 auto;} }

/* ---------- PAGE HERO (subpages) ---------- */
.page-hero{
  background:var(--cream); padding:56px 0 48px; position:relative; overflow:hidden; border-bottom:1px solid var(--stone-line);
}
.page-hero h1{ font-size:clamp(28px,4vw,44px); margin-top:12px; max-width:760px;}
.page-hero p{ color:var(--text-muted); font-size:16.5px; max-width:620px; margin-top:14px;}
.breadcrumb{ font-size:13px; color:var(--text-muted); margin-bottom:6px;}
.breadcrumb a{ color:var(--text-muted); opacity:0.8;} .breadcrumb a:hover{opacity:1;}
.page-hero-img{ margin-top:32px; border-radius:16px; overflow:hidden; max-height:420px; }
.page-hero-img img{ width:100%; height:100%; object-fit:cover; max-height:420px; }

/* ---------- SECTION GENERIC ---------- */
section{ padding:80px 0; }
.section-head{ max-width:640px; margin-bottom:44px; }
.section-head h2{ font-size:clamp(24px,3.2vw,34px); margin-top:12px; }
.section-head p{ color:var(--text-muted); margin-top:12px; font-size:16px; max-width:540px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.prose{ max-width:760px; }
.prose p{ margin-bottom:18px; font-size:16px; color:#333a2f; }
.prose h2{ font-size:24px; margin:36px 0 14px; }
.prose h4{ font-size:13px; letter-spacing:0.08em; text-transform:uppercase; color:var(--sage-dark); margin:32px 0 10px; }
.prose ul{ padding-left:20px; margin-bottom:18px; }
.prose li{ margin-bottom:6px; font-size:16px; }
.prose strong{ color:var(--ink); }
.prose img{ border-radius:12px; margin:24px 0; }

/* ---------- FOUR WAYS / CARD GRID ---------- */
.pillars{
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
.pillar{ background:var(--cream); border-radius:14px; padding:0 0 26px; overflow:hidden; }
.pillar img{ width:100%; height:150px; object-fit:cover; margin-bottom:20px; }
.pillar-inner{ padding:0 22px; }
.pillar h3{ font-size:18px; margin-bottom:8px; color:var(--ink); }
.pillar p{ font-size:14px; color:var(--text-muted); margin-bottom:16px; }
.pillar a{ font-size:13.5px; font-weight:600; color:var(--sage-dark); }
@media(max-width:880px){ .pillars{grid-template-columns:1fr 1fr;} }
@media(max-width:560px){ .pillars{grid-template-columns:1fr;} }

/* ---------- ABOUT / SPLIT ---------- */
.about-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:56px; align-items:center; }
.about-grid.reverse{ grid-template-columns:1.15fr 0.85fr; }
.about-grid.reverse .about-photo{ order:2; }
.about-photo{ border-radius:16px; overflow:hidden; background:var(--stone); }
.about-photo img{width:100%; height:100%; object-fit:cover;}
.about-text .eyebrow{margin-bottom:14px;}
.about-text h2{ font-size:clamp(22px,3vw,30px); margin-bottom:18px; }
.about-text p{ font-size:16px; color:#333a2f; margin-bottom:18px; max-width:520px;}
.about-text ul{ list-style:none; margin-bottom:22px; }
.about-text ul li{ font-size:15px; color:#333a2f; padding:8px 0 8px 22px; position:relative; border-top:1px solid var(--stone-line);}
.about-text ul li:before{ content:"→"; position:absolute; left:0; color:var(--sage-dark); }
@media(max-width:820px){
  .about-grid, .about-grid.reverse{grid-template-columns:1fr; gap:28px;}
  .about-grid.reverse .about-photo{order:0;}
}

/* ---------- QUOTE BAND ---------- */
.quote-band{ background:var(--sage-light); padding:64px 0; text-align:center; }
.quote-band blockquote{ font-family:var(--font-display); font-weight:700; font-size:clamp(19px,2.4vw,26px); max-width:760px; margin:0 auto; line-height:1.5; }

/* ---------- TESTIMONIALS ---------- */
.testi-head{ display:flex; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap:20px; margin-bottom:40px;}
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.testi-card{ background:var(--cream); border-radius:14px; padding:26px 24px; }
.testi-card p{ font-size:14.5px; color:#333a2f; margin-bottom:16px; }
.testi-name{ font-size:13.5px; font-weight:700; color:var(--ink); }
.testi-role{ font-size:12.5px; color:var(--text-muted); }
@media(max-width:880px){ .testi-grid{grid-template-columns:1fr 1fr;} }
@media(max-width:600px){ .testi-grid{grid-template-columns:1fr;} }

/* ---------- EVENTS / LIST ROWS ---------- */
.event-list{ display:flex; flex-direction:column; }
.event-row{
  display:grid; grid-template-columns:150px 1fr auto; gap:26px; align-items:center;
  padding:24px 0; border-top:1px solid var(--stone-line);
}
.event-row:last-child{border-bottom:1px solid var(--stone-line);}
.event-row img{ width:150px; height:100px; object-fit:cover; border-radius:10px; }
.event-row h3{ font-size:17px; color:var(--ink); margin-bottom:6px; }
.event-row p{ font-size:14px; color:var(--text-muted); max-width:460px; }
.event-row .btn{ padding:10px 16px; font-size:13.5px; white-space:nowrap;}
@media(max-width:700px){
  .event-row{grid-template-columns:80px 1fr; grid-template-areas:"img title" "img cta";}
  .event-row img{grid-area:img; width:80px; height:80px;}
  .event-row .link-wrap{grid-area:title;}
  .event-row .btn{grid-area:cta; margin-top:10px;}
}

/* ---------- IMAGE GRID (Impressionen/Instagram) ---------- */
.img-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.img-grid img{ width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:14px; }
@media(max-width:820px){ .img-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:520px){ .img-grid{grid-template-columns:1fr;} }

/* ---------- FULL-BLEED HERO WITH OVERLAY ---------- */
.hero-full{ position:relative; height:82vh; min-height:580px; max-height:780px; overflow:hidden; }
.hero-full img{ width:100%; height:100%; object-fit:cover; }
.hero-full-overlay{ position:absolute; inset:0; background:linear-gradient(90deg, rgba(20,18,16,0.72) 0%, rgba(20,18,16,0.42) 48%, rgba(20,18,16,0.08) 100%); }
.hero-full-content{ position:absolute; inset:0; display:flex; align-items:center; }
.hero-full-inner{ max-width:600px; color:#fff; }
.hero-full-inner .eyebrow{ color:var(--sage); }
.hero-full-inner h1{ color:#fff; font-size:clamp(34px,5vw,58px); margin:16px 0 20px; }
.hero-full-inner p{ color:rgba(255,255,255,0.88); font-size:17px; margin-bottom:30px; max-width:500px; }
@media(max-width:820px){ .hero-full{height:auto; min-height:0;} .hero-full img{height:640px;} .hero-full-inner{max-width:100%;} }

/* ---------- TESTIMONIAL REVEAL ---------- */
.testi-grid .testi-card.testi-hidden{ display:none; }
.testi-more-wrap{ text-align:center; margin-top:32px; }

/* ---------- PRICING / SESSION CARDS ---------- */
.price-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.price-card{ background:var(--cream); border-radius:14px; padding:30px 26px; display:flex; flex-direction:column; }
.price-card.featured{ border:2px solid var(--sage-dark); background:#fff; }
.price-card h3{ font-size:19px; color:var(--ink); margin-bottom:8px; }
.price-card .price{ font-family:var(--font-display); font-weight:700; font-size:26px; color:var(--sage-dark); margin-bottom:14px; }
.price-card p{ font-size:14px; color:var(--text-muted); margin-bottom:20px; flex-grow:1;}
@media(max-width:820px){ .price-grid{grid-template-columns:1fr;} }

/* ---------- FAQ / FEATURE LIST ---------- */
.faq-item{ border-top:1px solid var(--stone-line); padding:20px 0; }
.faq-item:last-child{ border-bottom:1px solid var(--stone-line); }
.faq-item h3{ font-size:16px; color:var(--ink); margin-bottom:6px; font-weight:700; font-family:var(--font-display);}
.faq-item p{ font-size:14.5px; color:var(--text-muted); max-width:640px; }
.feature-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.feature-card h3{ font-family:var(--font-display); font-size:16px; margin-bottom:8px; }
.feature-card p{ font-size:14px; color:var(--text-muted); }
@media(max-width:820px){ .feature-grid{grid-template-columns:1fr 1fr;} }
@media(max-width:560px){ .feature-grid{grid-template-columns:1fr;} }

/* ---------- FORM ---------- */
.form-box{ background:var(--cream); border-radius:16px; padding:34px; max-width:560px; }
.form-box label{ display:block; font-size:13px; font-weight:600; color:var(--ink); margin-bottom:6px; }
.form-box input, .form-box textarea, .form-box select{
  width:100%; font-family:var(--font-body); font-size:14.5px; padding:11px 14px;
  border:1px solid var(--stone-line); border-radius:8px; background:#fff; margin-bottom:16px; color:var(--ink);
}
.form-box textarea{ min-height:120px; resize:vertical; }

/* ---------- CONTACT INFO LIST ---------- */
.info-list{ display:flex; flex-direction:column; gap:16px; }
.info-list .item{ padding:16px 0; border-top:1px solid var(--stone-line); }
.info-list .item h4{ font-size:12.5px; letter-spacing:0.06em; text-transform:uppercase; color:var(--sage-dark); margin-bottom:6px;}
.info-list .item p{ font-size:15px; color:var(--ink); }

/* ---------- CTA CLOSE ---------- */
.cta-close{ background:var(--sage-dark); color:#fff; text-align:center; padding:72px 0; border-radius:24px; }
.cta-close h2{ font-size:clamp(24px,3.2vw,34px); margin-bottom:16px; color:#fff; }
.cta-close p{ font-size:16px; margin-bottom:28px; opacity:0.9; max-width:480px; margin-left:auto; margin-right:auto;}

/* ---------- LEGAL PAGES ---------- */
.legal h2{ font-size:20px; color:var(--ink); margin:28px 0 10px; }
.legal h2:first-child{ margin-top:0; }
.legal p, .legal li{ font-size:14.5px; color:var(--text-muted); margin-bottom:10px; }
.legal ul{ padding-left:20px; }

/* ---------- FOOTER ---------- */
footer{ background:var(--cream); color:var(--ink); padding:56px 0 32px; font-size:14px; border-top:1px solid var(--stone-line);}
.footer-grid{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:36px; margin-bottom:40px;}
.footer-logo{ height:34px; margin-bottom:12px; }
.footer-col h4{ font-family:var(--font-display); font-weight:700; font-size:12.5px; letter-spacing:0.06em; text-transform:uppercase; color:var(--text-muted); margin-bottom:14px;}
.footer-col a{ display:block; margin-bottom:9px; color:var(--ink);}
.footer-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; padding-top:24px; border-top:1px solid var(--stone-line); font-size:12.5px; color:var(--text-muted);}
