/* =================================================================
   KKS Goldbach 1926 e.V. – Design System
   Stil: edel-modern (Grün / Gold / Holz), 100 Jahre Tradition
   ================================================================= */

:root {
  /* Farben */
  --green-900: #0d2b1c;
  --green-800: #123b26;
  --green-700: #1f5135;
  --green-600: #2a6a45;
  --gold-500:  #d4af37;
  --gold-400:  #e3c565;
  --gold-300:  #f4d78a;
  --cream:     #f7f3ea;
  --paper:     #fbf9f4;
  --ink:       #1c2a22;
  --ink-soft:  #47554d;
  --line:      #e4ddcd;
  --white:     #ffffff;

  /* Typo */
  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Struktur */
  --maxw: 1180px;
  --radius: 14px;
  --shadow-sm: 0 4px 14px rgba(13, 43, 28, 0.08);
  --shadow-md: 0 14px 40px rgba(13, 43, 28, 0.16);
  --shadow-lg: 0 30px 70px rgba(13, 43, 28, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 1.05rem;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold-500); }
ul { list-style: none; }

/* ---------- Typo ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; color: var(--green-800); letter-spacing: .3px; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
p  { margin-bottom: 1rem; color: var(--ink-soft); }
.lead { font-size: 1.25rem; color: var(--ink); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }
.bg-cream { background: var(--cream); }
.bg-green { background: linear-gradient(160deg, var(--green-800), var(--green-900)); color: var(--cream); }
.bg-green h2, .bg-green h3 { color: var(--gold-300); }
.bg-green p { color: rgba(247,243,234,.82); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: .82rem;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-500);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gold-500); display: inline-block; }
.section-head { max-width: 760px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  padding: 15px 30px; border-radius: 100px; cursor: pointer; border: 2px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn-primary { background: var(--gold-500); color: var(--green-900); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-400); color: var(--green-900); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-ghost { border-color: rgba(212,175,55,.6); color: var(--gold-300); }
.btn-ghost:hover { background: var(--gold-500); color: var(--green-900); border-color: var(--gold-500); transform: translateY(-3px); }
.btn-dark { background: var(--green-700); color: var(--cream); }
.btn-dark:hover { background: var(--green-800); color: var(--gold-300); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--green-700); color: var(--green-700); }
.btn-outline:hover { background: var(--green-700); color: var(--cream); transform: translateY(-3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 18px 0;
}
.site-header.scrolled { background: rgba(251,249,244,.92); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); padding: 10px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 52px; height: 52px; transition: width .35s var(--ease); }
.site-header.scrolled .brand img { width: 44px; }
.brand-text { line-height: 1.1; }
.brand-text strong { display: block; font-family: var(--font-head); font-size: 1.25rem; color: var(--green-800); font-weight: 700; }
.brand-text span { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-500); font-weight: 600; }
.site-header:not(.scrolled) .brand-text strong { color: var(--cream); }
.site-header:not(.scrolled).light-nav .brand-text strong { color: var(--green-800); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-weight: 500; font-size: .95rem; padding: 9px 15px; border-radius: 8px; color: var(--cream);
  position: relative;
}
.site-header.scrolled .nav-links a, .light-nav .nav-links a { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px;
  background: var(--gold-500); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: var(--gold-500); }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); border-radius: 2px; transition: .3s var(--ease); }
.site-header.scrolled .nav-toggle span, .light-nav .nav-toggle span { background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative; isolation: isolate;
  background: linear-gradient(150deg, var(--green-900) 0%, var(--green-800) 55%, var(--green-700) 100%);
  color: var(--cream); overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .10;
  background-image: radial-gradient(circle at 20% 30%, var(--gold-300) 0, transparent 40%),
                    radial-gradient(circle at 85% 70%, var(--gold-500) 0, transparent 45%);
}
.hero-rings { position: absolute; right: -8%; top: 50%; transform: translateY(-50%); width: min(46vw, 620px); aspect-ratio: 1; z-index: -1; opacity: .16; pointer-events: none; }
.hero-rings circle { fill: none; stroke: var(--gold-300); }
.hero-inner { max-width: 820px; padding: 120px 0 80px; }
.hero h1 { color: var(--cream); }
.hero h1 .accent { color: var(--gold-400); font-style: italic; }
.hero .lead { color: rgba(247,243,234,.86); max-width: 620px; margin: 22px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  background: rgba(212,175,55,.14); border: 1px solid rgba(212,175,55,.4);
  padding: 8px 18px; border-radius: 100px; font-size: .85rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-300);
}
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: rgba(247,243,234,.7); font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll .mouse { width: 24px; height: 40px; border: 2px solid rgba(247,243,234,.5); border-radius: 14px; position: relative; }
.hero-scroll .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--gold-400); border-radius: 4px; animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 14px); } 100% { opacity: 0; } }

/* Page hero (Unterseiten) */
.page-hero {
  padding: 180px 0 90px; text-align: center; color: var(--cream);
  background: linear-gradient(150deg, var(--green-900), var(--green-800));
  position: relative; overflow: hidden;
}
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .1; background: radial-gradient(circle at 70% 20%, var(--gold-300), transparent 45%); }
.page-hero h1 { color: var(--cream); position: relative; }
.page-hero p { color: rgba(247,243,234,.82); max-width: 640px; margin: 18px auto 0; position: relative; }
.breadcrumb { position: relative; font-size: .85rem; letter-spacing: 1px; color: var(--gold-300); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold-300); }

