/* ══════════════════════════════════════════════
   Praxis Raffelsieper — Stylesheet
   ══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --ivory:       #F7F4EF;
  --sage-pale:   #C8D5C0;
  --sage-dark:   #3E5438;
  --border:      #BEC9B6;
  --ink:         #1A1A17;
  --ink-mid:     #4A4843;
  --ink-light:   #82867E;
  --on-dark:     #F7F4EF;
  --on-dark-mid: rgba(238,233,223,0.65);
  --on-dark-line:#5E7658;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── BASE ── */
body {
  font-family: 'Suisse Intl', 'Tenor Sans', 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAFIE ── */
.t-display  { font-size: clamp(22px, 2.6vw, 28px); font-weight: 400; line-height: 1.2; letter-spacing: -0.01em; }
.t-title    { font-size: clamp(17px, 2vw, 22px);   font-weight: 400; line-height: 1.3; letter-spacing: -0.01em; }
.t-lead     { font-size: 14px; font-weight: 300; line-height: 1.6; }
.t-body     { font-size: 14px; font-weight: 300; line-height: 1.6; }
.t-small    { font-size: 14px; font-weight: 300; line-height: 1.6; }
.t-label    { font-size: 9px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; }

/* ── FARB-HELFER ── */
.c-mid      { color: var(--ink-mid); }
.c-light    { color: var(--ink-light); }
.c-on-dark  { color: var(--on-dark); }
.c-on-mid   { color: var(--on-dark-mid); }
.quote-italic { font-style: italic; }

/* ── LAYOUT ── */
.wrap      { max-width: 1080px; margin: 0 auto; padding: 0 48px; }
.wrap-text { max-width: 680px;  margin: 0 auto; padding: 0 48px; }

.section        { padding: 96px 0; border-bottom: 0.5px solid var(--border); }
.section--ivory { background: var(--ivory); }
.section--pale  { background: var(--sage-pale); border-color: var(--border); }
.section--dark  { background: var(--sage-dark); border-color: var(--on-dark-line); }

/* ── NAVIGATION ── */
nav {
  background: var(--sage-pale);
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  width: 100%;
  padding: 20px 56px;
  min-height: 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.nav-logo { text-decoration: none; }
.nav-logo-main {
  display: block;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.4;
}
.nav-logo-sub {
  display: block;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--ink-light);
  line-height: 1.5;
}

.nav-right { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

/* ── SPRACH-TOGGLE ── */
.lang-toggle {
  font-family: 'Suisse Intl', 'Tenor Sans', 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: none;
  border: 0.5px solid var(--ink);
  padding: 5px 12px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.lang-toggle:hover { opacity: 0.5; }

/* ── SPRACH-UMSCHALTUNG ── */
.en { display: none; }
.de { display: inline; }
body.lang-en .en { display: inline; }
body.lang-en .de { display: none; }
p.en, div.en, li.en, blockquote.en, span.en.block { display: none; }
p.de, div.de, li.de, blockquote.de, span.de.block { display: block; }
body.lang-en p.en, body.lang-en div.en, body.lang-en li.en,
body.lang-en blockquote.en, body.lang-en span.en.block { display: block; }
body.lang-en p.de, body.lang-en div.de, body.lang-en li.de,
body.lang-en blockquote.de, body.lang-en span.de.block { display: none; }
/* Nav-Logo-Zeilen bleiben block */
.nav-logo-main.de { display: block; }
.nav-logo-main.en { display: none; }
body.lang-en .nav-logo-main.en { display: block; }
body.lang-en .nav-logo-main.de { display: none; }
/* H2/H3 Sprach-Umschaltung */
h2.en, h3.en { display: none; }
h2.de, h3.de { display: block; }
body.lang-en h2.en, body.lang-en h3.en { display: block; }
body.lang-en h2.de, body.lang-en h3.de { display: none; }

/* ── HERO ── */
.hero {
  background: var(--ivory);
  border-bottom: 0.5px solid var(--border);
  padding: 96px 0;
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}
.hero-cta {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 0.5px solid var(--ink);
  padding-bottom: 3px;
  display: inline-block;
  margin-top: 40px;
  transition: opacity 0.2s;
}
.hero-cta:hover { opacity: 0.4; }
.hero-image { height: 437px; overflow: hidden; align-self: center; }

/* ── PULL QUOTE ── */
.pull-quote {
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
}
.pull-quote--ivory { color: var(--ink-mid); }
.pull-quote--dark  { color: var(--on-dark-mid); }
.quote-source {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-top: 12px;
  display: block;
  text-transform: uppercase;
}

/* ── LISTE ── */
.tension-list { list-style: none; padding: 0; margin: 16px 0; }
.tension-list > li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-mid);
  padding: 4px 0 4px 20px;
  position: relative;
}
.tension-list > li::before {
  content: '•';
  position: absolute;
  left: 2px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.7;
}
.tension-sub { list-style: none; padding: 0; margin-top: 4px; margin-left: 20px; }
.tension-sub li {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-mid);
  padding: 4px 0 4px 20px;
  line-height: 1.65;
  position: relative;
}
.tension-sub li::before {
  content: '•';
  position: absolute;
  left: 2px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.7;
}

