/* ================================================
   KJS Segeberg — Main Stylesheet
   ================================================ */

:root {
  --pine:       #2b4428;
  --pine-mid:   #3d6038;
  --sage:       #7a9e6e;
  --sage-light: #a8c49a;
  --gold:       #8c6d2e;
  --gold-lt:    #b8922e;
  --amber:      #c8a050;
  --cream:      #faf8f3;
  --paper:      #f3f0e8;
  --linen:      #e8e2d4;
  --fog:        #ced5c4;
  --red:        #7a2020;
  --text:       #1a1a12;
  --mid:        #4a4a38;
  --muted:      #7a7a62;
  --rule:       rgba(43,68,40,0.12);
  --white:      #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1,h2,h3,h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
}

.label {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  display: inline-block;
  margin-bottom: 0.6rem;
}

/* LAYOUT */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }

/* ================================================
   NAV
   ================================================ */
.admin-bar .nav {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .nav { top: 46px; }
}
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(250,248,243,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s;
}
.nav.up { box-shadow: 0 2px 24px rgba(43,68,40,0.08); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-badge {
  width: 40px; height: 40px;
  background: var(--pine);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  overflow: hidden;
}
.brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text b {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--pine);
  letter-spacing: 0.01em;
}
.brand-text small {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* WordPress Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 0 1rem;
  height: 68px;
  line-height: 68px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-menu > li > a:hover,
.nav-menu > li:hover > a { color: var(--pine); }
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a { color: var(--pine); }

.nav-drop,
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--linen);
  border-top: 2px solid var(--pine);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.18s ease;
  z-index: 999;
  padding: 0;
}
.nav-menu > li:hover .sub-menu {
  opacity: 1; visibility: visible; transform: none;
}
.nav-menu .sub-menu li a {
  display: block;
  padding: 0.65rem 1.2rem;
  font-size: 0.78rem;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid var(--linen);
  transition: background 0.15s, color 0.15s;
  height: auto;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}
.nav-menu .sub-menu li:last-child a { border-bottom: none; }
.nav-menu .sub-menu li a:hover { background: var(--paper); color: var(--pine); }

.nav-btn {
  flex-shrink: 0;
  padding: 0.6rem 1.4rem;
  background: var(--pine);
  color: var(--cream) !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  text-decoration: none;
  border-radius: 2px;
  height: auto !important;
  line-height: normal !important;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.nav-btn:hover { background: var(--pine-mid) !important; }

.burger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; background: none; border: none; }
.burger span { width: 24px; height: 2px; background: var(--pine); display: block; border-radius: 2px; transition: all 0.3s; }

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  background: var(--cream);
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 5rem 2.5rem;
  max-width: 640px;
  justify-self: end;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn 0.8s 0.2s forwards;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--sage); }
.hero-eyebrow span {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 300;
  color: var(--pine);
  line-height: 1.08;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeIn 0.9s 0.4s forwards;
}
.hero-h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero-body {
  margin-top: 1.8rem;
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.8;
  max-width: 440px;
  font-weight: 300;
  opacity: 0;
  animation: fadeIn 0.9s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.9s 0.8s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.22s;
  border: none;
}
.btn-forest {
  background: var(--pine);
  color: var(--cream);
  border: 2px solid var(--pine);
}
.btn-forest:hover {
  background: var(--pine-mid);
  border-color: var(--pine-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43,68,40,0.2);
}
.btn-ghost {
  background: transparent;
  color: var(--pine);
  border: 2px solid var(--linen);
}
.btn-ghost:hover {
  border-color: var(--fog);
  background: var(--paper);
  transform: translateY(-2px);
}

