/* ═══════════════════════════════════════════════
   NRITYA KALA MANDIR — Light Elegant Design
   Matching reference: nrityabrittibatayan.com
   ═══════════════════════════════════════════════ */

:root {
  --white:    #FFFFFF;
  --off:      #FAFAF8;
  --light:    #F4F1EC;
  --border:   #E8E2D9;
  --text:     #1A1A1A;
  --text-mid: #4A4A4A;
  --text-dim: #8A8680;
  --gold:     #B8960C;
  --gold-lt:  #D4AD20;
  --accent:   #8B6914;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --max:  1200px;
  --pad:  100px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.7; }
img  { max-width: 100%; display: block; object-fit: cover; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--font-sans); font-size: 1rem; outline: none; }

/* ── UTILITY ── */
.container   { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.section     { padding: var(--pad) 0; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.15;
}
.section-head.center { text-align: center; margin-bottom: 60px; }
.title-rule {
  width: 48px; height: 1.5px;
  background: var(--gold);
  margin: 20px 0;
  border-radius: 2px;
}
.title-rule.centered { margin: 20px auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.btn-white {
  background: var(--white);
  color: var(--text);
}
.btn-white:hover { background: var(--light); transform: translateY(-2px); }
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-dark {
  background: var(--text);
  color: var(--white);
}
.btn-dark:hover { background: #333; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-sm  { padding: 10px 22px; font-size: 0.72rem; }
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.35s var(--ease);
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 56px; width: auto; }
.logo-text-fallback { display: none; }
.logo-deva {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.navbar.scrolled .logo-deva { color: var(--text); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  position: relative;
  transition: color 0.3s;
}
.navbar.scrolled .nav-link { color: var(--text-mid); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--white); }
.navbar.scrolled .nav-link:hover { color: var(--gold); }
.nav-admin {
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 1px;
  transition: all 0.3s;
}
.navbar.scrolled .nav-admin { border-color: var(--border); }
.nav-admin:hover { background: rgba(255,255,255,0.15); }
.navbar.scrolled .nav-admin:hover { background: var(--light); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; display: block; transition: all 0.3s; }
.navbar.scrolled .nav-toggle span { background: var(--text); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  display: block;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.hero-dot.active { background: var(--white); width: 22px; border-radius: 3px; }
.hero-scroll {
  position: absolute;
  bottom: 36px; right: 48px;
  z-index: 3;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 6px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { opacity:1; transform:translateY(0); }
  100% { opacity:0; transform:translateY(10px); }
}

/* ══════════════════════════════
   MARQUEE
══════════════════════════════ */
.marquee-strip {
  background: var(--text);
  padding: 13px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 28px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.marquee-track .sep { color: var(--gold); font-size: 0.55rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  height: 560px;
  border-radius: 2px;
}
.about-img-accent {
  position: absolute;
  top: 20px; left: -20px; right: 20px; bottom: -20px;
  border: 1px solid var(--border);
  border-radius: 2px;
  z-index: -1;
}
.about-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.stat-item { text-align: center; }
.stat-n {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.stat-l {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.about-body p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.85; }
.about-quote {
  border-left: 2px solid var(--gold);
  padding: 16px 24px;
  margin: 28px 0 32px;
  background: var(--off);
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 8px;
  opacity: 0.6;
}
.about-quote p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
}
.about-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.06em;
  color: var(--gold);
}

/* ══════════════════════════════
   CLASSES
══════════════════════════════ */
.classes-section { background: var(--off); }
.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.class-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.class-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border-color: transparent;
}
.class-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.class-img-wrap img {
  width: 100%; height: 100%;
  transition: transform 0.5s var(--ease);
}
.class-card:hover .class-img-wrap img { transform: scale(1.05); }
.class-img-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.class-card:hover .class-img-overlay { opacity: 1; }
.class-body { padding: 24px; }
.class-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}
.class-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.class-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.class-tags span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ══════════════════════════════
   GALLERY
══════════════════════════════ */
.gallery-section { background: var(--white); }
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  width: fit-content;
  margin: 0 auto 40px;
}
.gtab {
  padding: 11px 32px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: all 0.25s;
  background: transparent;
}
.gtab.active { background: var(--text); color: var(--white); }
.gtab:hover:not(.active) { background: var(--light); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 40px;
}
.gitem {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 1px;
  cursor: pointer;
}
.gitem img { width: 100%; height: 100%; transition: transform 0.45s var(--ease); }
.gitem:hover img { transform: scale(1.06); }
.gitem-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gitem:hover .gitem-overlay { opacity: 1; }
.gitem-overlay span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border: 1.5px solid var(--white);
  padding: 8px 20px;
}
/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lb-content img, .lb-content video { max-width: 90vw; max-height: 85vh; border-radius: 2px; }
.lb-close { position:absolute; top:20px; right:28px; color:rgba(255,255,255,0.7); font-size:1.4rem; transition:opacity 0.2s; }
.lb-close:hover { opacity:1; color:var(--white); }
.lb-prev, .lb-next { position:absolute; top:50%; transform:translateY(-50%); color:rgba(255,255,255,0.6); font-size:3.5rem; padding:0 20px; transition:color 0.2s; }
.lb-prev:hover, .lb-next:hover { color:var(--white); }
.lb-prev { left:0; }
.lb-next { right:0; }

