/* ==========================================================
   KIRCHWEIH · premium festival page
   Palette: Benjamin Moore
   --essex        #1F2D27  deep evergreen
   --chantilly    #F2F1EB  warm cream
   --chantilly-pure #F7F6F1  pure cream
   --stone-hearth #C2B5A0  warm taupe (Kirchweihpam ribbons)
   --rustic-taupe #7A6957  handcraft wood
   --rustic-taupe-light #A8957F  worn linen
   ========================================================== */

/* ==========================================================
   1. HERO · Ken Burns + dim overlay + cinematic title
   ========================================================== */
.kw-hero {
  position: relative;
  min-height: 88vh;
  max-height: 920px;
  display: flex; align-items: flex-end;
  color: var(--chantilly-pure);
  overflow: hidden;
}
.kw-hero-photo {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(15,23,18,0.30) 0%, rgba(15,23,18,0.18) 45%, rgba(15,23,18,0.82) 100%),
    url('../assets/img/kirchweih/kirchweih3.jpg?v=2026-06-15');
  background-size: cover;
  background-position: center;
  animation: kwKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kwKenBurns {
  0%   { transform: scale(1.0)  translate(0,    0);  }
  100% { transform: scale(1.07) translate(-1.5%, -1%); }
}

/* Quote standalone section · for verbatim testimony */
.kw-quote-section {
  background: var(--chantilly);
  padding: clamp(80px, 12vh, 130px) 32px;
}
.kw-quote-section-inner {
  max-width: 880px;
  margin: 0 auto;
}
.kw-quote-section .kw-story-quote {
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
}
.kw-hero-content {
  position: relative; z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px clamp(60px, 10vh, 120px);
  width: 100%;
}
.kw-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 28px;
  opacity: 0.92;
}
.kw-hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--rustic-taupe-light);
}
.kw-hero-title {
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  max-width: 22ch;
}
.kw-hero-title em {
  font-style: normal;
  font-weight: 500;
  color: var(--rustic-taupe-light);
}
.kw-hero-meta {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
}
.kw-hero-meta-divider {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--rustic-taupe-light);
  border-radius: 50%;
}

/* ==========================================================
   2. INTRO · lead paragraphs on cream
   ========================================================== */
.kw-intro {
  background: var(--chantilly);
  padding: clamp(80px, 12vh, 130px) 32px;
}
.kw-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.kw-intro p {
  font-size: clamp(1.06rem, 1.45vw, 1.22rem);
  line-height: 1.78;
  color: var(--essex);
  margin: 0 0 22px;
  font-weight: 300;
}
.kw-intro p:last-child { margin-bottom: 0; }
.kw-intro p strong {
  font-weight: 500;
  color: var(--rustic-taupe);
}

/* ==========================================================
   3. STATS · four numerical anchors
   ========================================================== */
.kw-stats {
  background: var(--chantilly-pure);
  padding: 56px 32px;
  border-top: 1px solid rgba(122, 105, 87, 0.16);
  border-bottom: 1px solid rgba(122, 105, 87, 0.16);
}
.kw-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.kw-stat strong {
  display: block;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 300;
  color: var(--essex);
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.kw-stat span {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rustic-taupe);
  font-weight: 500;
}

/* ==========================================================
   4. STORY · quote + body, side-by-side on desktop
   ========================================================== */
.kw-story {
  background: var(--chantilly);
  padding: clamp(80px, 12vh, 130px) 32px;
}
.kw-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.kw-story-text .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rustic-taupe);
  font-weight: 500;
  margin-bottom: 18px;
}
.kw-story-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--essex);
  margin: 0 0 24px;
}
.kw-story-text h2 em {
  font-style: normal;
  font-weight: 500;
  color: var(--rustic-taupe);
}
.kw-story-text p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--essex);
  opacity: 0.88;
  margin: 0 0 16px;
}
.kw-story-quote {
  position: relative;
  padding: 40px 36px;
  background: var(--chantilly-pure);
  border-left: 3px solid var(--stone-hearth);
  font-family: "Helvetica Neue", "HelveticaNeue", "Helvetica Neue LT", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--essex);
  opacity: 0.92;
}
.kw-story-quote::before {
  content: '\201C';
  position: absolute;
  top: 4px; left: 14px;
  font-size: 4rem;
  font-family: "Helvetica Neue", "HelveticaNeue", "Helvetica Neue LT", Helvetica, Arial, sans-serif;
  color: var(--stone-hearth);
  line-height: 1;
  opacity: 0.45;
}
.kw-story-quote cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-family: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rustic-taupe);
  font-weight: 500;
}

