/* ===========================
   CSS Custom Properties
   =========================== */
:root {
  --color-forest: #2d5a27;
  --color-forest-dark: #1a3a16;
  --color-moss: #4a7c3f;
  --color-sage: #7aad6e;
  --color-sage-light: #a8d4a0;
  --color-cream: #f7f4ee;
  --color-warm-white: #faf9f6;
  --color-sand: #e8e0d0;
  --color-clay: #c4956a;
  --color-clay-light: #e8c9a8;
  --color-text-dark: #1e2820;
  --color-text-body: #3a4a3c;
  --color-text-muted: #6b7a6d;
  --color-text-light: #f0ede8;
  --color-accent-gradient: linear-gradient(135deg, #4a7c3f 0%, #7aad6e 50%, #c4956a 100%);
  --color-accent-gradient-2: linear-gradient(135deg, #2d5a27 0%, #4a7c3f 100%);
  --shadow-xs: 0 1px 3px rgba(30,40,32,0.08);
  --shadow-sm: 0 2px 8px rgba(30,40,32,0.10), 0 1px 3px rgba(30,40,32,0.06);
  --shadow-md: 0 4px 16px rgba(30,40,32,0.12), 0 2px 6px rgba(30,40,32,0.08);
  --shadow-lg: 0 8px 32px rgba(30,40,32,0.14), 0 3px 10px rgba(30,40,32,0.08);
  --shadow-xl: 0 16px 48px rgba(30,40,32,0.16), 0 6px 16px rgba(30,40,32,0.10);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --nav-height: 72px;
  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;
  --transition-slow: 0.45s ease;
}

/* ===========================
   Reset & Base
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body.canvas {
  font-family: 'Rubik', sans-serif;
  background-color: var(--color-warm-white);
  color: var(--color-text-body);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===========================
   Navigation
   =========================== */
.nav-glass {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(74, 124, 63, 0.12);
  box-shadow: none;
  transition: box-shadow var(--transition-base);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-img { width: 36px; height: 36px; }
.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-forest-dark);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--color-text-body);
  border-radius: var(--radius-full);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-link:hover { color: var(--color-forest); background: rgba(74,124,63,0.08); }
.nav-link.active { color: var(--color-forest); background: rgba(74,124,63,0.12); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.nav-burger:hover { background: rgba(74,124,63,0.1); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-forest-dark);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* ===========================
   Mobile Drawer (Split Screen)
   =========================== */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.drawer.is-open {
  opacity: 1;
  pointer-events: all;
}
.drawer-left {
  width: 55%;
  background: var(--color-forest-dark);
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
}
.drawer.is-open .drawer-left { transform: translateX(0); }
.drawer-right {
  width: 45%;
  position: relative;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}
.drawer.is-open .drawer-right { transform: translateX(0); }
.drawer-img { width: 100%; height: 100%; object-fit: cover; }
.drawer-overlay-text {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.drawer-overlay-text span {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.25rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.drawer-close:hover { color: white; background: rgba(255,255,255,0.1); }
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.drawer-links li a {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  display: block;
  padding: 0.4rem 0;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  letter-spacing: -0.02em;
}
.drawer-links li a:hover { color: var(--color-sage-light); padding-left: 0.5rem; }
.drawer-contact {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
}
.drawer-contact p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.8;
}

/* ===========================
   Buttons
   =========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  background: var(--color-accent-gradient-2);
  color: white;
  font-family: 'Rubik', sans-serif;
  font-size: 0.925rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm), 0 0 0 0 rgba(74,124,63,0);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(74,124,63,0.15);
  filter: brightness(1.08);
  color: white;
}
.btn-primary.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn-primary.btn-full { width: 100%; justify-content: center; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  background: transparent;
  color: var(--color-forest);
  font-family: 'Rubik', sans-serif;
  font-size: 0.925rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-forest);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.btn-ghost:hover { background: var(--color-forest); color: white; transform: translateY(-2px); }
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  background: transparent;
  color: white;
  font-family: 'Rubik', sans-serif;
  font-size: 0.925rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.6);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.15); border-color: white; transform: translateY(-2px); color: white; }

/* ===========================
   Typography Helpers
   =========================== */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-moss);
  background: rgba(74,124,63,0.1);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.section-tag.light {
  color: var(--color-sage-light);
  background: rgba(255,255,255,0.15);
}
.section-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* ===========================
   Hero / Stage
   =========================== */
.stage {
  min-height: 100vh;
  background: var(--color-cream);
  padding-top: var(--nav-height);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.stage::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(122,173,110,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.stage-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.stage-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-moss);
  margin-bottom: 1.25rem;
  display: block;
}
.stage-headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.stage-headline em {
  font-style: normal;
  background: var(--color-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stage-sub {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.stage-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.stage-curtain {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--color-warm-white));
  pointer-events: none;
}


.stage-bento { position: relative; }
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.bento-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bento-large {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 380px;
}
.bento-large img { width: 100%; height: 100%; object-fit: cover; }
.bento-medium {
  grid-column: 2;
  grid-row: 1;
  height: 180px;
}
.bento-medium img { width: 100%; height: 100%; object-fit: cover; }
.bento-accent {
  grid-column: 2;
  grid-row: 2;
  background: var(--color-accent-gradient-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  gap: 0.5rem;
  height: 180px;
}
.bento-accent .bento-icon { font-size: 2rem; color: var(--color-sage-light); }
.bento-accent p { color: white; font-weight: 600; font-size: 0.95rem; text-align: center; }
.bento-info {
  background: var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-body);
}
.bento-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(30,40,32,0.75);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

/* ===========================
   Section Base
   =========================== */
.canvas-section { padding: 6rem 2rem; }

/* ===========================
   Intro Section
   =========================== */
.intro-section { background: var(--color-warm-white); }
.intro-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-visual { position: relative; }
.intro-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.intro-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-clay);
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.badge-num { font-size: 1.5rem; font-weight: 700; line-height: 1; }
.badge-text { font-size: 0.7rem; font-weight: 500; opacity: 0.9; }
.intro-content { padding-left: 1rem; }
.intro-text {
  font-size: 1.05rem;
  color: var(--color-text-body);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.tag-pill {
  padding: 0.4rem 1rem;
  background: rgba(74,124,63,0.1);
  color: var(--color-forest);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 500;
  border: 1px solid rgba(74,124,63,0.2);
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.tag-pill:hover { background: rgba(74,124,63,0.18); transform: translateY(-1px); }

/* ===========================
   Sticky Section
   =========================== */
.sticky-section {
  background: var(--color-cream);
  overflow: hidden;
}
.sticky-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.sticky-visual {
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  overflow: hidden;
}
.sticky-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sticky-gradient-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--color-cream), transparent);
}
.sticky-content {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.sticky-item { position: relative; padding-left: 1.5rem; }
.sticky-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 3px;
  height: calc(100% - 0.5rem);
  background: var(--color-accent-gradient);
  border-radius: 2px;
}
.sticky-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-moss);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}
.sticky-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.sticky-item p { color: var(--color-text-muted); line-height: 1.7; }

