@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0c0a09;
  --bg2:       #151210;
  --bg3:       #1e1915;
  --red:       #c0392b;
  --red-l:     #e74c3c;
  --red-d:     #8b1a10;
  --gold:      #c9a84c;
  --gold-l:    #e8c96a;
  --text:      #f0ece6;
  --muted:     #7a746d;
  --border:    rgba(201,168,76,0.15);
  --radius:    4px;
  --nav-h:     72px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 17px;
}

h1,h2,h3,h4,h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── TWO COL GRID (stacks on mobile) ── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.wrn-hero-img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 900px) {
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .wrn-hero-img {
    aspect-ratio: 16/9;
  }
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(12,10,9,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex; gap: 2rem; list-style: none;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500;
}
.nav-links a {
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--red);
  color: var(--text) !important;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--red-l) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 24px; height: 1.5px; background: var(--text);
  transition: var(--transition);
}

.mobile-menu {
  display: none; position: fixed; inset: 0; top: var(--nav-h);
  background: var(--bg); padding: 2rem 5%;
  flex-direction: column; gap: 1.5rem;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.6rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--muted);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--red-l); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) 5% 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(192,57,43,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 50% 110%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0c0a09 0%, #120a08 50%, #1a0c08 100%);
}

.hero-noise {
  position: absolute; inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

.hero-logo-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-logo-bg img {
  width: min(90vw, 780px);
  height: auto;
  opacity: 0.18;
  filter: saturate(2) brightness(1.3) contrast(1.1);
  mix-blend-mode: screen;
  transform: translateY(-5%);
  animation: logoPulse 6s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { opacity: 0.18; transform: translateY(-5%) scale(1); }
  50%       { opacity: 0.24; transform: translateY(-7%) scale(1.03); }
}

.hero-content { position: relative; max-width: 800px; z-index: 2; }

.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 0.3em;
  opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero h1 strong {
  font-weight: 700;
  display: block;
  background: linear-gradient(135deg, var(--red-l), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  font-weight: 400;
  opacity: 0; animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-tagline span {
  color: var(--text);
  opacity: 0.6;
  margin: 0 0.5rem;
}

.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards;
}

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn-primary {
  background: var(--red); color: var(--text);
}
.btn-primary:hover { background: var(--red-l); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid rgba(240,236,230,0.2);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

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

@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.3; }
}

/* ── SECTIONS ── */
section { padding: 6rem 5%; }

.section-label {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); font-weight: 500;
  margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::before {
  content: ''; display: block;
  width: 30px; height: 1px; background: var(--red);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.section-lead {
  color: var(--muted); font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 3rem;
}

.container { max-width: 1200px; margin: 0 auto; }

/* ── TIMES ── */
.times-section { background: var(--bg2); }

.times-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.time-card {
  background: var(--bg2);
  padding: 2.5rem;
  position: relative;
  transition: background var(--transition);
}
.time-card:hover { background: var(--bg3); }

.time-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.time-card:hover::before { opacity: 1; }

.time-day {
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 0.8rem;
}
.time-title {
  font-size: 1.6rem; margin-bottom: 0.3rem;
}
.time-hours {
  font-size: 2rem; font-weight: 300;
  font-family: 'Cormorant Garamond', serif;
  color: var(--red-l);
  margin-bottom: 1rem;
}
.time-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ── YOUTUBE ── */
.youtube-section { background: var(--bg); }

.youtube-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.youtube-embed-wrap {
  position: relative;
  padding-top: 56.25%;
  background: var(--bg2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.youtube-embed-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}

.youtube-info { }
.youtube-info .section-title { margin-bottom: 0.8rem; }

.yt-video-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--text);
}
.yt-video-date {
  font-size: 0.8rem; color: var(--muted); letter-spacing: 0.1em;
}
.yt-channel-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--red-l);
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500;
  transition: color var(--transition);
}
.yt-channel-link:hover { color: var(--gold); }
.yt-channel-link svg { width: 16px; height: 16px; }

/* ── LOCATION ── */
.location-section { background: var(--bg2); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
}
.location-map iframe {
  width: 100%; height: 100%; border: none;
}