/* ==========================================================
   5. TIMELINE · the 3 days, vertical narrative
   ========================================================== */
.kw-timeline {
  background: var(--chantilly-pure);
  padding: clamp(80px, 12vh, 130px) 32px;
}
.kw-timeline-inner {
  max-width: 980px;
  margin: 0 auto;
}
.kw-timeline-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.kw-timeline-header .eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rustic-taupe);
  font-weight: 500;
  margin-bottom: 20px;
}
.kw-timeline-header h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--essex);
  margin: 0 0 16px;
}
.kw-timeline-header h2 em {
  font-style: normal;
  font-weight: 500;
  color: var(--rustic-taupe);
}
.kw-timeline-header p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--essex);
  opacity: 0.78;
  margin: 0;
}
.kw-timeline-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 48px;
}
.kw-timeline-list::before {
  content: '';
  position: absolute;
  left: 14px; top: 12px; bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--stone-hearth) 8%, var(--stone-hearth) 92%, transparent 100%);
}
.kw-timeline-step {
  position: relative;
  padding: 0 0 44px;
}
.kw-timeline-step:last-child { padding-bottom: 0; }
.kw-timeline-step::before {
  content: '';
  position: absolute;
  left: -41px; top: 14px;
  width: 14px; height: 14px;
  background: var(--chantilly-pure);
  border: 2px solid var(--stone-hearth);
  transform: rotate(45deg);
}
.kw-timeline-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--essex);
  color: var(--stone-hearth);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}
.kw-timeline-step h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.36rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--essex);
  margin: 0 0 10px;
}
.kw-timeline-step p {
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--essex);
  opacity: 0.82;
  margin: 0;
}

/* ==========================================================
   6. KIRCHWEIHPAM · the central tree element, hero-style
   ========================================================== */
.kw-baum {
  position: relative;
  background: var(--essex);
  color: var(--chantilly-pure);
  padding: clamp(100px, 14vh, 160px) 32px;
  overflow: hidden;
  text-align: center;
}
/* Decorative trees · Stone Hearth silhouettes */
.kw-baum::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 130px;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 140' preserveAspectRatio='xMidYMax slice'%3E%3Cg fill='%23C2B5A0'%3E%3Cpolygon points='70,50 52,82 88,82'/%3E%3Cpolygon points='70,68 46,104 94,104'/%3E%3Cpolygon points='70,86 40,128 100,128'/%3E%3Crect x='66' y='128' width='8' height='12'/%3E%3Cpolygon points='200,68 184,92 216,92'/%3E%3Cpolygon points='200,82 180,112 220,112'/%3E%3Cpolygon points='200,98 176,134 224,134'/%3E%3Crect x='197' y='134' width='6' height='6'/%3E%3Cpolygon points='340,32 318,64 362,64'/%3E%3Cpolygon points='340,52 312,90 368,90'/%3E%3Cpolygon points='340,74 306,124 374,124'/%3E%3Crect x='335' y='124' width='10' height='16'/%3E%3Cpolygon points='490,56 472,84 508,84'/%3E%3Cpolygon points='490,72 468,108 512,108'/%3E%3Cpolygon points='490,92 464,134 516,134'/%3E%3Crect x='486' y='134' width='8' height='6'/%3E%3Cpolygon points='620,40 600,72 640,72'/%3E%3Cpolygon points='620,58 596,98 644,98'/%3E%3Cpolygon points='620,80 592,130 648,130'/%3E%3Crect x='616' y='130' width='8' height='10'/%3E%3Cpolygon points='740,70 726,94 754,94'/%3E%3Cpolygon points='740,84 722,114 758,114'/%3E%3Cpolygon points='740,100 718,134 762,134'/%3E%3Crect x='737' y='134' width='6' height='6'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 800px 130px;
  background-position: bottom center;
  opacity: 0.22;
  z-index: 0;
}
.kw-baum-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.kw-baum .eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone-hearth);
  font-weight: 500;
  margin-bottom: 22px;
}
.kw-baum h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: -0.018em;
  margin: 0 0 28px;
}
.kw-baum h2 em {
  font-style: normal;
  font-weight: 500;
  color: var(--stone-hearth);
}
.kw-baum p {
  font-size: 1.05rem;
  line-height: 1.78;
  opacity: 0.9;
  margin: 0 0 18px;
}
.kw-baum-ornaments {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 18px;
  margin-top: 36px;
}
.kw-baum-ornament {
  padding: 14px 22px;
  background: rgba(247, 246, 241, 0.06);
  border: 1px solid rgba(194, 181, 160, 0.35);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  color: var(--chantilly-pure);
}
.kw-baum-ornament strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--stone-hearth);
  margin-bottom: 4px;
}