/* ===========================
   Checklist Section
   =========================== */
.checklist-section {
  background: linear-gradient(160deg, var(--color-warm-white) 0%, var(--color-cream) 100%);
}
.checklist-wrap { max-width: 1280px; margin: 0 auto; }
.checklist-header {
  max-width: 600px;
  margin-bottom: 4rem;
}
.checklist-header p {
  margin-top: 1rem;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.check-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(74,124,63,0.08);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.check-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.check-icon {
  width: 32px;
  height: 32px;
  background: var(--color-accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.check-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  margin-bottom: 0.35rem;
}
.check-item p { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.55; }

/* ===========================
   Gallery Section
   =========================== */
.gallery-section {
  background: var(--color-forest-dark);
  padding: 6rem 2rem;
}
.gallery-header {
  max-width: 1280px;
  margin: 0 auto 3rem;
}
.gallery-header .section-tag { color: var(--color-sage-light); background: rgba(122,173,110,0.15); }
.gallery-header .section-heading { color: white; }
.gallery.shelf {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1rem;
  height: 500px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: block;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-hover {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(30,40,32,0.85) 0%, transparent 100%);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}
.gallery-item:hover .gallery-hover { opacity: 1; transform: translateY(0); }
.gallery-tall { height: 100%; }
.gallery-col { display: flex; flex-direction: column; gap: 1rem; }
.gallery-wide { flex: 1; }

/* ===========================
   Resources Section
   =========================== */
.resources-section {
  background: var(--color-warm-white);
}
.resources-wrap { max-width: 1280px; margin: 0 auto; }
.resources-header { max-width: 600px; margin-bottom: 3.5rem; }
.resources-header p { margin-top: 1rem; color: var(--color-text-muted); font-size: 1.05rem; }
.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.resource-card {
  padding: 2rem 1.5rem;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(74,124,63,0.1);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.resource-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.resource-card.spotlight {
  background: var(--color-forest-dark);
  border-color: transparent;
}
.resource-card.spotlight h3 { color: white; }
.resource-card.spotlight p { color: rgba(255,255,255,0.7); }
.resource-card.spotlight .resource-link { color: var(--color-sage-light); }
.resource-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(74,124,63,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.resource-card.spotlight .resource-icon-wrap { background: rgba(122,173,110,0.2); }
.resource-icon { font-size: 1.25rem; color: var(--color-moss); }
.resource-card.spotlight .resource-icon { color: var(--color-sage-light); }
.resource-card h3 { font-size: 1rem; font-weight: 700; color: var(--color-text-dark); }
.resource-card p { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.6; flex: 1; }
.resource-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-moss);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition-fast), color var(--transition-fast);
  margin-top: auto;
}
.resource-link:hover { gap: 0.7rem; color: var(--color-forest); }

/* ===========================
   CTA Section
   =========================== */
.cta-section {
  background: var(--color-forest);
  padding: 0;
  overflow: hidden;
}
.cta-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 480px;
}
.cta-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.cta-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.cta-content p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 500px; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-visual { position: relative; overflow: hidden; }
.cta-img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================
   Page Hero (Inner Pages)
   =========================== */