/* ---------- Stats / Counter ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 30px 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(212,175,55,.22); border-radius: var(--radius); }
.bg-cream .stat, .stat.on-light { background: var(--white); border-color: var(--line); box-shadow: var(--shadow-sm); }
.stat .num { font-family: var(--font-head); font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 700; color: var(--gold-500); line-height: 1; }
.stat .label { font-size: .9rem; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; font-weight: 600; }
.bg-green .stat .label { color: rgba(247,243,234,.7); }

/* ---------- Cards / Grid ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card .icon {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(150deg, var(--green-700), var(--green-600)); color: var(--gold-300);
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; }

/* Split (Text + Media) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); position: relative; aspect-ratio: 4/3; background: linear-gradient(150deg, var(--green-700), var(--green-800)); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .media-fallback { position: absolute; inset: 0; display: grid; place-items: center; color: var(--gold-300); }
.split-media .media-fallback svg { width: 80px; height: 80px; opacity: .5; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; color: var(--ink); }
.checklist li::before { content: ""; flex: 0 0 22px; height: 22px; margin-top: 3px; border-radius: 50%; background: var(--green-700) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4d78a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery figure { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; background: linear-gradient(150deg, var(--green-700), var(--green-800)); box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery figure:hover img { transform: scale(1.08); }
.gallery figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,43,28,.5), transparent 55%); opacity: 0; transition: opacity .4s; }
.gallery figure:hover::after { opacity: 1; }

/* ---------- Timeline (Chronik) ---------- */
.timeline { position: relative; max-width: 900px; margin: 0 auto; padding: 20px 0; }
.timeline::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; transform: translateX(-50%); background: linear-gradient(var(--gold-500), rgba(212,175,55,.15)); }
.tl-item { position: relative; width: 50%; padding: 0 44px 48px; }
.tl-item:nth-child(odd) { left: 0; text-align: right; }
.tl-item:nth-child(even) { left: 50%; text-align: left; }
.tl-item .dot { position: absolute; top: 6px; width: 20px; height: 20px; border-radius: 50%; background: var(--gold-500); border: 4px solid var(--paper); box-shadow: 0 0 0 3px var(--gold-500); }
.tl-item:nth-child(odd) .dot { right: -10px; }
.tl-item:nth-child(even) .dot { left: -10px; }
.tl-year { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--gold-500); line-height: 1; margin-bottom: 8px; }
.tl-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow-sm); display: inline-block; text-align: left; }
.tl-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.tl-card p { margin-bottom: 0; font-size: .98rem; }

/* ---------- Königsfamilie ---------- */
.royal-banner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: center; }
.royal-list { display: grid; gap: 14px; margin-top: 8px; }
.royal-list li { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: rgba(255,255,255,.05); border: 1px solid rgba(212,175,55,.25); border-radius: 12px; }
.royal-list .role { font-size: .78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-400); font-weight: 700; }
.royal-list .name { color: var(--cream); font-weight: 600; }
.crown { flex: 0 0 auto; color: var(--gold-400); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--gold-300); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .ico { flex: 0 0 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--green-700); color: var(--gold-300); }
.info-row .ico svg { width: 22px; height: 22px; }
.info-row strong { display: block; color: var(--green-800); font-family: var(--font-head); font-size: 1.15rem; }
.info-row a, .info-row span { color: var(--ink-soft); }

