/* =====================================================================
   Urwaldkiez AG — Website
   CI: Waldkiez Styleguide 2025, Primärfarbe getauscht auf Seeblau.
   Schriften: Rubik Dirt (Display, NUR 400 — niemals fett!) + Roboto (Text).
   ===================================================================== */

:root {
  /* --- UWK Primärfarbe: Seeblau (statt Waldkiez-Grün) --- */
  --blau:        #5a7dc4;   /* Primär / Standard-Akzent */
  --blau-tief:   #33518a;   /* Primär dunkel: Hover, Tiefe, dunkle Flächen */
  --blau-soft:   #eaf0fb;   /* sehr helle Tönung für Flächen */

  /* --- Waldkiez-Sekundärfarben (für Wärme & Akzente übernommen) --- */
  --gelb:        #f5e287;
  --orange:      #f4a259;
  --dunkelrot:   #9c4b4e;
  /* Waldkiez-Grün — bewusst nur für Bezüge auf Waldkiez (GmbH/e.V./Immobilien) */
  --wk-gruen:    #a1d90d;
  --wk-gruen-d:  #5e9559;

  /* --- Unbunt --- */
  --schwarz:     #1a1a1a;
  --weiss:       #ffffff;
  --grau-text:   #4a4a4a;
  --grau-line:   #e7e7e7;
  --grau-bg:     #f6f6f4;

  --maxw: 1180px;
  --maxw-narrow: 760px;
  --radius: 14px;
  --shadow: 0 18px 50px -22px rgba(40, 60, 110, .35);
  --shadow-sm: 0 8px 24px -14px rgba(40, 60, 110, .4);

  --ff-display: "Rubik Dirt", system-ui, sans-serif;
  --ff-body: "Roboto", system-ui, -apple-system, sans-serif;

  --header-h: 76px;
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth; scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;           /* horizontalen Überlauf konsequent abschneiden */
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--schwarz);
  background: var(--weiss);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;           /* clip statt hidden: kein eigener Scroll-Kontext */
  overflow-wrap: break-word;  /* lange dt. Wörter brechen statt überzulaufen */
  hyphens: auto;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blau-tief); text-decoration-color: rgba(90,125,196,.4); text-underline-offset: 3px; }
a:hover { color: var(--blau); }
h1, h2, h3 { line-height: 1.12; margin: 0 0 .5em; }

/* Rubik Dirt ist ein Single-Weight-Display-Font — NIE fett setzen (Fake-Bold). */
.section-title, .hero-title, .timeline-year, .block-title,
.brand-wordmark, .faq-heading, .gate-title, .fazit-statement {
  font-family: var(--ff-display);
  font-weight: 400;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: var(--maxw-narrow); }
.narrow { max-width: var(--maxw-narrow); margin-left: auto; margin-right: auto; }

.visually-hidden, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 12px; left: 12px; width: auto; height: auto; clip: auto;
  background: var(--blau-tief); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 1000;
}

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-block; font-family: var(--ff-body); font-weight: 500; font-size: 16px;
  padding: 14px 28px; border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  text-decoration: none; transition: transform .18s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blau); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blau-tief); color: #fff; }