/* Hero Right Visual */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right-inner {
  position: absolute;
  inset: 0;
}
.hero-right-inner.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-right-inner.no-image {
  background:
    linear-gradient(180deg, rgba(250,248,243,0.15) 0%, rgba(250,248,243,0) 30%),
    linear-gradient(160deg, #c8d9b8 0%, #9fbf8a 25%, #7a9e6e 50%, #4a7040 70%, #2b4428 100%);
}

.hero-trees {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 70%;
  opacity: 0.25;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 800 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,600 L0,450 L40,350 L80,450 L80,300 L120,180 L160,300 L160,420 L200,280 L240,150 L280,280 L280,400 L320,250 L360,120 L400,250 L400,380 L440,240 L480,110 L520,240 L520,370 L560,250 L600,130 L640,250 L640,400 L680,300 L720,200 L760,300 L800,400 L800,600 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: 100% 100%;
}

.hero-light {
  position: absolute;
  top: -20%;
  right: 10%;
  width: 300px;
  height: 600px;
  background: linear-gradient(180deg, rgba(255,255,200,0.18) 0%, transparent 80%);
  transform: rotate(-15deg);
  pointer-events: none;
}
.hero-light-2 {
  position: absolute;
  top: -10%;
  right: 35%;
  width: 120px;
  height: 500px;
  background: linear-gradient(180deg, rgba(255,255,220,0.1) 0%, transparent 70%);
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero-mist {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(232,226,212,0.55) 0%, transparent 100%);
}

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  background: rgba(250,248,243,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--linen);
  padding: 1.2rem 1.5rem;
  min-width: 180px;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
  overflow: hidden;
}
.hero-badge-slide {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
}
.hero-badge-slide.active {
  display: flex;
  animation: badgeFade 0.5s ease;
}
@keyframes badgeFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.hero-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--pine);
  line-height: 1;
}
.hero-badge-lbl {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 5;
  animation: pulseDown 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--sage), transparent);
}

@keyframes pulseDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%       { transform: translateX(-50%) translateY(5px); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* ================================================
   DIVIDER ORNAMENT
   ================================================ */
.divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0;
}
.divider::before, .divider::after {
  content: ''; flex: 1;
  height: 1px;
  background: var(--rule);
}
.divider-icon { color: var(--sage); font-size: 0.9rem; }

/* ================================================
   FEATURES STRIP
   ================================================ */
.features {
  background: var(--white);
  padding: 5rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--linen);
  border: 1px solid var(--linen);
  margin-top: 3rem;
}
.feature-item {
  background: var(--white);
  padding: 2.8rem 2.4rem;
  transition: background 0.2s;
}
.feature-item:hover { background: var(--cream); }
.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--linen);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
}
.feature-item h3 {
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--pine);
  margin-bottom: 0.7rem;
}
.feature-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; font-weight: 300; }

/* ================================================
   NEWS
   ================================================ */
.news {
  background: var(--paper);
  padding: 5rem 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--pine);
  margin-top: 0.3rem;
}
.all-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s, color 0.2s;
  flex-shrink: 0;
  padding-bottom: 0.2rem;
}
.all-link:hover { gap: 0.7rem; color: var(--pine); }
.all-link::after { content: '\2192'; }

/* News Layout */
.news-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
}

.news-main {
  background: var(--white);
  border: 1px solid var(--linen);
  overflow: hidden;
  transition: box-shadow 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.news-main:hover { box-shadow: 0 16px 48px rgba(43,68,40,0.1); }

.news-main-img {
  height: 240px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #c8d9b8 0%, #7a9e6e 50%, #3d6038 100%);
}
.news-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-main-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 700 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,200 L0,140 L40,90 L80,140 L100,80 L140,30 L180,80 L180,140 L220,70 L260,20 L300,70 L300,140 L360,60 L400,10 L440,60 L440,140 L480,80 L520,40 L560,80 L560,150 L600,100 L640,60 L680,100 L700,130 L700,200 Z' fill='rgba(255,255,255,0.12)'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: 100% 100%;
  pointer-events: none;
}
.news-main-img.has-image::after { display: none; }
.news-main-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--white);
  color: var(--pine);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  z-index: 2;
}
.news-main-body { padding: 1.8rem 2rem 2rem; }
.news-main-body h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--pine);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.news-main-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }
.news-meta { display: flex; gap: 1rem; margin-top: 1.2rem; }
.news-meta span { font-size: 0.73rem; color: var(--muted); }

