/* ============================================================
   MENTALE SCHONKOST — Global Stylesheet
   Farben: Cremeweiß #FAF8F4, Beige #F5F1EB, Salbeigrün #7A9E7E,
           Dusty Rose #C4937A, Taupe #9E9187, Gold #C8A96E
   Fonts: Cormorant Garamond (Display) + Inter (Body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
  --creme:       #FAF8F4;
  --beige:       #F5F1EB;
  --salbei:      #7A9E7E;
  --salbei-dk:   #5e856a;
  --rose:        #C4937A;
  --taupe:       #9E9187;
  --taupe-dk:    #6B6257;
  --gold:        #C8A96E;
  --text:        #3a3530;
  --text-light:  #6B6257;
  --border:      #e8e2d9;
  --nav-h:       72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.82;
  color: var(--text);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
}

/* ── NAVIGATION ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--creme);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--taupe-dk);
  line-height: 1.3;
}

.nav-logo-text span {
  display: block;
  font-style: italic;
  font-size: 0.72rem;
  color: var(--taupe);
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--taupe-dk);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border-radius: 99px;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--beige);
  color: var(--salbei-dk);
}

.nav-links .btn-nav {
  background: var(--taupe-dk);
  color: var(--creme) !important;
  padding: 0.4rem 1rem;
}

.nav-links .btn-nav:hover {
  background: var(--salbei-dk) !important;
  color: var(--creme) !important;
}

/* Hamburger mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--taupe-dk);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── LAYOUT HELPERS ── */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.container--wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.02em;
  color: var(--taupe-dk);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 300; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 300; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; font-weight: 500; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

em, i { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05em; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--salbei);
  margin-bottom: 0.75rem;
}

.lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--taupe-dk);
}

.caption {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 99px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.4s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--salbei);
  color: #fff;
}

.btn--primary:hover {
  background: var(--salbei-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(122, 158, 126, 0.3);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--salbei);
  color: var(--salbei-dk);
}

.btn--outline:hover {
  background: var(--salbei);
  color: #fff;
}

.btn--taupe {
  background: var(--taupe-dk);
  color: #fff;
}

.btn--taupe:hover {
  background: #524d48;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107, 98, 87, 0.25);
}

.text-link {
  color: var(--salbei-dk);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.text-link:hover { border-color: var(--salbei); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(250,248,244,0) 40%, rgba(250,248,244,0.85) 80%, var(--creme) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  max-width: 860px;
}

.hero--small {
  min-height: 34vh;
}

/* ── CARDS ── */
.card {
  background: var(--creme);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.card--beige { background: var(--beige); border-color: #e5ddd4; }

/* ── DIVIDER ── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.divider--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ── ICON LIST ── */
.icon-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.icon-list li::before {
  content: '◦';
  color: var(--salbei);
  font-size: 1.2rem;
  line-height: 1.4;
  flex-shrink: 0;
}

/* ── QUOTE ── */
blockquote {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--taupe-dk);
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  background: var(--beige);
  border-radius: 0 12px 12px 0;
  margin: 2rem 0;
}

blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-light);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--beige);
  border-top: 1px solid var(--border);
  padding: clamp(2.5rem, 6vw, 4rem) 0 2rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.footer-brand .nav-logo-text { font-size: 1.2rem; }

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--salbei); }

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ── FADE ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.9s ease both;
}

.fade-up--delay-1 { animation-delay: 0.15s; }
.fade-up--delay-2 { animation-delay: 0.3s;  }
.fade-up--delay-3 { animation-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { animation: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--creme);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
  }

  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 0.6rem 0.5rem; font-size: 1rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-xs  { margin-top: 0.5rem; }
.mt-sm  { margin-top: 1rem; }
.mt-md  { margin-top: 2rem; }
.mt-lg  { margin-top: 3rem; }
.mb-sm  { margin-bottom: 1rem; }
.mb-md  { margin-bottom: 2rem; }
.color-salbei { color: var(--salbei); }
.color-taupe  { color: var(--taupe-dk); }
.color-rose   { color: var(--rose); }

.bg-beige { background: var(--beige); }
.section--beige { background: var(--beige); }
