/* ══════════════════════════════════════════════════════════
   FONTS
══════════════════════════════════════════════════════════ */
@font-face {
  font-family: 'Coconat';
  src: url('../fonts/Coconat-Regular.woff2') format('woff2'),
       url('../fonts/Coconat-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Prodigy Sans';
  src: url('../fonts/ProdigySans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Prodigy Sans';
  src: url('../fonts/ProdigySans-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* ══════════════════════════════════════════════════════════
   TOKENS
══════════════════════════════════════════════════════════ */
:root {
  --olive:       rgb(98,101,37);
  --olive-light: rgba(98,101,37,0.12);
  --olive-mid:   rgba(98,101,37,0.35);
  --dark:        rgb(33,33,33);
  --mid:         rgb(75,75,75);
  --muted:       rgb(135,135,135);
  --serif:       'Coconat', Georgia, serif;
  --body:        'Prodigy Sans', sans-serif;

  /* Type scale */
  --fs-s:   clamp(10px,  0.80vw, 11.5px); /* captions, labels  */
  --fs-m:   clamp(13px,  1.05vw,   15px); /* nav, UI text      */
  --fs-l:   clamp(16px,  1.40vw,   20px); /* body copy         */
  --fs-xl: clamp(20px,  1.85vw,   26px); /* sub-headings      */
  --fs-2xl: clamp(24px,  2.50vw,   34px); /* display quotes    */
  --fs-xxl: clamp(40px,  3.70vw,   53px); /* hero headline     */

  /* Line heights */
  --lh-heading: 1.1; /* headlines, tight display text  */
  --lh-relaxed: 1.4; /* featured quotes                */
  --lh-body: 1.3; /* body copy, readable paragraphs */

  /* Layout */
  --img-offset: 25%;
}


/* ══════════════════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); background: #fff; color: var(--dark); -webkit-font-smoothing: antialiased; }

::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--olive-mid); border-radius: 3px; }


/* ══════════════════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════════════════ */
input, textarea, select {
  font-family: var(--body);
  font-size: var(--fs-m);
  border: none;
  border-bottom: 1px solid var(--olive-mid);
  background: transparent;
  padding: 10px 0;
  width: 100%;
  outline: none;
  color: var(--dark);
  transition: border-color 0.2s;
}
input:focus, textarea:focus { border-bottom-color: var(--olive); }
textarea      { resize: vertical; min-height: 120px; }
::placeholder { color: var(--muted); }


/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* height: 90px; */
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: #fff;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav-logo      { cursor: pointer; user-select: none; text-decoration: none; }
.nav-logo-name {
  font-family: var(--serif);
  font-size: var(--fs-xl);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--olive);
  text-transform: uppercase;
  line-height: var(--lh-heading);
  }
.nav-logo-sub  {
  font-family: var(--body);
  font-size: var(--fs-l);
  font-weight: 400;
  color: var(--muted);
  margin-top: 4px;
  line-height: var(--lh-heading);
  letter-spacing: 0.02em;
  }
.nav-links     { display: flex; align-items: flex-end; gap: 0; list-style: none; }
.nav-btn       {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--body);
  font-size: var(--fs-l);
  font-weight: 400;
  color: var(--dark);
  padding: 0 1.5rem 0 0;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
  letter-spacing: 0.02em;
  }
.nav-btn:hover  { color: var(--olive); }
.nav-btn.active { color: var(--olive); border-bottom-color: var(--olive); }


/* ══════════════════════════════════════════════════════════
   PAGES
══════════════════════════════════════════════════════════ */
.page        { display: none; padding-top: 90px; }
.page.active { display: block; animation: pgFade 0.45s ease forwards; }
@keyframes pgFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}


/* ══════════════════════════════════════════════════════════
   INNER PAGE LAYOUT
══════════════════════════════════════════════════════════ */
.inner-header   { padding: 72px 60px 52px; }
.inner-label    { font-family: var(--body); font-size: var(--fs-m); font-weight: 400;
  color: var(--dark); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.inner-subtitle { font-family: var(--serif); font-size: var(--fs-xxl); font-weight: 400;
  color: var(--olive); line-height: var(--lh-heading); }
.inner-content  { padding: 64px 60px; max-width: 1040px; }

.grid-60-40 { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: start; }
.grid-58-42 { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: start; }
.grid-57-43 { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: start; }
.grid-55-45 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }


/* ══════════════════════════════════════════════════════════
   BODY TEXT & CTA
══════════════════════════════════════════════════════════ */
.body-p        { font-family: var(--body); font-size: var(--fs-m); font-weight: 400;
  line-height: var(--lh-body); color: var(--mid); margin-bottom: 24px; }
.body-p.dk     { color: var(--dark); }
.body-p--tight { margin-bottom: 4px; }
.body-p--last  { margin-bottom: 0; }

.info-box { margin: 32px 0; padding: 20px 0;
  border-top: 1px solid var(--olive-light); border-bottom: 1px solid var(--olive-light); }

.cta-btn         { font-family: var(--body); font-size: var(--fs-s); font-weight: 400;
  color: #fff; background: var(--olive); border: 1px solid var(--olive); padding: 12px 26px;
  cursor: pointer; letter-spacing: 0.08em; text-transform: uppercase; transition: opacity 0.2s;
  display: inline-block; text-decoration: none; }
.cta-btn:hover        { opacity: 0.82; }
.cta-btn.outline      { color: var(--olive); background: none; }
.cta-btn.outline:hover { background: var(--olive); color: #fff; opacity: 1; }
.cta-btn--mt          { margin-top: 8px; }


/* ══════════════════════════════════════════════════════════
   SIDEBAR ELEMENTS
══════════════════════════════════════════════════════════ */
.sidebar-heading   { font-family: var(--serif); font-size: var(--fs-xl); font-weight: 400;
  color: var(--dark); margin-bottom: 24px; }
.sidebar-box       { background: var(--olive-light); padding: 36px; }
.sidebar-item      { display: flex; gap: 14px; margin-bottom: 16px;
  font-family: var(--body); font-size: var(--fs-m); color: var(--dark); }
.sidebar-item .dash      { color: var(--olive); flex-shrink: 0; }
.sidebar-item:last-child { margin-bottom: 0; }

.ahnen-item            { padding: 16px 0; border-bottom: 1px solid var(--olive-light);
  display: flex; gap: 14px; font-family: var(--body); font-size: var(--fs-m); color: var(--dark); }
.ahnen-item .dash      { color: var(--olive); }
.ahnen-item:last-child { border-bottom: none; }


/* ══════════════════════════════════════════════════════════
   TAG LIST
══════════════════════════════════════════════════════════ */
.tag-list { margin-top: 28px; padding: 24px 0; border-top: 1px solid var(--olive-light); }
.tag-item { font-family: var(--body); font-size: var(--fs-s); color: var(--mid);
  padding: 7px 0; display: flex; gap: 12px; align-items: center; }
.tag-dot  { width: 4px; height: 4px; border-radius: 50%; background: var(--olive); flex-shrink: 0; }


/* ══════════════════════════════════════════════════════════
   HALTUNG BLOCK
══════════════════════════════════════════════════════════ */
.haltung         { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--olive-light); }
.haltung-eyebrow { font-family: var(--body); font-size: var(--fs-s); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--olive); margin-bottom: 20px; }
.haltung-quote   { font-family: var(--serif); font-size: var(--fs-xxl); font-weight: 400;
  color: var(--olive); line-height: var(--lh-heading); margin-bottom: 32px; }