/* ==========================================================
   7. VIDEO · 2 thumbs with premium lightbox trigger
   ========================================================== */
.kw-videos {
  background: var(--chantilly-pure);
  padding: clamp(80px, 12vh, 130px) 32px;
}
.kw-videos-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.kw-videos-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}
.kw-videos-header .eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rustic-taupe);
  font-weight: 500;
  margin-bottom: 18px;
}
.kw-videos-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--essex);
  margin: 0 0 14px;
}
.kw-videos-header h2 em {
  font-style: normal;
  font-weight: 500;
  color: var(--rustic-taupe);
}
.kw-videos-header p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--essex);
  opacity: 0.78;
  margin: 0;
}
.kw-videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.kw-video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--essex);
  cursor: pointer;
  border: 0;
  padding: 0;
  overflow: hidden;
  display: block;
  width: 100%;
  font-family: inherit;
  color: inherit;
  text-align: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.kw-video-card::before {
  content: '';
  position: absolute; inset: 0;
  background-color: var(--essex);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  z-index: 0;
}
.kw-video-card-1::before { background-image: url('../assets/img/kirchweih/kirchweih1.jpg?v=2026-06-15'); }
.kw-video-card-2::before { background-image: url('../assets/img/kirchweih/kirchweih2.jpg?v=2026-06-15'); }
.kw-video-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,18,0.0) 50%, rgba(15,23,18,0.78) 100%);
  z-index: 1;
  transition: background 0.5s ease;
}
.kw-video-card:hover::before {
  transform: scale(1.08);
  filter: brightness(1.1) saturate(1.05);
}
.kw-video-card:hover::after {
  background: linear-gradient(180deg, rgba(15,23,18,0.10) 0%, rgba(15,23,18,0.75) 100%);
}
.kw-video-card:hover {
  transform: translateY(-4px);
}
.kw-video-card:hover .kw-video-play {
  transform: translate(-50%, -50%) scale(1.12);
  background: rgba(247, 246, 241, 0.95);
  box-shadow: 0 0 0 16px rgba(194, 181, 160, 0.18), 0 0 0 32px rgba(194, 181, 160, 0.08);
}
.kw-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 78px; height: 78px;
  border-radius: 50%;
  background: rgba(247, 246, 241, 0.92);
  display: grid; place-items: center;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 0 0 rgba(194, 181, 160, 0.0), 0 6px 30px rgba(0,0,0,0.35);
}
.kw-video-play svg {
  width: 28px; height: 28px;
  fill: var(--essex);
  margin-left: 4px;
}
.kw-video-label {
  position: absolute;
  left: 24px; bottom: 22px;
  z-index: 2;
  color: var(--chantilly-pure);
}
.kw-video-label .tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--stone-hearth);
  margin-bottom: 6px;
}
.kw-video-label .name {
  display: block;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ==========================================================
   8. VIDEO LIGHTBOX MODAL · the WOW effect
   ========================================================== */
.kw-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.kw-modal[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}
.kw-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 18, 0.65);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  cursor: pointer;
}
.kw-modal-stage {
  position: relative;
  width: min(92vw, 1280px);
  aspect-ratio: 16 / 9;
  max-height: 85vh;
  background: #000;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(194, 181, 160, 0.25),
    0 0 80px rgba(194, 181, 160, 0.08);
  transform: scale(0.88) translateY(28px);
  opacity: 0;
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s ease;
}
.kw-modal[aria-hidden="false"] .kw-modal-stage {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.kw-modal-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}
.kw-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(15, 23, 18, 0.65);
  border: 1px solid rgba(194, 181, 160, 0.45);
  color: var(--chantilly-pure);
  cursor: pointer;
  display: grid; place-items: center;
  z-index: 3;
  transition: background 0.25s ease, transform 0.25s ease;
  opacity: 0;
}
.kw-modal[aria-hidden="false"] .kw-modal-close {
  opacity: 1;
  transition: opacity 0.4s ease 0.25s, background 0.25s ease, transform 0.25s ease;
}
.kw-modal-close:hover {
  background: rgba(194, 181, 160, 0.85);
  color: var(--essex);
  transform: rotate(90deg);
}
.kw-modal-close svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