/* ══════════════════════════════
   EVENTS
══════════════════════════════ */
.events-section { background: var(--off); }
.events-list { display: flex; flex-direction: column; gap: 16px; }
.event-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.event-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transform: translateX(4px);
}
.event-date-box {
  display: flex; flex-direction: column; align-items: center;
  border-right: 1px solid var(--border);
  padding-right: 28px;
}
.eday {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.emon {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.event-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.eloc { font-size: 0.82rem; color: var(--gold); margin-bottom: 6px; }
.edesc { font-size: 0.84rem; color: var(--text-dim); line-height: 1.6; }
.event-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.event-badge.upcoming { background: #EEF7EF; color: #3A7D44; border: 1px solid #3A7D44; }
.event-badge.past     { background: var(--light); color: var(--text-dim); border: 1px solid var(--border); }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials-section { background: var(--light); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 32px;
  transition: all 0.3s var(--ease);
}
.testi-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.testi-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--light);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); }
.testi-author span   { font-size: 0.75rem; color: var(--gold); }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 22px; margin: 28px 0; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 3px;
}
.contact-item p, .contact-item a { font-size: 0.9rem; color: var(--text-mid); transition: color 0.2s; }
.contact-item a:hover { color: var(--gold); }
.social-row { display: flex; gap: 12px; margin-top: 8px; }
.soc-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid);
  transition: all 0.25s;
}
.soc-btn svg { width: 17px; height: 17px; }
.soc-btn:hover { background: var(--text); color: var(--white); border-color: var(--text); }

/* Contact Form */
.contact-form {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.fg label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.fg input, .fg select, .fg textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1px;
  padding: 11px 14px;
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color 0.25s;
  width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg textarea { resize: vertical; }
.form-ok {
  margin-top: 14px;
  text-align: center;
  font-size: 0.88rem;
  color: #3A7D44;
  font-weight: 500;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer-top {
  background: var(--text);
  padding: 64px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-deva {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-name {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
}
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-links-col a:hover { color: var(--white); }
.footer-bottom {
  background: #111;
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════
   SCROLL REVEAL
══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  :root { --pad: 72px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-width: 480px; margin: 0 auto; }
  .classes-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  :root { --pad: 56px; }
  .container { padding: 0 24px; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 80px 40px;
    border-left: 1px solid var(--border);
    transition: right 0.4s var(--ease);
    z-index: 999;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  }
  .nav-links.open { right: 0; }
  .nav-link { color: var(--text-mid); font-size: 0.85rem; }
  .nav-toggle { display: flex; z-index: 1000; }
  .classes-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .event-card { grid-template-columns: 60px 1fr; }
  .event-badge { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-scroll { display: none; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}