/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq-section  { padding: 90px 60px; border-top: 1px solid var(--olive-light); }
.faq-list     {max-width: 800px;margin: 0 auto;}
.faq-eyebrow  {
  font-family: var(--body);
  font-size: var(--fs-l);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 20px;
  }
.faq-item     { border-bottom: 1px solid var(--olive-light); }
.faq-btn      {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--body);
  font-size: var(--fs-l);
  font-weight: 400;
  color: var(--dark);
  text-align: left;
  gap: 24px;
  transition: color 0.2s;
  }
.faq-btn.open { color: var(--olive); }
.faq-icon     { flex-shrink: 0; width: 18px; height: 18px; position: relative; opacity: 0.5; }
.faq-icon::before { content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: currentColor; transform: translateY(-50%); }
.faq-icon::after  { content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: currentColor; transform: translateX(-50%) scaleY(1); transition: transform 0.2s; }
.faq-btn.open .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-answer      { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq-answer.open { max-height: 600px; }
.faq-answer p    {
  font-family: var(--body);
  font-size: var(--fs-l);
  font-weight: 400;
  line-height: var(--lh-body);
  color: var(--mid);
  padding-bottom: 24px;
  }


/* ══════════════════════════════════════════════════════════
   DARK CONTACT SECTION
══════════════════════════════════════════════════════════ */
.contact-dark         { padding: 90px 60px; background: var(--olive);
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.contact-dark-eyebrow {
  font-family: var(--body);
  font-size: var(--fs-l);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  }
.contact-dark-quote   { font-family: var(--serif); font-size: var(--fs-xxl); font-weight: 400;
  color: #fff; line-height: var(--lh-heading); margin-bottom: 28px; }
.contact-dark-desc    {
  font-family: var(--body);
  font-size: var(--fs-l);
  color: rgba(255,255,255,0.75);
  line-height: var(--lh-body);
  margin-bottom: 24px;
  }
.contact-dark-email   {
  font-family: var(--body);
  font-size: var(--fs-l);
  color: #fff;
  text-decoration: none;
  }
.contact-dark-note    {
  margin-top: 8px;
  font-family: var(--body);
  font-size: var(--fs-m);
  color: rgba(255,255,255,0.5);
  }
.contact-dark-right   { display: flex; flex-direction: column; gap: 24px; }

.dark-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dark-label    {
  font-family: var(--body);
  font-size: var(--fs-m);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 6px;
  }
.dark-input    { width: 100%; color: #fff; border: none;
  border-bottom: 1px solid rgba(255,255,255,0.35); background: transparent;
  padding: 10px 0; font-family: var(--body); font-size: var(--fs-m); outline: none; }
.dark-textarea { resize: vertical; min-height: 100px; }
.dark-submit   {
  font-family: var(--body);
  font-size: var(--fs-l);
  font-weight: 400;
  color: var(--olive);
  background: #fff;
  border: 1px solid #fff;
  padding: 12px 26px;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.2s;
  }
.dark-submit:hover { opacity: 0.82; }

.contact-form-dark        { display: flex; flex-direction: column; gap: 24px; }
.form-success-dark        { display: none; }
.form-success-dark p      { font-family: var(--body); font-size: var(--fs-m);
  color: rgba(255,255,255,0.75); line-height: var(--lh-body); }
.form-success-circle-dark { width: 40px; height: 40px; border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.form-reset-dark          { margin-top: 24px; font-family: var(--body); font-size: var(--fs-s);
  color: #fff; background: none; border: none; cursor: pointer;
  letter-spacing: 0.08em; text-transform: uppercase; }


/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer { border-top: 1px solid var(--olive-light); padding: 48px 60px;
  display: flex; justify-content: space-between; align-items: flex-end; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.footer-logo  {
  font-family: var(--serif);
  font-size: var(--fs-l);
  letter-spacing: 0.06em;
  color: var(--olive);
  text-transform: uppercase;
  margin-bottom: 6px;
  }
.footer-desc, .footer-email {font-family: var(--body);font-size: var(--fs-m);color: var(--muted);}
.footer-email  { margin-top: 4px; }
.footer-links  { display: flex; gap: 28px; }
.footer-link   {
  font-family: var(--body);
  font-size: var(--fs-m);
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
  }
.footer-link:hover { color: var(--olive); }
.footer-year   {font-family: var(--body);font-size: var(--fs-m);color: var(--muted);}


/* ══════════════════════════════════════════════════════════
   HOME: INTRO
══════════════════════════════════════════════════════════ */
.home-intro    {padding: 180px 60px 60px 0;}
.home-intro h1 {
  font-family: var(--serif);
  font-size: var(--fs-xxl);
  font-weight: 400;
  color: var(--olive);
  line-height: var(--lh-heading);
  letter-spacing: -0.01em;
  padding-left: var(--img-offset);
  }


/* ══════════════════════════════════════════════════════════
   HOME: HERO
══════════════════════════════════════════════════════════ */
.hero          { position: relative; }
.hero-img-wrap {margin-left: var(--img-offset);}
.hero-overlay  {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 48px 48px 52px;
  }
.hero-body     {
  font-family: var(--body);
  font-size: var(--fs-xl);
  font-weight: 400;
  line-height: var(--lh-relaxed);
  color: var(--mid);
  margin-bottom: 36px;
  }
.hero-actions  { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.btn-ghost     { font-family: var(--body); font-size: var(--fs-s); font-weight: 400;
  color: var(--mid); background: none; border: none; cursor: pointer;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 0; transition: color 0.2s; }
.btn-ghost:hover { color: var(--olive); }


/* ══════════════════════════════════════════════════════════
   HOME: SERVICES
══════════════════════════════════════════════════════════ */
.services       { padding: 108px 60px; border-top: 1px solid var(--olive-light); }
.services-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.service-card   { cursor: pointer; }
.service-accent { width: 32px; height: 1px; background: var(--olive); margin-bottom: 20px; }
.service-title  {
  font-family: var(--body);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
  }
.service-text   { font-family: var(--body); font-size: var(--fs-m); font-weight: 300;
  line-height: var(--lh-body); color: var(--mid); }
.service-link   {
  margin-top: 18px;
  font-family: var(--body);
  font-size: var(--fs-m);
  color: var(--olive);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  }


/* ══════════════════════════════════════════════════════════
   HOME: QUOTE STRIP
══════════════════════════════════════════════════════════ */
.quote-strip         { background: var(--olive-light); padding: 90px 60px; text-align: center; }
.quote-strip blockquote {
  font-family: var(--serif);
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: var(--dark);
  line-height: var(--lh-relaxed);
  max-width: 700px;
  margin: 0 auto;
  }
.quote-strip-attr    {
  margin-top: 20px;
  font-family: var(--body);
  font-size: var(--fs-m);
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  }


/* ══════════════════════════════════════════════════════════
   HOME: REVIEWS
══════════════════════════════════════════════════════════ */
.reviews         { padding: 90px 60px; border-top: 1px solid var(--olive-light); }
.reviews-header  { display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px; }
.reviews-eyebrow { font-family: var(--body); font-size: var(--fs-s); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--olive); margin-bottom: 12px; }
.reviews-heading { font-family: var(--serif); font-size: var(--fs-xl); font-weight: 400;
  color: var(--dark); line-height: var(--lh-heading); }
.reviews-link    {
  display: none;
  font-family: var(--body);
  font-size: var(--fs-s);
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  }
.reviews-grid    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.review-card     { padding: 28px 0; border-top: 1px solid var(--olive-light); }
.review-text     { font-family: var(--body); font-size: var(--fs-m);
  color: var(--mid); line-height: var(--lh-body); margin-bottom: 20px; }
.reviewer-name   { font-family: var(--body); font-size: var(--fs-s);
  color: var(--muted); letter-spacing: 0.04em; }
.stars           { display: flex; gap: 3px; margin-bottom: 16px; }


/* ══════════════════════════════════════════════════════════
   IMAGES
══════════════════════════════════════════════════════════ */
#hero-img, #img-8063, #img-8533, #img-8627, #ueber-img {
  width: 100%; object-fit: cover; object-position: center top; display: block;
}
#hero-img  { height: 738px; }
#img-8063  { height: 340px; margin-bottom: 32px; }
#img-8533  { height: 560px; align-self: start; }
#img-8627  { height: 320px; margin-bottom: 32px; }
#ueber-img { height: 520px; }


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  nav            { padding: 0 20px; }
  .nav-links     { display: none; }
  .page          { padding-top: 90px; }
  .inner-header  { padding: 48px 20px 32px; }
  .inner-content { padding: 40px 20px; max-width: none; }
  .grid-60-40, .grid-58-42, .grid-57-43, .grid-55-45 { grid-template-columns: 1fr; gap: 40px; }
  .faq-section   { padding: 60px 20px; }
  .contact-dark  { grid-template-columns: 1fr; gap: 48px; padding: 60px 20px; }
  .dark-form-row { grid-template-columns: 1fr; }
  .site-footer   { padding: 32px 20px; flex-direction: column; align-items: flex-start; gap: 24px; }
}