.page-hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}
.page-hero-green { background: linear-gradient(135deg, var(--color-cream) 0%, rgba(122,173,110,0.1) 100%); }
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: end;
}
.page-hero-heading {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.page-hero-accent {
  width: 100%;
  height: 200px;
  background: var(--color-accent-gradient);
  border-radius: var(--radius-xl);
  opacity: 0.15;
}

/* ===========================
   Team Section
   =========================== */
.team-intro-section { background: var(--color-warm-white); }
.team-intro-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.team-intro-text .section-heading { margin-bottom: 1.5rem; }
.team-intro-text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.team-intro-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.team-section { background: var(--color-cream); }
.team-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.team-card-alt { background: var(--color-cream); }
.team-card-img-wrap { position: relative; height: 280px; overflow: hidden; }
.team-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.team-card:hover .team-card-img-wrap img { transform: scale(1.04); }
.team-card-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--color-accent-gradient);
}
.team-card-content { padding: 1.75rem; }
.team-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.35rem;
}
.team-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-moss);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 1rem;
}
.team-card-content p { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.team-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.team-tags span {
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  background: rgba(74,124,63,0.08);
  color: var(--color-forest);
  border-radius: var(--radius-full);
  font-weight: 500;
}


.approach-section { background: var(--color-warm-white); }
.approach-wrap { max-width: 1280px; margin: 0 auto; }
.approach-header { margin-bottom: 3.5rem; }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.approach-item {
  padding: 2rem;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.approach-item:hover { border-color: var(--color-sage); box-shadow: var(--shadow-md); }
.approach-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(74,124,63,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}
.approach-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--color-text-dark); margin-bottom: 0.75rem; }
.approach-item p { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.65; }

/* ===========================
   Online Angebote Page
   =========================== */
