/* ═══════════════════════════════════════════════════════
   IRA CREATIONS — Event Decoration Website
   Beige / Warm Neutral Theme
   ═══════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --beige-light:  #FAF6F0;
  --beige:        #F2EAD3;
  --beige-dark:   #E8DCBF;
  --gold:         #C9A96E;
  --gold-dark:    #A67C52;
  --brown:        #6B4F3A;
  --brown-dark:   #3E2B1C;
  --cream:        #FFFDF8;
  --text:         #3E2B1C;
  --text-light:   #7A6655;
  --white:        #FFFFFF;
  --shadow:       0 4px 24px rgba(62,43,28,.10);
  --shadow-lg:    0 12px 48px rgba(62,43,28,.14);
  --radius:       12px;
  --transition:   .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--beige-light);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

img, video { max-width: 100%; display: block; }

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

/* ── Typography ───────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; color: var(--brown-dark); }

.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .75rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
}

.text-center { text-align: center; }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .5px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201,169,110,.35);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Navigation ───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(250,246,240,.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(62,43,28,.08);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown-dark);
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 32px; list-style: none; }

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .5px;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  transition: all var(--transition);
}

/* ── Hero Section ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .2;
  filter: brightness(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(250,246,240,.92) 0%,
    rgba(250,246,240,.7) 50%,
    rgba(250,246,240,.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-text h1 .highlight {
  color: var(--gold);
  position: relative;
}
.hero-text h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0;
  width: 100%; height: 8px;
  background: rgba(201,169,110,.25);
  border-radius: 4px;
}

.hero-text p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card:nth-child(2) { margin-top: 40px; }
.hero-card:nth-child(3) { margin-top: -40px; }

.hero-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: .8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── About / Intro ────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 120px; height: 120px;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.about-text h2 { margin-bottom: 20px; }

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: .95rem;
}
.about-feature .icon {
  width: 36px; height: 36px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Services ─────────────────────────────────────────── */
.services {
  padding: 100px 0;
  background: var(--beige-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.service-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .5px;
}

.service-card-body { padding: 28px; }

.service-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-card-body p {
  color: var(--text-light);
  font-size: .95rem;
  margin-bottom: 16px;
}

.service-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
}
.service-price span {
  font-size: .85rem;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.service-features {
  list-style: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--beige);
}
.service-features li {
  padding: 4px 0;
  font-size: .9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before {
  content: "\2713";
  color: var(--gold);
  font-weight: 700;
}

/* ── Gallery (Photos from Reels) ──────────────────────── */
.gallery {
  padding: 100px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(62,43,28,.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
}

/* Masonry-like spans */
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ── Reels Section ────────────────────────────────────── */
.reels {
  padding: 100px 0;
  background: var(--brown-dark);
  color: var(--white);
  overflow: hidden;
}

.reels .section-label { color: var(--beige-dark); }
.reels .section-title { color: var(--white); }
.reels .section-subtitle { color: rgba(255,255,255,.6); }

.reels-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0 24px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reels-scroll::-webkit-scrollbar { display: none; }

.reel-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--brown);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  transition: transform var(--transition);
  cursor: pointer;
}
.reel-card:hover { transform: scale(1.03); }

.reel-card video {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.reel-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  pointer-events: none;
}
.reel-card:hover .reel-play-btn {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}
.reel-play-btn svg {
  width: 24px; height: 24px;
  fill: var(--white);
  margin-left: 3px;
}

.reel-card.playing .reel-play-btn { opacity: 0; }

.reels-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.reels-nav button {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  background: transparent;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
}
.reels-nav button:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* ── Nepali Wedding Feature ───────────────────────────── */
.nepali-wedding {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--beige) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.nepali-wedding::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border: 2px solid rgba(201,169,110,.2);
  border-radius: 50%;
}

.nepali-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.nepali-content h2 { margin-bottom: 20px; }

.nepali-content p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.nepali-traditions {
  list-style: none;
  margin-bottom: 32px;
}
.nepali-traditions li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,169,110,.2);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.nepali-traditions li .trad-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.nepali-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.nepali-images img {
  width: 100%; height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.nepali-images img:first-child {
  grid-column: span 2;
  height: 300px;
}

/* ── Testimonials ─────────────────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--beige-light);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}

.testimonial-card .quote-icon {
  font-size: 3rem;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 16px;
  opacity: .4;
}

.testimonial-card p {
  color: var(--text-light);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
}
.testimonial-author .name {
  font-weight: 600;
  font-size: .95rem;
}
.testimonial-author .event-type {
  font-size: .8rem;
  color: var(--text-light);
}

/* ── Contact ──────────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--beige-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info h2 { margin-bottom: 20px; }

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.contact-details { list-style: none; }
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--beige-dark);
}
.contact-details .detail-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-details .detail-text strong {
  display: block;
  margin-bottom: 2px;
}
.contact-details .detail-text span {
  color: var(--text-light);
  font-size: .95rem;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.contact-social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.contact-social a:hover {
  background: var(--gold);
  color: var(--white);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 8px;
  color: var(--brown);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--beige-dark);
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  background: var(--beige-light);
  color: var(--text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.form-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,.4);
}

.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: .85rem;
  color: var(--text-light);
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: .95rem; line-height: 1.7; max-width: 300px; }

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
}

/* ── Lightbox / Modal ─────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  overflow: hidden;
}
.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox-close:hover { background: var(--gold); }

/* ── Animations ───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity .6s ease;
}
.fade-in.visible { opacity: 1; }

/* stagger children */
.stagger-children .fade-up:nth-child(1) { transition-delay: .05s; }
.stagger-children .fade-up:nth-child(2) { transition-delay: .1s; }
.stagger-children .fade-up:nth-child(3) { transition-delay: .15s; }
.stagger-children .fade-up:nth-child(4) { transition-delay: .2s; }
.stagger-children .fade-up:nth-child(5) { transition-delay: .25s; }
.stagger-children .fade-up:nth-child(6) { transition-delay: .3s; }

/* ── Mobile Nav Overlay ───────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(250,246,240,.98);
  backdrop-filter: blur(20px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  color: var(--brown-dark);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--brown-dark);
  cursor: pointer;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; }
  .nepali-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .reel-card { flex: 0 0 260px; }
  .reel-card video { height: 400px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-visual { grid-template-columns: 1fr; }
  .hero-card:nth-child(2) { margin-top: 0; }
  .hero-card:nth-child(3) { margin-top: 0; }
  .hero-card:nth-child(4) { display: none; }
}