.news-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--linen);
  padding: 1.3rem 1.4rem;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  color: inherit;
}
.news-card:hover { background: var(--cream); box-shadow: 0 4px 16px rgba(43,68,40,0.07); }
.news-card-cal {
  flex-shrink: 0;
  background: var(--pine);
  color: var(--cream);
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.4rem 0.3rem;
}
.cal-d { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; line-height: 1; }
.cal-m { font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; }
.news-card-body { flex: 1; }
.news-card-tag { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.3rem; }
.news-card-body h4 { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--text); line-height: 1.3; }

/* ================================================
   MODULES
   ================================================ */
.modules {
  background: var(--white);
  padding: 5rem 0;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.mod-card {
  border: 1px solid var(--linen);
  padding: 2rem 1.6rem 1.8rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.22s;
  position: relative;
  background: var(--white);
}
.mod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(43,68,40,0.1);
  border-color: var(--sage-light);
}
.mod-card::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, var(--pine), var(--sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.mod-card:hover::after { transform: scaleX(1); }

.mod-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}
.mod-icon img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}
.mod-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--pine);
  margin-bottom: 0.5rem;
}
.mod-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; flex: 1; font-weight: 300; }
.mod-more {
  margin-top: 1.1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s, color 0.2s;
}
.mod-card:hover .mod-more { gap: 0.6rem; color: var(--pine); }

/* ================================================
   EVENTS
   ================================================ */
.events {
  background: var(--paper);
  padding: 5rem 0;
}
.events-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid var(--linen);
}
.event-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--linen);
  cursor: pointer;
  transition: background 0.18s;
  text-decoration: none;
  color: inherit;
}
.event-row:last-child { border-bottom: none; }
.event-row:hover { background: var(--cream); }

.ev-date {
  text-align: center;
  flex-shrink: 0;
}
.ev-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--pine);
  font-weight: 400;
  line-height: 1;
}
.ev-mon {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
}
.ev-cat {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.ev-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.ev-place { font-size: 0.8rem; color: var(--muted); }
.ev-arrow {
  color: var(--linen);
  font-size: 1.2rem;
  transition: color 0.2s, transform 0.2s;
}
.event-row:hover .ev-arrow { color: var(--sage); transform: translateX(4px); }

.events-ics-bar {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.ics-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 1px solid var(--linen);
  padding: 0.3rem 0.7rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  color: var(--muted);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
}
.ics-copy:hover { border-color: var(--sage); color: var(--pine); }
.ics-copy.copied { border-color: var(--sage); color: var(--pine); }
.ics-copy.copied .ics-copy-label::after { content: ' \2713'; }
.ics-hint {
  width: 100%;
  text-align: center;
  font-size: 0.62rem;
  color: var(--muted);
  opacity: 0.7;
  margin-top: 0.1rem;
}

/* ================================================
   NATURE BAND
   ================================================ */
.nature {
  background: var(--white);
  padding: 5rem 0;
}
.nature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.nature-visual {
  position: relative;
  height: 500px;
}
.nature-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%;
  height: 85%;
  background: linear-gradient(145deg, #b8cfaa 0%, #7a9e6e 40%, #3d6038 100%);
  border-radius: 2px;
  overflow: hidden;
}
.nature-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nature-img-main::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,150 L0,100 L30,60 L60,100 L80,40 L110,10 L140,40 L140,100 L170,50 L200,15 L230,50 L230,100 L260,60 L290,30 L320,60 L320,110 L360,70 L400,100 L400,150 Z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: 100% 100%;
  pointer-events: none;
}
.nature-img-main.has-image::after { display: none; }
.nature-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  background: var(--linen);
  border: 4px solid var(--white);
  overflow: hidden;
}
.nature-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nature-img-accent-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e8dfc9 0%, #c8d9b8 60%, #9fbf8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.5;
}
.nature-pill {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--white);
  border: 1px solid var(--linen);
  padding: 0.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  z-index: 2;
}
.pill-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--pine);
  line-height: 1;
}
.pill-lbl { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }

.nature-text .label { margin-bottom: 0.8rem; }
.nature-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--pine);
  margin-bottom: 1.2rem;
}
.nature-text p { font-size: 0.92rem; color: var(--mid); line-height: 1.85; margin-bottom: 0.9rem; font-weight: 300; }

.nature-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.8rem;
}
.nature-fact {
  background: var(--paper);
  padding: 1.2rem 1.3rem;
  border-left: 3px solid var(--sage);
}
.nature-fact h5 { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--pine); margin-bottom: 0.2rem; }
.nature-fact p { font-size: 0.78rem; color: var(--muted); line-height: 1.55; }

/* ================================================
   CTA BANNER
   ================================================ */
.cta-band {
  background: var(--pine);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -5%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.cta-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.6rem;
}
.cta-text p { color: rgba(250,248,243,0.6); font-size: 0.9rem; font-weight: 300; max-width: 500px; }
.cta-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }
.btn-light {
  background: var(--cream);
  color: var(--pine);
  border: 2px solid var(--cream);
}
.btn-light:hover { background: var(--paper); border-color: var(--paper); }
.btn-ghost-light {
  background: transparent;
  color: rgba(250,248,243,0.8);
  border: 2px solid rgba(250,248,243,0.25);
}
.btn-ghost-light:hover { border-color: rgba(250,248,243,0.6); background: rgba(255,255,255,0.05); }

/* ================================================
   HEGERINGE
   ================================================ */
.hegeringe {
  padding: 4rem 0;
  background: var(--paper);
}
.hegering-wrap {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hg-tag {
  padding: 0.55rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--linen);
  font-size: 0.78rem;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.18s;
  border-radius: 2px;
  letter-spacing: 0.03em;
  text-decoration: none;
  display: inline-block;
}
.hg-tag:hover {
  background: var(--pine);
  color: var(--cream);
  border-color: var(--pine);
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--text);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ft-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.ft-brand-name small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 0.1rem;
}
.ft-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.35); line-height: 1.8; font-weight: 300; max-width: 280px; }

.site-footer h6 {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer ul li a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.18s;
  font-weight: 300;
}
.site-footer ul li a:hover { color: var(--sage-light); }

.ft-contact p { font-size: 0.82rem; color: rgba(255,255,255,0.38); line-height: 1.9; font-weight: 300; }
.ft-contact strong { color: rgba(255,255,255,0.65); font-weight: 400; }

.footer-bottom {
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.2);
}
.ft-legal { display: flex; gap: 1.5rem; }
.ft-legal a { color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.18s; }
.ft-legal a:hover { color: var(--sage-light); }

.waid-strip {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0.9rem 0;
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ================================================
   MOBILE NAV
   ================================================ */
.admin-bar .mobile-overlay {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .mobile-overlay { top: 46px; }
}
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 1800;
  flex-direction: column;
  padding: 5rem 2.5rem 2rem;
  overflow-y: auto;
}
.mobile-overlay.open { display: flex; }
.mobile-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: none; font-size: 1.8rem;
  color: var(--pine); cursor: pointer;
}
.mobile-overlay a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--pine);
  text-decoration: none;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--linen);
  display: block;
  transition: color 0.18s;
}
.mobile-overlay > .mobile-nav-items > a:hover,
.mobile-overlay .mobile-parent > a:hover { color: var(--sage); }

/* Mobile parent with toggle */
.mobile-parent {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--linen);
}
.mobile-parent > a {
  flex: 1;
  border-bottom: none !important;
}
.mobile-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--sage);
  padding: 0.7rem 0.5rem;
  cursor: pointer;
  transition: transform 0.25s;
  line-height: 1;
}
.mobile-parent.open .mobile-toggle {
  transform: rotate(90deg);
}