.location-details { }
.location-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.location-block:last-child { border-bottom: none; margin-bottom: 0; }
.location-block-label {
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.location-block-value {
  font-size: 1.1rem; line-height: 1.6;
}
.location-block-hint {
  font-size: 1rem; color: var(--muted); margin-top: 0.3rem;
}

/* ── LEADERS ── */
.leaders-section { background: var(--bg); }

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.leader-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.leader-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
}

.leader-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; object-position: top;
  background: var(--bg3);
}

.leader-body { padding: 2rem; }
.leader-role {
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.5rem;
}
.leader-name { font-size: 1.5rem; margin-bottom: 0.8rem; }
.leader-bio { color: var(--muted); font-size: 1rem; line-height: 1.7; }

/* ── SOCIAL ── */
.social-section { background: var(--bg2); padding: 4rem 5%; }
.social-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.social-text { }
.social-text h3 { font-size: 1.8rem; margin-bottom: 0.3rem; }
.social-text p { color: var(--muted); }

.social-links {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.social-link {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--red);
  color: var(--red-l);
  transform: translateY(-2px);
}
.social-link svg { width: 18px; height: 18px; }

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 5% 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand { }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-logo img { height: 36px; }
.footer-desc { color: var(--muted); font-size: 1rem; line-height: 1.7; }

.footer-col h4 {
  font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: var(--muted); font-size: 1rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1200px; margin: 2rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--muted); flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: var(--muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--text); }

/* ── INNER PAGES ── */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 5% 5rem;
  background:
    linear-gradient(180deg, rgba(192,57,43,0.08) 0%, transparent 100%),
    var(--bg2);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 0.5rem; }
.page-hero p { color: var(--muted); font-size: 1.1rem; }

.page-content { max-width: 1200px; margin: 0 auto; padding: 5rem 5%; }

/* ── GLAUBEN GRID ── */
.belief-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.belief-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition);
}
.belief-card:hover { border-color: rgba(192,57,43,0.3); }
.belief-card h3 {
  font-size: 1.2rem; margin-bottom: 0.8rem;
  color: var(--gold);
}
.belief-card p { color: var(--muted); font-size: 1rem; line-height: 1.7; }

/* ── KONTAKT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* ── SPENDEN ── */
.spenden-hero { background: var(--bg2); }
.spenden-amounts {
  display: flex; gap: 1rem; flex-wrap: wrap; margin: 2rem 0;
}
.amount-btn {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent; color: var(--text);
  font-family: 'Jost', sans-serif; font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
}
.amount-btn:hover, .amount-btn.active {
  border-color: var(--red); color: var(--red-l);
}

.bank-details {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2rem;
}
.bank-row {
  display: flex; justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.bank-row:last-child { border-bottom: none; }
.bank-row span:first-child { color: var(--muted); }
.bank-row span:last-child { font-family: monospace; color: var(--text); }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1512;
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 1.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  z-index: 9998;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
}
#cookie-banner p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}
#cookie-banner p a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}
.cookie-accept {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.6rem 1.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-accept:hover { background: var(--red-l); }
.cookie-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(240,236,230,0.15);
  border-radius: var(--radius);
  padding: 0.6rem 1.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-decline:hover { border-color: var(--muted); color: var(--text); }

/* ── EXTERNE INHALTE PLATZHALTER ── */
.ext-placeholder {
  width: 100%; height: 100%;
  min-height: 240px;
  background: var(--bg2);
  border: 1px dashed rgba(201,168,76,0.2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 1rem;
}
.ext-placeholder p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}
.ext-placeholder button {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 0.5rem 1.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}
.ext-placeholder button:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red-d), var(--red), var(--gold));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(192,57,43,0.6);
}

/* ── BACK TO TOP ── */
#back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--red);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(192,57,43,0.4);
}
#back-to-top svg { width: 20px; height: 20px; color: #fff; }
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--red-l); }

/* ── TYPEWRITER ── */
#typewriter-text {
  visibility: hidden;
  display: block;
}

/* ── REVEAL LEFT / RIGHT ── */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .youtube-wrapper, .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .social-inner { flex-direction: column; }
}

@media (max-width: 600px) {
  section { padding: 4rem 5%; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.8rem; }
}