.btn-light { background: #fff; color: var(--blau-tief); box-shadow: 0 10px 30px -10px rgba(0,0,0,.4); }
.btn-light:hover { background: var(--blau-tief); color: #fff; }

/* ----------------------------- Header / Nav ----------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 100;
  background: rgba(255,255,255,0); transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { background: rgba(255,255,255,.96); box-shadow: 0 2px 20px -8px rgba(0,0,0,.18); backdrop-filter: blur(6px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.brand { display: flex; align-items: baseline; gap: 8px; text-decoration: none; color: var(--schwarz); }
.brand-wordmark {
  display: inline-flex; align-items: center; font-family: var(--ff-display); font-weight: 400;
  font-size: 26px; letter-spacing: .5px; line-height: 1; color: var(--schwarz);
}
.brand-tent { height: .92em; width: auto; margin: 0 .01em; transform: translateY(.04em); }
.brand-sub { font-family: var(--ff-body); font-weight: 500; font-size: 15px; color: var(--blau); letter-spacing: 2px; }

/* helle Variante über dem Hero, solange nicht gescrollt */
.site-header:not(.scrolled) .brand-wordmark { color: #fff; }
.site-header:not(.scrolled) .nav-list a { color: #fff; }
.site-header:not(.scrolled) .nav-toggle span { background: #fff; }

.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-list a {
  font-weight: 500; font-size: 15.5px; text-decoration: none; color: var(--schwarz);
  letter-spacing: .3px; padding: 6px 0; position: relative; transition: color .2s ease;
}
.nav-list a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--blau);
  transition: width .25s ease;
}
.nav-list a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--blau); color: #fff !important; padding: 9px 20px !important; border-radius: 999px;
  transition: background .2s ease, transform .18s ease;
}
.nav-cta:hover { background: var(--blau-tief); transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--schwarz); border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }

/* ----------------------------- Hero / Karussell ----------------------------- */
.hero { position: relative; height: 100svh; min-height: 560px; width: 100%; max-width: 100%; overflow: hidden; }
.carousel { position: relative; width: 100%; max-width: 100%; height: 100%; overflow: hidden; background: var(--blau-tief); }
.carousel-track { display: flex; height: 100%; transition: transform .8s cubic-bezier(.6,.01,.05,1); }
.slide { flex: 0 0 100%; margin: 0; height: 100%; }
.slide img { width: 100%; height: 100%; object-fit: cover; }

.carousel::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 84% 64% at 50% 46%, rgba(15,23,42,.62), rgba(15,23,42,0) 72%),
    linear-gradient(180deg, rgba(15,23,42,.50) 0%, rgba(15,23,42,.20) 30%, rgba(15,23,42,.32) 65%, rgba(15,23,42,.74) 100%);
}

.carousel-overlay {
  position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 0 24px; color: #fff;
}
.hero-eyebrow {
  font-family: var(--ff-body); font-weight: 500; letter-spacing: 4px; text-transform: uppercase;
  font-size: 14px; margin: 0 0 18px; opacity: .95;
  text-shadow: 0 0 4px rgba(0,0,0,.9), 0 1px 12px rgba(0,0,0,.7);
  animation: fadeUp .8s .1s both;
}
.hero-title {
  display: inline-flex; align-items: center; justify-content: center; flex-wrap: nowrap;
  font-size: clamp(3rem, 11vw, 8rem); margin: 0; color: #fff; letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(0,0,0,.5), 0 4px 26px rgba(0,0,0,.6), 0 2px 7px rgba(0,0,0,.45);
  animation: fadeUp .9s .2s both;
}
.hero-tent { height: .78em; width: auto; transform: translateY(.02em); margin: 0 -.02em; }
.hero-tagline {
  font-family: var(--ff-body); font-weight: 400; font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  margin: 18px 0 34px; max-width: 620px;
  text-shadow: 0 0 5px rgba(0,0,0,.85), 0 2px 16px rgba(0,0,0,.78);
  animation: fadeUp 1s .35s both;
}
.carousel-overlay .btn { animation: fadeUp 1s .5s both; }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(4px);
  display: grid; place-items: center; transition: background .2s ease, transform .2s ease;
}
.carousel-btn:hover { background: rgba(255,255,255,.32); }
.carousel-btn.prev { left: 22px; } .carousel-btn.next { right: 22px; }
.carousel-btn:active { transform: translateY(-50%) scale(.93); }