/* Submenu */
.mobile-sub {
  display: none;
  padding-left: 1.2rem;
  padding-bottom: 0.5rem;
  width: 100%;
}
.mobile-parent.open .mobile-sub {
  display: block;
}
.mobile-sub-link {
  font-family: 'Jost', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: var(--mid) !important;
  padding: 0.5rem 0 !important;
  border-bottom: none !important;
}
.mobile-sub-link:hover { color: var(--pine) !important; }

/* CTA link at bottom */
.mobile-cta {
  color: var(--pine);
  font-style: italic;
  margin-top: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  text-decoration: none;
  padding: 0.7rem 0;
  display: block;
}

/* ================================================
   BLOG / ARCHIVE
   ================================================ */
.blog-section {
  padding: 5rem 0;
  padding-top: calc(68px + 3rem);
  background: var(--paper);
  min-height: 80vh;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--linen);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 12px 36px rgba(43,68,40,0.1);
  transform: translateY(-3px);
}
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, #c8d9b8 0%, #7a9e6e 50%, #3d6038 100%);
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-body {
  padding: 1.5rem;
  flex: 1;
}
.blog-card-body h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--pine);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.blog-card-body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}
.blog-card-meta {
  padding: 0.8rem 1.5rem;
  border-top: 1px solid var(--linen);
  font-size: 0.72rem;
  color: var(--muted);
  display: flex;
  gap: 1rem;
}