/* ── ZWEI-SPALTEN ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col--image { grid-template-columns: 380px 1fr; gap: 120px; }

/* ── FORMATE GRID ── */
.formats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 40px;
}
.format-item { background: var(--ivory); padding: 44px 40px; transition: background 0.2s; }
.format-item:hover { background: var(--sage-pale); }
.format-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 14px;
  display: block;
}

/* ── KONTAKT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.contact-label {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 8px;
  display: block;
}
.contact-value { font-size: 19px; font-weight: 300; color: var(--ink-mid); line-height: 1.7; }
.contact-value a { color: var(--ink-mid); text-decoration: none; border-bottom: 0.5px solid var(--border); white-space: nowrap; }

/* ── FOOTER ── */
footer {
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

/* ── GRID HELFER ── */
.section-img-end { padding-bottom: 96px; }

.grid-image-left {
  max-width: 1080px; margin: 0 auto;
  padding: 0 48px 0 0;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 136px;
  align-items: start;
}
.grid-image-right {
  max-width: 1080px; margin: 0 auto;
  padding: 0 0 0 48px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}
.grid-image-left .grid-text { padding: 0 48px 0 0; }

/* ── HILFSKLASSEN ── */
.mobile-br { display: none; }
.mobile-hide { display: inline; }
.desktop-br { display: inline; }

.gras-mobile { display: none; }
.forest-desktop { display: block; height: 437px; }

/* ── HPP ── */
.hpp-nav-item { display: list-item; }
body.lang-en .hpp-nav-item { display: none; }

.hpp-mobile-link {
  display: block;
  margin-top: 56px;
  padding: 12px 40px;
  transition: background 0.2s;
}
.hpp-mobile-link:hover { background: var(--sage-pale); }
.hpp-mobile-link a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  border-bottom: 0.5px solid var(--border);
  padding-bottom: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hpp-mobile-link { margin-top: 24px; padding-left: 0; }
}