.formats-section { background: var(--color-warm-white); }
.formats-wrap { max-width: 1280px; margin: 0 auto; }
.formats-intro { max-width: 600px; margin-bottom: 3.5rem; }
.formats-intro p { margin-top: 1rem; color: var(--color-text-muted); font-size: 1.05rem; }
.formats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.format-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(74,124,63,0.12);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.format-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.format-video { background: white; }
.format-live { background: var(--color-cream); }
.format-begleitung { background: linear-gradient(135deg, var(--color-forest-dark) 0%, var(--color-moss) 100%); }
.format-begleitung h3 { color: white; }
.format-begleitung p { color: rgba(255,255,255,0.75); }
.format-begleitung .format-list li { color: rgba(255,255,255,0.75); }
.format-begleitung .format-icon-wrap i { color: var(--color-sage-light); }
.format-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(74,124,63,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.format-icon-wrap i { font-size: 1.5rem; color: var(--color-moss); }
.format-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--color-text-dark); margin-bottom: 0.75rem; }
.format-card p { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.format-list { display: flex; flex-direction: column; gap: 0.4rem; }
.format-list li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.format-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-sage);
}


.catalog-section { background: var(--color-cream); }
.catalog-header { max-width: 1280px; margin: 0 auto 3.5rem; }
.catalog-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.catalog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.catalog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.catalog-card.spotlight { background: var(--color-forest-dark); }
.catalog-card.spotlight .catalog-content h3 { color: white; }
.catalog-card.spotlight .catalog-content p { color: rgba(255,255,255,0.7); }
.catalog-card.spotlight .catalog-meta { color: rgba(255,255,255,0.5); }
.catalog-img-wrap { height: 180px; overflow: hidden; }
.catalog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.catalog-card:hover .catalog-img-wrap img { transform: scale(1.04); }
.catalog-content { padding: 1.5rem; }
.catalog-content-only { padding: 2rem 1.5rem; }
.catalog-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-moss);
  margin-bottom: 0.6rem;
}
.catalog-card.spotlight .catalog-tag { color: var(--color-sage-light); }
.catalog-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.catalog-content p { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 1rem; }
.catalog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}
.catalog-meta span { display: flex; align-items: center; gap: 0.35rem; }

/* ===========================
   Contact Page
   =========================== */
.contact-section { background: var(--color-warm-white); }
.contact-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .section-heading { margin-bottom: 2.5rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(74,124,63,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-moss);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-weight: 600; color: var(--color-text-dark); margin-bottom: 0.25rem; font-size: 0.875rem; }
.contact-detail p { font-size: 0.95rem; color: var(--color-text-body); line-height: 1.6; }
.contact-detail a:hover { color: var(--color-forest); }

.accessibility-note {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: rgba(74,124,63,0.06);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-sage);
}
.accessibility-note h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-forest);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.accessibility-note p { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.65; }

.contact-form-wrap { background: var(--color-cream); padding: 2.5rem; border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); }
.form-heading { font-size: 1.75rem; font-weight: 700; color: var(--color-text-dark); margin-bottom: 2rem; letter-spacing: -0.02em; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--color-text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  background: white;
  border: 1.5px solid rgba(74,124,63,0.2);
  border-radius: var(--radius-md);
  font-family: 'Rubik', sans-serif;
  font-size: 0.925rem;
  color: var(--color-text-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-moss);
  box-shadow: 0 0 0 3px rgba(74,124,63,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-privacy { flex-direction: row; align-items: flex-start; gap: 0.75rem; }
.privacy-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}
.privacy-label input[type="checkbox"] { margin-top: 0.15rem; flex-shrink: 0; accent-color: var(--color-moss); width: 16px; height: 16px; }
.privacy-label a { color: var(--color-moss); text-decoration: underline; }
.form-error {
  padding: 0.75rem 1rem;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: #dc2626;
}


.map-section { background: var(--color-cream); padding: 5rem 2rem; }
.map-header { max-width: 1280px; margin: 0 auto 2.5rem; }
.map-header p { margin-top: 0.75rem; color: var(--color-text-muted); max-width: 560px; }
.map-wrap { max-width: 1280px; margin: 0 auto; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ===========================
   Thanks Page
   =========================== */
.thanks-canvas { background: var(--color-cream); }
.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 3rem) 2rem 5rem;
  position: relative;
  min-height: 80vh;
}
.thanks-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(74,124,63,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(196,149,106,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.thanks-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}
.thanks-icon-wrap {
  width: 80px;
  height: 80px;
  background: var(--color-accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.thanks-icon { font-size: 2rem; color: white; }
.thanks-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.thanks-text { color: var(--color-text-muted); line-height: 1.7; margin-bottom: 1rem; font-size: 0.975rem; }
.thanks-sub { color: var(--color-text-muted); font-size: 0.875rem; margin-bottom: 2rem; line-height: 1.65; }
.thanks-sub a { color: var(--color-moss); font-weight: 600; }

/* ===========================
   Legal Pages
   =========================== */
.legal-main {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 6rem;
  min-height: 80vh;
}
.legal-wrap { max-width: 860px; margin: 0 auto; padding: 0 2rem; }
.legal-header { margin-bottom: 3rem; }
.legal-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.legal-date { font-size: 0.875rem; color: var(--color-text-muted); }
.legal-intro {
  font-size: 1.05rem;
  color: var(--color-text-body);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(74,124,63,0.06);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-sage);
}
.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-top: 2.5rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--color-sand);
}
.legal-content p { color: var(--color-text-body); line-height: 1.75; margin-bottom: 1rem; font-size: 0.95rem; }
.legal-content ul { margin: 0.75rem 0 1rem 1.5rem; }
.legal-content ul li { color: var(--color-text-body); font-size: 0.95rem; line-height: 1.7; margin-bottom: 0.4rem; list-style: disc; }
.legal-content a { color: var(--color-moss); text-decoration: underline; }
.legal-content a:hover { color: var(--color-forest); }
.legal-alt .legal-content h2 { border-bottom: none; color: var(--color-forest); }
.legal-cookies .legal-content h2 { font-size: 1.15rem; }
.legal-cookies .legal-content h3 { font-size: 1rem; font-weight: 700; color: var(--color-text-dark); margin: 2rem 0 0.75rem; display: flex; align-items: center; gap: 0.75rem; }