/* Single Post */
.single-post-section {
  padding-top: calc(68px + 3rem);
  padding-bottom: 4rem;
  background: var(--paper);
  min-height: 80vh;
}
.single-post-header {
  max-width: 800px;
  margin: 0 auto 2rem;
}
.single-post-header h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--pine);
  margin-bottom: 1rem;
}
.single-post-meta {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.single-post-featured {
  max-width: 1000px;
  margin: 0 auto 3rem;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--linen);
}
.single-post-featured img {
  width: 100%;
  height: auto;
  display: block;
}
.single-post-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border: 1px solid var(--linen);
}
.single-post-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 1.5rem;
}
.single-post-content h2 {
  font-size: 1.8rem;
  color: var(--pine);
  margin: 2rem 0 1rem;
}
.single-post-content h3 {
  font-size: 1.4rem;
  color: var(--pine);
  margin: 1.5rem 0 0.8rem;
}
.single-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 2px;
  margin: 1.5rem 0;
}
.single-post-content blockquote {
  border-left: 3px solid var(--sage);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--paper);
  font-style: italic;
  color: var(--mid);
}
.single-post-content ul, .single-post-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--mid);
}
.single-post-content li { margin-bottom: 0.5rem; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.8rem;
  background: var(--white);
  border: 1px solid var(--linen);
  color: var(--mid);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.pagination a:hover {
  background: var(--pine);
  color: var(--cream);
  border-color: var(--pine);
}
.pagination .current {
  background: var(--pine);
  color: var(--cream);
  border-color: var(--pine);
}

/* Page template */
.page-header-section {
  padding-top: calc(68px + 3rem);
  padding-bottom: 3rem;
  background: var(--cream);
  border-bottom: 1px solid var(--linen);
}
.page-header-section h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--pine);
}
.page-content-section {
  padding: 3rem 0 5rem;
  background: var(--white);
}
.page-content-section .entry-content {
  max-width: 900px;
}
.page-content-section .entry-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 1.5rem;
}
.page-content-section .entry-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 320px; display: block; position: relative; }
  .hero-right-inner { position: absolute; inset: 0; }
  .hero-badge { display: none; }
  .nature-inner { grid-template-columns: 1fr; gap: 3rem; }
  .nature-visual { height: 320px; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-menu { display: none; }
  .burger { display: flex; }
  .nav-btn { display: none; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .hero-left { padding: 3rem 0; }
  .features-grid { grid-template-columns: 1fr; }
  .news-layout { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; }
  .event-row { grid-template-columns: 60px 1fr auto; gap: 1rem; padding: 1.2rem 1rem; }
  .events-ics-bar { flex-direction: column; gap: 0.5rem; }
  .ics-hint { font-size: 0.58rem; line-height: 1.4; }
  .blog-grid { grid-template-columns: 1fr; }
  .single-post-content { padding: 1.5rem; }
  .nature-facts { grid-template-columns: 1fr; }
}

/* ================================================
   PERSONEN / GREMIEN
   ================================================ */
.person-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}
.person-card {
  background: var(--white);
  border: 1px solid var(--linen);
  padding: 1.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: box-shadow 0.2s, background 0.2s;
}
.person-card:hover {
  background: var(--cream);
  box-shadow: 0 4px 16px rgba(43,68,40,0.07);
}
.person-card-photo {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--paper);
}
.person-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.person-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fog);
}
.person-card-placeholder svg {
  width: 32px;
  height: 32px;
}
.person-card-info {
  flex: 1;
  min-width: 0;
}
.person-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--pine);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.person-card-position {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.person-card-detail {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.person-card-detail a {
  color: var(--sage);
  text-decoration: none;
  transition: color 0.18s;
}
.person-card-detail a:hover {
  color: var(--pine);
}
.person-card-detail strong {
  color: var(--mid);
  font-weight: 500;
}
.gremium-section .label {
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

@media (max-width: 700px) {
  .person-grid { grid-template-columns: 1fr; }
  .person-card-photo { width: 48px; height: 48px; }
}

/* ================================================
   AUFNAHMEFORMULAR
   ================================================ */
.kjs-form {
  max-width: 800px;
}
.kjs-fieldset {
  border: 1px solid var(--linen);
  padding: 1.8rem 2rem;
  margin-bottom: 1.5rem;
  background: var(--white);
}
.kjs-fieldset legend {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--pine);
  padding: 0 0.5rem;
}
.kjs-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.kjs-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.kjs-field input,
.kjs-field select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--linen);
  background: var(--paper);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  border-radius: 2px;
  transition: border-color 0.2s;
}
.kjs-field input:focus {
  outline: none;
  border-color: var(--sage);
}
.kjs-field-span {
  grid-column: 1 / -1;
}
.kjs-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.kjs-radio-group > label {
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.kjs-radio-group input[type="radio"] {
  accent-color: var(--pine);
}
.kjs-conditional {
  display: none;
  padding-left: 1.8rem;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}
.kjs-conditional.active {
  display: block;
}
.kjs-conditional label {
  font-size: 0.82rem;
  color: var(--mid);
}
.kjs-conditional input {
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--linen);
  background: var(--paper);
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  margin-top: 0.2rem;
  width: 100%;
  max-width: 300px;
  border-radius: 2px;
}
.kjs-checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.kjs-checkbox-row label {
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.kjs-checkbox-row input[type="checkbox"],
.kjs-toggle-sepa input[type="checkbox"],
.kjs-checkbox-legal input[type="checkbox"] {
  accent-color: var(--pine);
}
.kjs-toggle-sepa {
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.kjs-checkbox-legal {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
}
.kjs-checkbox-legal span {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.6;
}
.kjs-checkbox-legal input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.kjs-form-success {
  text-align: center;
  padding: 4rem 2rem;
}
.kjs-form-success h2 {
  font-size: 2rem;
  color: var(--pine);
  margin-bottom: 1rem;
}
.kjs-form-success p {
  font-size: 1rem;
  color: var(--mid);
}
.kjs-form-errors {
  background: #fdf2f2;
  border: 1px solid #e8c4c4;
  padding: 1rem 1.4rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.kjs-form-errors p {
  font-size: 0.85rem;
  color: var(--red);
  margin-bottom: 0.3rem;
}
.kjs-form-errors p:last-child { margin-bottom: 0; }

@media (max-width: 700px) {
  .kjs-form-grid { grid-template-columns: 1fr; }
  .kjs-fieldset { padding: 1.2rem 1rem; }
  .kjs-checkbox-row { flex-direction: column; gap: 0.8rem; }
}

/* WordPress specific */
.wp-block-image img { max-width: 100%; height: auto; }
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin: 1.5rem auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.82rem; color: var(--muted); font-style: italic; padding: 0.5rem 0; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
}
