/* ============================================================
   NACLOA — Premium Styles (ChoZen-quality)
   ============================================================ */
:root {
  --forest: #2d4a2d;
  --forest-dark: #1e331e;
  --forest-deep: #162316;
  --brown: #6b4c35;
  --cream: #f5f0e8;
  --cream-light: #faf7f2;
  --gold: #c9a84c;
  --gold-light: #d4b96a;
  --terra: #c0614a;
  --terra-dark: #a8503d;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --text-lighter: #7a7a7a;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
  --radius: 12px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: 0.5rem; }

a { color: var(--forest); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   SCROLL ANIMATIONS (IntersectionObserver)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(22, 35, 22, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 3rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: background var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav.scrolled {
  background: rgba(22, 35, 22, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
}
.nav-logo span { color: var(--cream); font-weight: 400; }
.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,.8); font-size: 0.9rem; font-weight: 400;
  letter-spacing: 0.5px; position: relative;
  transition: color var(--transition);
  text-transform: uppercase;
  font-size: .82rem;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 50%;
  width: 0; height: 2px; background: var(--gold);
  transition: width var(--transition), left var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; left: 0; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; left: 0; }

.nav-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; z-index: 1001; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--cream); transition: var(--transition); }

@media (max-width: 1024px) {
  .nav { padding: 0 1.5rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    flex-direction: column; background: rgba(22, 35, 22, 0.98);
    padding: 5rem 2.5rem 2rem; gap: 1.5rem;
    transition: right .4s cubic-bezier(.4,0,.2,1);
    border-left: 1px solid rgba(201,168,76,.15);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: .95rem; }
}

/* ============================================================
   VIDEO HERO (Homepage)
   ============================================================ */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.video-hero .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}
.video-hero .slide.active {
  opacity: 1;
  z-index: 2;
}
.video-hero .slide video,
.video-hero .slide .fallback-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-hero .slide .fallback-bg {
  background-size: cover;
  background-position: center;
  display: none;
}
.video-hero .slide video.hidden { display: none; }
.video-hero .slide .fallback-bg.visible { display: block; }

.video-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(22,35,22,.55) 0%,
    rgba(22,35,22,.40) 40%,
    rgba(22,35,22,.70) 100%);
  z-index: 3;
}
.video-hero .slide-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.video-hero .slide-content h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
  max-width: 800px;
}
.video-hero .slide-content p {
  color: rgba(255,255,255,.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  margin-bottom: 2.5rem;
  max-width: 600px;
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
}

/* Hero navigation dots */
.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}
.hero-dots .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dots .dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}

/* ============================================================
   PAGE HERO (sub-pages — shorter)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: 7rem 2rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,35,22,.60) 0%, rgba(22,35,22,.80) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero-content p {
  color: rgba(255,255,255,.88);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* Legacy hero for backward compat */
.hero {
  position: relative; min-height: 85vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: 6rem 2rem 4rem;
}
.hero .hero-content p { margin-bottom: 2rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: .95rem 2.4rem;
  background: var(--terra);
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: .7px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  font-size: .85rem;
}
.btn:hover {
  background: var(--terra-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,97,74,.3);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--forest-dark);
  box-shadow: 0 6px 20px rgba(201,168,76,.3);
}
.btn-white {
  background: var(--white);
  color: var(--forest);
}
.btn-white:hover {
  background: var(--cream);
  color: var(--forest-dark);
}
.btn-sm {
  padding: .65rem 1.6rem;
  font-size: .8rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-alt { background: var(--white); }
.section-cream { background: var(--cream-light); }
.section-dark {
  background: var(--forest-dark);
  color: rgba(255,255,255,.85);
}
.section-dark h2, .section-dark h3 { color: var(--gold); }
.section-dark p { color: rgba(255,255,255,.75); }
.section-full { max-width: 100%; padding: 6rem 2rem; }
.section-center { text-align: center; }
.section-wide { max-width: 1400px; }

/* Section divider line */
.section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-top: .85rem;
  border-radius: 2px;
}
.section-center h2::after { margin-left: auto; margin-right: auto; }

/* Decorative section dividers */
.divider {
  width: 100%;
  height: 80px;
  position: relative;
  overflow: hidden;
}
.divider::before {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: var(--gold);
  font-size: 1.2rem;
  opacity: .4;
}

/* ============================================================
   CARDS (3-col)
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,.04);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.card h3 { color: var(--forest); }
.card p { color: var(--text-light); font-size: .95rem; line-height: 1.7; }

/* Image card variant (for events) */
.card-img {
  overflow: hidden;
  padding: 0;
}
.card-img .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .5s ease;
}
.card-img:hover .card-image { transform: scale(1.05); }
.card-img .card-body { padding: 1.8rem 1.5rem; }
.card-img .card-date {
  display: inline-block;
  background: linear-gradient(135deg, var(--forest), var(--forest-dark));
  color: var(--gold);
  padding: .35rem .9rem;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.card-img .card-body h3 { margin-bottom: .5rem; }
.card-img .card-body p { font-size: .9rem; color: var(--text-light); margin-bottom: 1rem; }

/* ============================================================
   CONTENT BLOCKS (2-col text + image)
   ============================================================ */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 3rem 0;
}
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-block img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  max-height: 450px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .content-block { grid-template-columns: 1fr; gap: 2rem; }
  .content-block.reverse { direction: ltr; }
}

/* ============================================================
   STYLED LIST
   ============================================================ */