.impressum-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: 0.9rem; }
.impressum-table td { padding: 0.6rem 0.75rem; border-bottom: 1px solid var(--color-sand); vertical-align: top; line-height: 1.6; }
.impressum-table td:first-child { color: var(--color-text-muted); width: 40%; white-space: nowrap; }
.impressum-table td:last-child { color: var(--color-text-body); }
.impressum-table a { color: var(--color-moss); }


.cookie-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: 0.875rem; }
.cookie-table th { background: var(--color-cream); padding: 0.6rem 0.75rem; text-align: left; font-weight: 600; color: var(--color-text-dark); border-bottom: 2px solid var(--color-sand); }
.cookie-table td { padding: 0.6rem 0.75rem; border-bottom: 1px solid var(--color-sand); color: var(--color-text-body); }
.cookie-category-block { margin-bottom: 2.5rem; }
.cookie-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 0.5rem;
}
.cookie-badge.required { background: rgba(74,124,63,0.15); color: var(--color-forest); }
.cookie-badge.functional { background: rgba(196,149,106,0.15); color: #8b5e3c; }
.cookie-badge.analytics { background: rgba(59,130,246,0.12); color: #1d4ed8; }
.cookie-badge.marketing { background: rgba(239,68,68,0.1); color: #dc2626; }

/* ===========================
   Footer
   =========================== */
.site-footer {
  background: var(--color-text-dark);
  color: rgba(240,237,232,0.8);
  position: relative;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo { width: 40px; height: 40px; margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(240,237,232,0.6);
  margin-bottom: 1.25rem;
}
.footer-address { font-size: 0.875rem; color: rgba(240,237,232,0.5); line-height: 1.7; }
.footer-nav h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.4);
  margin-bottom: 1.25rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(240,237,232,0.7);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.footer-nav a:hover { color: var(--color-sage-light); padding-left: 4px; }
.footer-contact p { font-size: 0.9rem; color: rgba(240,237,232,0.7); line-height: 1.8; }
.footer-contact a:hover { color: var(--color-sage-light); }
.footer-hours { font-size: 0.825rem; color: rgba(240,237,232,0.4); margin-top: 0.5rem; }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(240,237,232,0.35); }


.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-accent-gradient-2);
  color: white;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base), box-shadow var(--transition-fast);
  z-index: 500;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

/* ===========================
   Cookie Consent Modal
   =========================== */
.cookie-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(30,40,32,0.55);
  backdrop-filter: blur(4px);
  z-index: 9000;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.cookie-backdrop.visible { opacity: 1; }