/* ==========================================================
   9. GALLERY · 3 photos, responsive
   ========================================================== */
.kw-gallery {
  background: var(--chantilly);
  padding: clamp(80px, 12vh, 130px) 32px;
}
.kw-gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.kw-gallery-header {
  text-align: center;
  margin-bottom: 50px;
}
.kw-gallery-header .eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rustic-taupe);
  font-weight: 500;
  margin-bottom: 16px;
}
.kw-gallery-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--essex);
  margin: 0;
}
.kw-gallery-header h2 em {
  font-style: normal;
  font-weight: 500;
  color: var(--rustic-taupe);
}
.kw-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.kw-gallery-cell {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: block;
}
.kw-gallery-cell::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.kw-gallery-cell-1::before { background-image: url('../assets/img/kirchweih/kirchweih1.jpg?v=2026-06-15'); }
.kw-gallery-cell-2::before { background-image: url('../assets/img/kirchweih/kirchweih2.jpg?v=2026-06-15'); }
.kw-gallery-cell-3::before { background-image: url('../assets/img/kirchweih/kirchweih3.jpg?v=2026-06-15'); }
.kw-gallery-cell:hover::before {
  transform: scale(1.06);
}

/* ==========================================================
   10. CLOSING · impact statement
   ========================================================== */
.kw-closing {
  background: var(--chantilly-pure);
  padding: clamp(80px, 12vh, 130px) 32px;
  text-align: center;
}
.kw-closing-inner {
  max-width: 720px;
  margin: 0 auto;
}
.kw-closing .eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rustic-taupe);
  font-weight: 500;
  margin-bottom: 22px;
}
.kw-closing h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: -0.018em;
  color: var(--essex);
  margin: 0 0 28px;
}
.kw-closing h2 em {
  font-style: normal;
  font-weight: 500;
  color: var(--rustic-taupe);
}
.kw-closing p {
  font-size: 1.04rem;
  line-height: 1.78;
  color: var(--essex);
  opacity: 0.86;
  margin: 0;
}

/* ==========================================================
   11. DIVIDERS (between sections, ornamental diamond)
   ========================================================== */
.kw-divider {
  position: relative;
  height: 80px;
  border: 0;
  margin: 0;
  background: var(--chantilly);
}
.kw-divider::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px; height: 6px;
  background: var(--stone-hearth);
}
.kw-divider::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: var(--stone-hearth);
  opacity: 0.35;
}
.kw-divider-essex { background: var(--essex); }
.kw-divider-essex::after { background: var(--stone-hearth); opacity: 0.25; }
.kw-divider-pure { background: var(--chantilly-pure); }

/* ==========================================================
   12. ARTICLE NAV + BACK
   ========================================================== */
.kw-page-nav { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.kw-page-back { max-width: 1080px; margin: 0 auto; padding: 0 32px 80px; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 980px) {
  .kw-story-inner { grid-template-columns: 1fr; gap: 36px; }
  .kw-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .kw-videos-grid { grid-template-columns: 1fr; }
  .kw-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .kw-hero { min-height: 78vh; padding: 0 22px 80px; }
  .kw-hero-title { font-size: clamp(2rem, 8.5vw, 3rem); }
  .kw-intro, .kw-story, .kw-timeline, .kw-baum, .kw-videos, .kw-gallery, .kw-closing { padding-left: 22px; padding-right: 22px; }
  .kw-stats { padding: 44px 22px; }
  .kw-stats-inner { gap: 18px; }
  .kw-timeline-list { padding-left: 36px; }
  .kw-timeline-list::before { left: 10px; }
  .kw-timeline-step::before { left: -33px; width: 12px; height: 12px; }
  .kw-gallery-grid { grid-template-columns: 1fr; }
  .kw-video-play { width: 62px; height: 62px; }
  .kw-video-play svg { width: 22px; height: 22px; }
  .kw-modal-close { width: 44px; height: 44px; top: 14px; right: 14px; }
}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  .kw-hero-photo { animation: none; }
  .kw-video-card::before,
  .kw-video-card,
  .kw-gallery-cell::before,
  .kw-modal,
  .kw-modal-stage,
  .kw-modal-close,
  .kw-video-play { transition: none; }
}
