/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Libre Baskerville', 'Georgia', serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: #000;
  background: #fff;
}

a {
  color: #c79288;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: 'Alegreya Sans', sans-serif;
  font-weight: 300;
}

h2 {
  font-size: 28px;
  color: #c79288;
  margin-top: 1.5em;
  margin-bottom: 0.6em;
}

h3 {
  font-size: 28px;
  color: #c79288;
  margin-bottom: 0.8em;
}

h4 {
  font-size: 24px;
  color: #000;
  margin-bottom: 0.6em;
}

p {
  margin-bottom: 1em;
}

/* ===== Layout ===== */
.page-wrapper {
  max-width: 1800px;
  margin: 0 auto;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3vw;
}

.content-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3vw;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 2vw 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s;
}

.site-header.transparent {
  background: transparent;
}

.site-header.solid {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.site-logo a {
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 26px;
  font-weight: 300;
  color: #000;
  text-decoration: none;
}

.site-header.transparent .site-logo a {
  color: #fff;
}

.site-nav {
  display: flex;
  gap: 1.8em;
  align-items: center;
}

.site-nav a {
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  font-weight: 300;
  color: #000;
  text-decoration: none;
  position: relative;
}

.site-nav a.active {
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
}

.site-header.transparent .site-nav a {
  color: #fff;
}

.site-header.transparent .site-nav a.active {
  border-bottom-color: #fff;
}

.site-nav a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  margin: 5px 0;
  transition: 0.3s;
}

.site-header.transparent .menu-toggle span {
  background: #fff;
}

/* ===== Hero Sections ===== */
.hero {
  position: relative;
  height: 70vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-home {
  height: 50vh;
  min-height: 350px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 3vw;
}

.hero-overlay h1 {
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 44px;
  font-weight: 300;
  margin-bottom: 0.3em;
}

.hero-overlay h2 {
  color: #fff;
  font-size: 44px;
}

.hero-dark .hero-overlay {
  color: #000;
}

.hero-dark .hero-overlay h1,
.hero-dark .hero-overlay h2 {
  color: #000;
}

.hero-overlay p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}

.hero-intro {
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 21px;
  font-weight: 300;
  color: #000;
  max-width: 700px;
  margin: 0 auto 0.3em;
  opacity: 1;
}

/* ===== Sections ===== */
.section {
  padding: 50px 3vw;
}

.section-light {
  background: #eaf4f6;
}

.section-white {
  background: #fff;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

.two-col img {
  width: 100%;
  border-radius: 0;
}

/* ===== Quote Banner ===== */
.quote-banner {
  position: relative;
  padding: 80px 3vw;
  min-height: 370px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.quote-banner .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-banner .quote-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 3vw;
}

.quote-banner h2 {
  color: #fff;
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 0.5em;
  text-align: left;
}

.quote-banner .quote-attribution {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-style: italic;
  text-align: left;
}

/* ===== Blockquote ===== */
blockquote {
  text-align: center;
  padding: 40px 20px;
  margin: 40px 0;
}

blockquote p {
  font-family: 'Alegreya Sans', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.5;
  color: #000;
}

blockquote cite {
  display: block;
  margin-top: 1em;
  font-size: 15px;
  color: #888;
  font-style: normal;
}

/* ===== Links page cards ===== */
.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.link-card {
  text-align: left;
}

.link-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 20px;
}

.link-card h3 {
  font-size: 28px;
  color: #c79288;
  font-style: normal;
  font-weight: 300;
  margin-bottom: 0.8em;
}

.link-card p {
  font-size: 16px;
  line-height: 1.6;
}

/* ===== Über mich ===== */
.about-section h2 {
  text-align: center;
  font-size: 40px;
  color: #000;
  margin-bottom: 60px;
}

.about-section h3 {
  font-size: 18px;
  color: #000;
  font-weight: 700;
  font-family: 'Libre Baskerville', serif;
  margin-bottom: 0.5em;
}

.about-section p {
  color: #000;
  font-size: 18px;
}

/* ===== MBSR page ===== */
.mbsr-intro {
  text-align: center;
  padding: 40px 3vw 20px;
}

.subtitle {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 20px;
}

.mbsr-content h2 {
  margin-top: 0;
}

.mbsr-content ul {
  margin: 1em 0 1em 1.5em;
  font-size: 18px;
  line-height: 1.7;
}

.mbsr-content li {
  margin-bottom: 0.5em;
}

/* ===== Links page CTA ===== */
.links-cta {
  text-align: center;
  margin-top: 60px;
}

/* ===== Button ===== */
.btn {
  display: inline-block;
  border: 2px solid #c79288;
  padding: 17px 30px;
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  color: #c79288;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.3px;
}

.btn:hover {
  background: #c79288;
  color: #fff;
  text-decoration: none;
}

/* ===== Footer ===== */
.site-footer {
  padding: 40px 3vw;
  text-align: center;
  font-size: 14px;
  color: #999;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 3vw;
    gap: 1em;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .site-header.transparent .site-nav a {
    color: #000;
  }

  .menu-toggle {
    display: block;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .two-col.reverse {
    direction: ltr;
  }

  .links-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 32px;
  }

  body {
    font-size: 18px;
  }

  .hero {
    height: 50vh;
    min-height: 300px;
  }

  .hero-overlay h1 {
    font-size: 30px;
  }

  .section {
    padding: 50px 5vw;
  }

  .site-header {
    padding: 4vw 5vw;
  }

  .about-section h2 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 5vw 5vw;
  }

  .hero-home {
    height: 40vh;
  }

  .section {
    padding: 40px 5vw;
  }

  .quote-banner {
    padding: 60px 5vw;
  }

  .quote-banner h2 {
    font-size: 22px;
  }
}