#cookieConsent {
  position: fixed;
  inset: 0;
  z-index: 9001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-base);
}
#cookieConsent.visible {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  max-height: 90%;
  overflow-y: auto;
  transition: transform var(--transition-slow);
}
#cookieConsent.visible .cookie-modal { transform: translateY(0); }
.cookie-modal-header { margin-bottom: 1.25rem; }
.cookie-modal-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cookie-modal-header h3 i { color: var(--color-moss); }
.cookie-modal-header p { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.65; }
.cookie-categories { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.cookie-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  gap: 1rem;
}
.cookie-cat-label { flex: 1; }
.cookie-cat-label strong { display: block; font-size: 0.875rem; color: var(--color-text-dark); margin-bottom: 0.15rem; }
.cookie-cat-label span { font-size: 0.775rem; color: var(--color-text-muted); }
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: #d0d7d2;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-fast);
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition-fast);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--color-moss); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.6; cursor: not-allowed; }
.cookie-modal-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.cookie-modal-actions .btn-primary { flex: 1; justify-content: center; }
.cookie-btn-minimal {
  flex: 1;
  padding: 0.8rem 1rem;
  background: var(--color-cream);
  color: var(--color-text-muted);
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-sand);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
  text-align: center;
}
.cookie-btn-minimal:hover { background: var(--color-sand); color: var(--color-text-body); }
.cookie-modal-footer { margin-top: 1rem; text-align: center; }
.cookie-modal-footer a { font-size: 0.775rem; color: var(--color-text-muted); text-decoration: underline; }

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
  .stage-inner { grid-template-columns: 1fr; gap: 3rem; }
  .stage-headline { font-size: clamp(2.8rem, 6vw, 4.5rem); }
  .bento-grid { max-width: 480px; margin: 0 auto; }
  .intro-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .intro-img { height: 350px; }
  .sticky-wrap { grid-template-columns: 1fr; }
  .sticky-visual { position: relative; height: 400px; top: auto; }
  .sticky-content { padding: 3rem 2rem; }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-wrap { grid-template-columns: 1fr; }
  .cta-visual { height: 300px; }
  .cta-content { padding: 3rem 2rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .approach-grid { grid-template-columns: 1fr 1fr; }
  .formats-grid { grid-template-columns: 1fr 1fr; }
  .catalog-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .team-intro-wrap { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .canvas-section { padding: 4rem 1.5rem; }
  .stage-inner { padding: 3rem 1.5rem; }
  .stage-headline { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-large { height: 280px; }
  .bento-medium, .bento-accent, .bento-info { height: 130px; }
  .checklist-grid { grid-template-columns: 1fr; }
  .gallery.shelf { grid-template-columns: 1fr 1fr; height: auto; }
  .gallery-tall { height: 240px; }
  .gallery-col { gap: 1rem; }
  .gallery-wide { height: 180px; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr 1fr; }
  .formats-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-accent { display: none; }
  .drawer-left { width: 60%; }
  .drawer-right { width: 40%; }
  .contact-form-wrap { padding: 1.75rem; }
}

@media (max-width: 480px) {
  :root { --nav-height: 64px; }
  .logo-text { font-size: 1rem; }
  .stage-headline { font-size: clamp(2rem, 9vw, 2.8rem); }
  .stage-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; text-align: center; }
  .stage-actions .btn-ghost { width: 100%; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-medium, .bento-accent, .bento-info { height: auto; min-height: 160px; grid-column: 1; grid-row: auto; }
  .gallery.shelf { grid-template-columns: 1fr; height: auto; }
  .gallery-tall, .gallery-wide { height: 220px; }
  .gallery-col { gap: 1rem; }
  .resources-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-heading { font-size: 1.75rem; }
  .cta-actions { flex-direction: column; }
  .cookie-modal { padding: 1.75rem; }
  .cookie-modal-actions { flex-direction: column; }
  .drawer-left { width: 100%; }
  .drawer-right { display: none; }
  .thanks-card { padding: 2.5rem 1.5rem; }
  .legal-wrap { padding: 0 1rem; }
  .impressum-table td:first-child { white-space: normal; width: auto; }
}