@media (max-width: 768px) {
  * { font-family: 'Suisse Intl', 'Tenor Sans', 'DM Sans', sans-serif !important; }

  nav { position: fixed !important; top: 0; left: 0; right: 0; z-index: 100; }
  body { padding-top: 72px; }

  .mobile-br { display: block; }
  .mobile-hide { display: none; }
  .desktop-br { display: none; }

  .wrap, .wrap-text, footer { padding-left: 20px; padding-right: 20px; }
  .hero-inner, .two-col, .two-col--image, .formats-grid, .contact-grid {
    grid-template-columns: 1fr; gap: 24px;
  }
  .grid-image-left, .grid-image-right {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 0 !important;
  }
  .grid-image-left .grid-text { padding: 20px 20px 0 20px !important; }
  .grid-image-right > div:first-child { padding: 0 20px; }
  .grid-image-left > div:first-child,
  .grid-image-right > div:last-child { height: 260px !important; }
  .grid-image-left > div:first-child img { height: 260px !important; width: 100% !important; object-fit: cover; display: block; }
  .forest-desktop { display: block !important; height: 260px !important; }
  .gras-mobile { display: none !important; }
  .forest-desktop img { height: 260px !important; width: 100% !important; object-fit: cover !important; object-position: center bottom !important; display: block; }

  .nav-inner { padding: 14px 20px !important; min-height: 0 !important; align-items: flex-start !important; }
  .nav-links { display: none !important; }
  .nav-right { gap: 0 !important; margin-top: 0 !important; }
  .nav-logo-main { font-size: 12px !important; line-height: 1.4 !important; }
  .nav-logo-sub { font-size: 9px !important; }
  .lang-toggle { font-size: 9px !important; padding: 3px 8px !important; margin-top: 0 !important; }

  .t-display, .t-title               { font-size: 20px !important; font-weight: 400 !important; line-height: 1.25 !important; letter-spacing: -0.01em !important; }
  .t-lead, .t-body, .t-small         { font-size: 12px !important; font-weight: 300 !important; line-height: 1.65 !important; }
  .pull-quote                         { font-size: 12px !important; font-weight: 300 !important; line-height: 1.65 !important; }
  .t-label                            { font-size: 8px !important; }
  .format-tag                         { font-size: 8px !important; }
  p[style*="font-size: 15px"]         { font-size: 12px !important; line-height: 1.65 !important; }
  p[style*="font-size: 18px"]         { font-size: 12px !important; line-height: 1.65 !important; }

  .formats-grid { gap: 1px !important; margin-top: 12px !important; }
  .format-item--green { background: var(--sage-pale) !important; }
  .formats-label { margin-bottom: 16px !important; padding-left: 20px !important; }

  .hero-image { display: none; }
  .section { padding: 48px 0; }
  .hero { padding: 40px 0; }
  .hero-inner { padding: 0 20px; }
  .section--pale, .section--dark { padding: 48px 0 !important; }
  .section--pale.section-img-start { padding-top: 0 !important; }
  .section--pale.section-img-start .grid-image-left { padding-top: 0 !important; margin-top: 0 !important; }
  .section--pale.section-img-start .grid-image-left > div:first-child { margin-top: 0 !important; align-self: auto !important; }
  html body .section--pale.section-img-end { padding-bottom: 0 !important; }
  .section--pale.section-img-end .grid-image-right { padding-bottom: 0 !important; margin-bottom: 0 !important; }
  .section--pale.section-img-end .grid-image-right > div { margin-bottom: 0 !important; }
  .section--pale.section-img-end .grid-image-right .forest-desktop { margin-bottom: 0 !important; padding-bottom: 0 !important; overflow: hidden; }
  .section--pale.section-img-end .grid-image-right .forest-desktop img { display: block; margin: 0 !important; }

  .tension-list, .tension-list li, .tension-list ul { white-space: normal !important; }
  .tension-list > li { font-size: 12px !important; }
  .tension-sub li { font-size: 11px !important; }

  .format-item { padding: 24px 20px; }
  .formats-grid { margin-top: 16px; }

  .contact-grid { gap: 20px; }
  .contact-value { font-size: 12px !important; line-height: 1.65 !important; }

  .mobile-heading-space { margin-top: 16px !important; }
  .qual-text { font-size: 9px !important; line-height: 1.6 !important; letter-spacing: 0 !important; }

  footer { padding: 16px 20px; }
  footer span, footer a { font-size: 10px !important; }

  .wrap { padding: 0 20px; }
  .wrap-text { padding: 0 20px; }
  .two-col { margin-top: 24px !important; }
}