.carousel-dots { position: absolute; bottom: 84px; left: 0; right: 0; z-index: 4; display: flex; gap: 11px; justify-content: center; }
.carousel-dots button {
  width: 11px; height: 11px; border-radius: 50%; border: 2px solid rgba(255,255,255,.85);
  background: transparent; cursor: pointer; padding: 0; transition: background .2s ease, transform .2s ease;
}
.carousel-dots button.active { background: #fff; transform: scale(1.15); }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 4; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.8); border-radius: 14px; }
.scroll-cue span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: scrollDot 1.6s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* ----------------------------- Sections ----------------------------- */
.section { padding: 100px 0; position: relative; }
.section-tint { background: var(--grau-bg); }

.eyebrow {
  font-family: var(--ff-body); font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  font-size: 13.5px; color: var(--blau); margin: 0 0 12px;
}
.eyebrow-light { color: rgba(255,255,255,.85); }
.section-title { font-size: clamp(2.3rem, 5.5vw, 3.8rem); color: var(--schwarz); margin-bottom: .35em; }
.lead { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--grau-text); line-height: 1.6; margin: 0 0 1.4em; }
.block-title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); color: var(--blau-tief); margin-top: 0; }
p { color: var(--grau-text); }

/* ----------------------------- Karten (Umgesetzt) ----------------------------- */
.card-grid {
  list-style: none; margin: 40px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.card {
  background: #fff; border: 1px solid var(--grau-line); border-radius: var(--radius);
  padding: 30px 26px 28px; position: relative; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card h3 { font-family: var(--ff-body); font-weight: 500; font-size: 1.22rem; color: var(--schwarz); margin: 14px 0 8px; }
.card p { margin: 0; font-size: .98rem; }
.card-check { width: 40px; height: 40px; border-radius: 50%; background: var(--blau-soft); display: inline-grid; place-items: center; }
.card-check::after {
  content: ""; width: 18px; height: 10px; border-left: 3px solid var(--blau);
  border-bottom: 3px solid var(--blau); transform: rotate(-45deg) translate(1px,-2px);
}

/* ----------------------------- Timeline ----------------------------- */
.timeline { list-style: none; margin: 50px 0 0; padding: 0; position: relative; max-width: 860px; margin-inline: auto; }
.timeline::before { content: ""; position: absolute; left: 96px; top: 6px; bottom: 6px; width: 2px; background: var(--grau-line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 96px 1fr; gap: 30px; padding-bottom: 38px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year {
  font-family: var(--ff-display); font-weight: 400; font-size: 1.18rem; color: var(--blau);
  text-align: right; line-height: 1.15; padding-top: 2px;
}
.timeline-body { position: relative; padding-left: 30px; }
.timeline-body::before {
  content: ""; position: absolute; left: -8px; top: 6px; width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 3px solid var(--blau);
}
.timeline-now .timeline-body::before { background: var(--blau); box-shadow: 0 0 0 5px var(--blau-soft); }
.timeline-now .timeline-year { color: var(--blau-tief); }
.timeline-body h3 { font-family: var(--ff-body); font-weight: 500; font-size: 1.2rem; color: var(--schwarz); margin: 0 0 6px; }
.timeline-body p { margin: 0; font-size: .99rem; }

/* ----------------------------- Vision-Blöcke ----------------------------- */
.vision-block { margin-top: 56px; }
.pullout {
  margin-top: 22px; padding: 18px 24px; border-left: 4px solid var(--blau);
  background: var(--blau-soft); border-radius: 0 10px 10px 0; color: var(--blau-tief) !important;
  font-weight: 500; font-size: 1.1rem;
}

/* ----------------------------- Struktur-Diagramm ----------------------------- */
.structure { margin: 56px auto 0; max-width: 920px; text-align: center; }
.struct-top { display: flex; justify-content: center; }
.struct-node {
  background: #fff; border: 1.5px solid var(--grau-line); border-radius: 12px; padding: 18px 24px;
  min-width: 200px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 3px;
}
.struct-kicker { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grau-text); font-weight: 500; }
.struct-node strong { font-family: var(--ff-body); font-weight: 500; font-size: 1.15rem; }
.node-ag { background: var(--blau); border-color: var(--blau); color: #fff; min-width: 260px; }
.node-ag .struct-kicker { color: rgba(255,255,255,.8); }
.node-wk strong { color: var(--wk-gruen-d); }
.node-wk { border-top: 3px solid var(--wk-gruen); }
.struct-connector { width: 2px; height: 38px; background: var(--grau-line); margin: 0 auto; }
.struct-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; }
.struct-row::before { content: ""; position: absolute; top: -19px; left: 16.6%; right: 16.6%; height: 2px; background: var(--grau-line); }
.struct-row .struct-node::before { content: ""; position: absolute; }
.struct-caption { margin: 30px auto 0; text-align: center; font-size: .98rem; }

/* ----------------------------- Duo (Geschäftsbereiche) ----------------------------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 44px; }
.duo-col { background: #fff; border-radius: var(--radius); padding: 38px 34px; border: 1px solid var(--grau-line); }
.duo-camp { border-top: 5px solid var(--blau); }
.duo-tour { border-top: 5px solid var(--orange); }
.duo-tag { display: inline-block; font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grau-text); margin-bottom: 8px; }
.duo-col h3 { font-family: var(--ff-display); font-weight: 400; font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--schwarz); margin: 0 0 14px; }
.duo-tour h3 { color: var(--dunkelrot); }
.duo-camp h3 { color: var(--blau-tief); }
.duo-col p { font-size: .99rem; }

/* ----------------------------- Fazit (Vollfläche Seeblau) ----------------------------- */
.fazit { margin-top: 96px; background: var(--blau-tief); color: #fff; padding: 88px 0; position: relative; overflow: hidden; }
.fazit::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background:
    radial-gradient(800px 400px at 85% -10%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(600px 400px at 0% 120%, rgba(255,255,255,.08), transparent 60%);
}
.fazit .container { position: relative; }
.fazit-statement { font-family: var(--ff-display); font-weight: 400; font-size: clamp(1.8rem, 4.4vw, 3rem); line-height: 1.2; color: #fff; margin: 0 0 .6em; }
.fazit-statement em { font-style: normal; color: var(--gelb); }
.fazit-text { color: rgba(255,255,255,.9); font-size: 1.08rem; margin: 0; }

/* ----------------------------- Passwort-Gate ----------------------------- */
.gate {
  max-width: 520px; margin: 30px auto 0; background: #fff; border: 1px solid var(--grau-line);
  border-radius: var(--radius); padding: 44px 38px; text-align: center; box-shadow: var(--shadow);
}
.gate-lock { width: 72px; height: 72px; border-radius: 50%; background: var(--blau-soft); color: var(--blau); display: grid; place-items: center; margin: 0 auto 18px; }
.gate-title { font-size: 1.7rem; color: var(--blau-tief); margin: 0 0 8px; }
.gate-hint { margin: 0 0 22px; font-size: .98rem; }
.gate-form { display: flex; gap: 10px; }
.gate-form input {
  flex: 1; padding: 14px 18px; border: 1.5px solid var(--grau-line); border-radius: 999px;
  font-family: var(--ff-body); font-size: 16px; transition: border-color .2s ease, box-shadow .2s ease;
}
.gate-form input:focus { outline: none; border-color: var(--blau); box-shadow: 0 0 0 4px var(--blau-soft); }
.gate-error { margin: 16px 0 0; color: var(--dunkelrot); font-weight: 500; font-size: .95rem; }
.gate.shake { animation: shake .4s; }
@keyframes shake { 0%,100%{transform:translateX(0)} 20%,60%{transform:translateX(-9px)} 40%,80%{transform:translateX(9px)} }

/* ----------------------------- FAQ / Akkordeon ----------------------------- */
.faq { margin-top: 8px; animation: fadeUp .6s both; }
.faq-heading { font-size: clamp(1.6rem, 3.4vw, 2.3rem); color: var(--schwarz); margin: 16px 0 24px; text-align: center; }
.faq-list { border-top: 1px solid var(--grau-line); }
.faq-item { border-bottom: 1px solid var(--grau-line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--ff-body); font-weight: 500; font-size: 1.12rem; color: var(--schwarz);
  padding: 22px 48px 22px 4px; position: relative; transition: color .2s ease; line-height: 1.4;
}
.faq-q:hover { color: var(--blau); }
.faq-q::after {
  content: ""; position: absolute; right: 8px; top: 28px; width: 12px; height: 12px;
  border-right: 2.5px solid var(--blau); border-bottom: 2.5px solid var(--blau);
  transform: rotate(45deg); transition: transform .3s ease;
}
.faq-item.open .faq-q { color: var(--blau-tief); }
.faq-item.open .faq-q::after { transform: rotate(-135deg); top: 32px; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 4px 26px; color: var(--grau-text); }
.faq-a-inner p { margin: 0 0 12px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner ul, .faq-a-inner ol { margin: 0 0 12px; padding-left: 22px; }
.faq-a-inner li { margin-bottom: 6px; }
.faq-a-inner strong { color: var(--schwarz); font-weight: 500; }
.faq-a-inner h4 { font-family: var(--ff-body); font-weight: 500; font-size: 1.02rem; color: var(--blau-tief); margin: 18px 0 6px; }
.faq-a-inner h4:first-child { margin-top: 0; }
.faq-a-inner .todo { display: inline-block; background: var(--gelb); color: #6a5a00; padding: 3px 10px; border-radius: 6px; font-size: .9rem; font-style: italic; }
.faq-a-inner .next-step { margin-top: 14px; padding: 14px 18px; border-left: 4px solid var(--blau); background: var(--blau-soft); border-radius: 0 8px 8px 0; }
.faq-a-inner .next-step strong { color: var(--blau-tief); display: block; font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }

/* ----------------------------- Footer ----------------------------- */
.site-footer { background: var(--schwarz); color: rgba(255,255,255,.82); padding: 64px 0 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 44px; }
.footer-wordmark { color: #fff; font-size: 30px; }
.footer-sub { color: var(--blau); }
.footer-brand { max-width: 360px; }
.footer-claim { margin: 14px 0 0; color: rgba(255,255,255,.6); font-size: .98rem; }
.footer-contact { font-style: normal; line-height: 1.9; font-size: .98rem; }
.footer-contact strong { color: #fff; font-weight: 500; }
.footer-contact a { color: var(--blau); text-decoration: none; }
.footer-contact a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 24px; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.5); font-size: .88rem; text-align: center; }
.footer-bottom a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-bottom a:hover { color: #fff; text-decoration: underline; }

/* ----------------------------- Scroll-Reveal ----------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* ----------------------------- Responsive ----------------------------- */
@media (max-width: 880px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .duo { grid-template-columns: 1fr; }
  .struct-row { grid-template-columns: 1fr; gap: 14px; }
  .struct-row::before { display: none; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; z-index: 110; }
  .nav-list {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); height: 100svh;
    background: #fff; flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 28px; padding: 0 40px; transform: translateX(100%); transition: transform .35s cubic-bezier(.6,.01,.05,1);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,.5);
  }
  .nav-list.open { transform: translateX(0); }
  .nav-list a, .site-header:not(.scrolled) .nav-list a { color: var(--schwarz); font-size: 1.3rem; }
  .nav-cta { font-size: 1.05rem !important; }
  body.nav-open { overflow: hidden; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .site-header.nav-open-header, .nav-list.open { }

  .section { padding: 72px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 70px; }
  .timeline-item { grid-template-columns: 70px 1fr; gap: 18px; }
  .timeline-year { font-size: 1rem; }
  .gate-form { flex-direction: column; }
  .carousel-btn { width: 44px; height: 44px; }
  .carousel-btn.prev { left: 10px; } .carousel-btn.next { right: 10px; }
  .carousel-dots { bottom: 70px; }
  .footer-inner { flex-direction: column; gap: 28px; }
}

/* ----------------------------- Reduced Motion ----------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