.styled-list { list-style: none; margin-top: 1.5rem; }
.styled-list li {
  padding: .85rem 0 .85rem 2.2rem;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,.06);
  color: var(--text-light);
  font-size: .95rem;
}
.styled-list li::before {
  content: '🌿';
  position: absolute; left: 0; top: .85rem;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 1.5rem 0;
}
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s;
}
.faq-item.open .faq-a { max-height: 600px; padding-top: 1rem; }
.faq-a p { color: var(--text-light); line-height: 1.8; }

/* ============================================================
   FORMS (Premium styled)
   ============================================================ */
.form { max-width: 650px; margin: 2rem auto 0; }
.form-group { margin-bottom: 1.8rem; }
.form-group label {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600;
  font-size: .88rem;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid rgba(0,0,0,.08);
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(45,74,45,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-lighter);
}
.form-group textarea { min-height: 160px; resize: vertical; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a5a5a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 2.5rem;
}

/* Checkbox group */
.checkbox-group { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .5rem; }
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 400;
  text-transform: none;
  font-size: .92rem;
  color: var(--text);
  cursor: pointer;
  padding: .5rem 1rem;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 6px;
  transition: all var(--transition);
  letter-spacing: 0;
}
.checkbox-group label:hover {
  border-color: var(--forest);
  background: rgba(45,74,45,.04);
}
.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--forest);
}

/* Form messages */
.form-message {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-top: 1.2rem;
  font-size: .92rem;
  display: none;
}
.form-message.success {
  background: rgba(45,74,45,.08);
  color: var(--forest);
  border: 1px solid rgba(45,74,45,.2);
  display: block;
}
.form-message.error {
  background: rgba(192,97,74,.08);
  color: var(--terra);
  border: 1px solid rgba(192,97,74,.2);
  display: block;
}

/* ============================================================
   EVENTS
   ============================================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,.04);
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.event-card .event-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .6s ease;
}
.event-card:hover .event-image { transform: scale(1.05); }
.event-card .event-image-wrap { overflow: hidden; }
.event-card .event-body { padding: 1.5rem 1.5rem 1.8rem; }
.event-card .event-date-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--forest), var(--forest-dark));
  color: var(--gold);
  padding: .35rem 1rem;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.event-card .event-body h3 {
  margin-bottom: .5rem;
  font-size: 1.35rem;
}
.event-card .event-body p {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.65;
}

/* Events page full list */
.events-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

/* ============================================================
   NEWSLETTER (Footer inline form)
   ============================================================ */
.newsletter {
  background: var(--forest);
  padding: 3.5rem 2rem;
  text-align: center;
}
.newsletter h3 {
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: .5rem;
}
.newsletter p {
  color: rgba(255,255,255,.7);
  margin-bottom: 1.5rem;
  font-size: .95rem;
}
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: .5rem;
}
.newsletter-form input {
  flex: 1;
  padding: .9rem 1.2rem;
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  transition: all var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.15);
}
.newsletter-form button {
  padding: .9rem 1.8rem;
  background: var(--gold);
  color: var(--forest-dark);
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: all var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.newsletter-msg {
  margin-top: .8rem;
  font-size: .88rem;
  min-height: 1.5em;
}
.newsletter-msg.success { color: var(--gold); }
.newsletter-msg.error { color: #e8a0a0; }

@media (max-width: 500px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,.6);
  padding: 3.5rem 2rem;
  text-align: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
  margin-bottom: 1.5rem;
}
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: color var(--transition);
  letter-spacing: .3px;
}
.footer-links a:hover { color: var(--gold); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.3); }

/* ============================================================
   ETHICS SECTIONS
   ============================================================ */
.ethics-section { margin-bottom: 2.5rem; }
.ethics-section h3 { color: var(--brown); margin-bottom: .75rem; }
.ethics-section p, .ethics-section li { color: var(--text-light); }

/* ============================================================
   MEMBERSHIP INFO
   ============================================================ */
.membership-info {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,.04);
}
.membership-info h3 { margin-top: 2rem; }
.membership-info h3:first-child { margin-top: 0; }
.membership-info ul { margin: .75rem 0 0 1.5rem; color: var(--text-light); }
.membership-info ul li { margin-bottom: .4rem; }

/* ============================================================
   RETREAT INTEREST FORM
   ============================================================ */
.retreat-form-section {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  padding: 4rem 2rem;
  border-radius: var(--radius);
  margin: 3rem 0;
}
.retreat-form-section h2 { color: var(--gold); }
.retreat-form-section h2::after { background: rgba(255,255,255,.2); }
.retreat-form-section p { color: rgba(255,255,255,.75); }
.retreat-form-section .form-group label { color: var(--gold); }
.retreat-form-section .form-group input,
.retreat-form-section .form-group textarea,
.retreat-form-section .form-group select {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.15);
  color: var(--white);
}
.retreat-form-section .form-group input::placeholder,
.retreat-form-section .form-group textarea::placeholder {
  color: rgba(255,255,255,.4);
}
.retreat-form-section .form-group input:focus,
.retreat-form-section .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,.15);
}
.retreat-form-section .checkbox-group label {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.15);
}
.retreat-form-section .checkbox-group label:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.08);
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-3 { margin-top: 3rem; }
.max-w-800 { max-width: 800px; }

/* Responsive padding */
@media (max-width: 768px) {
  .section { padding: 4rem 1.5rem; }
  .cards { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .events-full-grid { grid-template-columns: 1fr; }
  .video-hero { min-height: 100vh; }
  .hero-dots { bottom: 1.5rem; }
}