form .field { margin-bottom: 18px; }
form label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--green-800); }
form input, form textarea, form select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font-body); font-size: 1rem; background: var(--white); color: var(--ink); transition: border-color .25s, box-shadow .25s;
}
form input:focus, form textarea:focus, form select:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(212,175,55,.15); }
form textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .85rem; color: var(--ink-soft); }
.form-success { display: none; padding: 16px 20px; background: #e8f3ec; border: 1px solid #b7d9c4; border-radius: 12px; color: var(--green-800); font-weight: 600; margin-bottom: 18px; }

.map-embed { border: 0; width: 100%; height: 380px; border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* ---------- Opening hours pill ---------- */
.hours-card { background: linear-gradient(150deg, var(--green-700), var(--green-800)); color: var(--cream); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-md); }
.hours-card h3 { color: var(--gold-300); margin-bottom: 16px; }
.hours-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px dashed rgba(212,175,55,.3); }
.hours-row:last-child { border-bottom: 0; }
.hours-row span:first-child { font-weight: 600; }
.hours-row span:last-child { color: var(--gold-300); }

/* ---------- Reviews / Rezensionen ---------- */
.reviews-head { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; margin-bottom: 44px; }
.rating-badge { display: inline-flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 100px; padding: 12px 24px; box-shadow: var(--shadow-sm); }
.rating-badge .score { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--green-800); line-height: 1; }
.rating-badge .g-logo { width: 26px; height: 26px; }
.stars { display: inline-flex; gap: 2px; color: var(--gold-500); }
.stars svg { width: 18px; height: 18px; }
.rating-badge .meta { font-size: .82rem; color: var(--ink-soft); line-height: 1.3; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-card .stars { margin-bottom: 14px; }
.review-quote { font-family: var(--font-head); font-size: 1.4rem; color: var(--green-800); line-height: 1.35; margin-bottom: 18px; flex: 1; }
.review-quote::before { content: "\201C"; color: var(--gold-500); font-size: 2rem; line-height: 0; margin-right: 2px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-author .avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(150deg, var(--green-700), var(--green-600)); color: var(--gold-300); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; flex: 0 0 auto; }
.review-author .who { line-height: 1.25; }
.review-author .who strong { color: var(--ink); font-size: .98rem; }
.review-author .who span { display: block; font-size: .8rem; color: var(--ink-soft); }
.reviews-cta { text-align: center; margin-top: 38px; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding: 22px 0; background: var(--green-900); border-top: 1px solid rgba(212,175,55,.2); border-bottom: 1px solid rgba(212,175,55,.2); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: var(--font-head); font-size: 1.4rem; color: rgba(244,215,138,.55); white-space: nowrap; display: inline-flex; align-items: center; gap: 60px; }
.marquee-track span::after { content: "◆"; color: var(--gold-500); font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: rgba(247,243,234,.75); padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 46px; }
.site-footer h4 { color: var(--gold-300); font-size: 1.05rem; margin-bottom: 18px; letter-spacing: .5px; }
.site-footer a { color: rgba(247,243,234,.75); }
.site-footer a:hover { color: var(--gold-400); }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-brand img { width: 54px; height: 54px; }
.footer-brand strong { font-family: var(--font-head); font-size: 1.3rem; color: var(--cream); }
.footer-links li { margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(247,243,234,.12); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .88rem; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Floating actions (WhatsApp / Anruf) ---------- */
.floating { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; gap: 14px; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-md); color: #fff; transition: transform .3s var(--ease); position: relative; }
.fab:hover { transform: scale(1.1) translateY(-2px); }
.fab svg { width: 28px; height: 28px; }
.fab.wa { background: #25d366; }
.fab.call { background: var(--green-700); color: var(--gold-300); }
.fab .tip { position: absolute; right: 68px; top: 50%; transform: translateY(-50%); background: var(--green-900); color: var(--cream); padding: 7px 14px; border-radius: 8px; font-size: .82rem; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .25s; }
.fab:hover .tip { opacity: 1; }
.fab.wa::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.8); opacity: 0; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

/* Progressive enhancement: ohne JS bleibt alles sichtbar */
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid, .royal-banner { grid-template-columns: 1fr; gap: 34px; }
  .split.reverse .split-media { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px); background: var(--green-900);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px; padding: 40px;
    transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: none; }
  .nav-links a { color: var(--cream); font-size: 1.15rem; width: 100%; }
  .nav-links .nav-cta { margin: 14px 0 0; }
  .nav-toggle { display: flex; z-index: 101; }
  .nav-toggle.open span { background: var(--cream); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-header.scrolled .nav-toggle span, .light-nav .nav-toggle span { background: var(--ink); }

  .grid-2, .grid-3, .gallery, .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Timeline single column on mobile */
  .timeline::before { left: 18px; }
  .tl-item { width: 100%; left: 0 !important; text-align: left !important; padding: 0 0 40px 52px; }
  .tl-item .dot { left: 8px !important; right: auto !important; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
