/* Forever N Beauty – Luxury Lash Studio */
:root {
  --pink-soft: #fdf2f4;
  --pink-blush: #f5d4d4;
  --pink-rose: #e8b4b8;
  --gold-champagne: #d4af37;
  --gold-light: #e8d5a3;
  --gold-dark: #b8860b;
  --charcoal: #2c2c2c;
  --charcoal-soft: #5a5a5a;
  --white: #ffffff;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-gold: 0 4px 24px rgba(212, 175, 55, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--pink-soft);
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 0;
  color: var(--charcoal);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 1rem;
  color: var(--charcoal);
}

h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

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

a:hover {
  color: var(--gold-champagne);
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  padding-top: max(1.25rem, env(safe-area-inset-top));
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

.nav-logo img {
  height: 65px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
}

.nav-shop {
  padding: 0.4rem 0.9rem;
  background: var(--gold-champagne);
  color: var(--white) !important;
  border-radius: 4px;
  font-weight: 500;
}

.nav-shop:hover {
  background: var(--gold-dark);
  color: var(--white) !important;
}

/* Hero */
.hero {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 1.5rem;
  background: linear-gradient(180deg, rgba(253, 242, 244, 0.85) 0%, rgba(245, 212, 212, 0.9) 100%),
    url("../images/nav-bg-lash.jpg") center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.hero h1 {
  margin-bottom: 0.75rem;
}

.hero-font-showcase {
  margin: 0 0 0.75rem;
}

.hero-font-showcase p {
  margin: 0.5rem 0;
  font-size: clamp(3rem, 10vw, 4.5rem);
  color: var(--charcoal);
}

.hero-font-showcase .font-greatvibes { font-family: "Great Vibes", cursive; }

.hero-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal-soft);
  max-width: 480px;
  margin: 0 auto 1rem;
}

.hero-buttons-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-cta {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--gold-champagne);
  color: var(--white) !important;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--gold-champagne);
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-cta:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold);
}

.hero-cta-outline {
  background: transparent;
  color: var(--gold-dark) !important;
  border-color: var(--gold-champagne);
}

.hero-cta-outline:hover {
  background: var(--gold-champagne);
  color: var(--white) !important;
}

/* 404 page */
.hero-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-404-sub {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.hero-404-msg {
  font-size: 1rem;
  color: var(--charcoal-soft);
  max-width: 420px;
  margin: 0 auto 1.5rem;
  font-weight: 500;
}

.contact-block-404 {
  max-width: 480px;
  margin: 0 auto;
}

.hero-infinity {
  margin: 0.25rem 0 0 3rem;
  font-size: 8rem;
  font-family: "Playfair Display", serif;
  line-height: 1;
  display: inline-block;
  transform: scaleX(1.8);
  background: linear-gradient(90deg, var(--pink-rose) 0%, var(--pink-blush) 25%, var(--pink-soft) 50%, var(--pink-blush) 75%, var(--pink-rose) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.shop-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: var(--gold-champagne);
  color: var(--white) !important;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.shop-btn:hover {
  background: var(--gold-dark);
}

/* Section dividers */
.section-divider {
  text-align: center;
  padding: 0.5rem 0;
  background: var(--pink-soft);
}

.divider-accent {
  font-size: 1.25rem;
  color: var(--gold-champagne);
  letter-spacing: 0.5em;
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Sections */
.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.section-alt {
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-title .accent {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.service-icon {
  font-size: 1.75rem;
  color: var(--gold-champagne);
  margin-bottom: 1rem;
}

.service-card {
  padding: 1.25rem;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.12), 0 0 40px rgba(232, 180, 184, 0.08), var(--shadow-soft);
  border-top: 3px solid var(--gold-champagne);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.25), 0 0 60px rgba(232, 180, 184, 0.15), var(--shadow-gold);
  border-top-color: var(--gold-dark);
}

.service-card h3 {
  color: var(--charcoal);
}

.service-card p {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}

/* Before & After */
#before-after.section {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

#before-after .section-title {
  margin-bottom: 0.75rem;
}

#about.section {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

#about .section-title {
  margin-bottom: 0.75rem;
}

#testimonials.section {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

#testimonials .section-title {
  margin-bottom: 0.75rem;
}

#testimonials .testimonials-grid {
  margin-top: 0.5rem;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}

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

.ba-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--pink-blush) 0%, var(--pink-soft) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  border: 2px dashed rgba(212, 175, 55, 0.3);
  margin-bottom: 0.5rem;
}

.ba-caption {
  font-size: 0.9rem;
  color: var(--gold-dark);
  margin: 0;
  font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.testimonial-card {
  padding: 1.25rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--gold-champagne);
  margin: 0;
  font-style: italic;
}

.testimonial-card p {
  margin: 0 0 0.5rem;
  color: var(--charcoal);
  font-size: 1.05rem;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold-dark);
}

/* Instagram */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}

.ig-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ig-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-gold);
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contact form */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(232, 180, 184, 0.5);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-champagne);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Footer */
.footer-tagline {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  margin: 0 0 0.5rem;
  font-style: italic;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0.5rem 0;
}

/* About */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-text {
  max-width: 42rem;
}

.about-photo {
  border-radius: 8px;
  overflow: hidden;
  padding: 6px;
  background: var(--pink-soft);
  box-shadow:
    0 0 0 1px rgba(232, 180, 184, 0.3),
    0 0 25px 8px var(--pink-blush),
    0 0 20px rgba(212, 175, 55, 0.08);
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

.about-text p {
  margin: 0 0 0.75rem;
  color: var(--charcoal);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
}

/* Artist intro - name + photo */
.artist-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.artist-name {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 0;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 20px rgba(212, 175, 55, 0.4),
    0 0 40px rgba(232, 213, 163, 0.2),
    0 2px 4px rgba(0, 0, 0, 0.08);
}

.artist-intro .about-photo {
  max-width: 120px;
}

@media (max-width: 600px) {
  .artist-intro .about-photo {
    max-width: 100px;
  }
}

/* Contact */
.contact-block {
  text-align: center;
  padding: 1rem;
}

.contact-block p {
  margin: 0.5rem 0;
  color: var(--charcoal-soft);
}

.contact-block a {
  font-size: 1.1rem;
}

/* Social icons */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: var(--charcoal-soft);
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  color: var(--gold-dark);
  transform: scale(1.1);
}

.social-icon {
  width: 28px;
  height: 28px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1.25rem;
  color: var(--charcoal-soft);
  font-size: 0.9rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer .copyright {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Gallery page */
.gallery-hero {
  padding: 6rem 2rem 2.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--pink-soft) 0%, var(--pink-blush) 100%);
}

.gallery-hero h1 {
  margin-bottom: 0.5rem;
}

.gallery-hero p {
  color: var(--charcoal-soft);
  margin: 0;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--pink-blush);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal-soft);
  font-size: 0.9rem;
  border: 1px solid rgba(212, 175, 55, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
  animation: lightboxFadeIn 0.2s ease;
}

@keyframes lightboxFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  max-width: 96vw;
  max-height: 96vh;
  cursor: default;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 96vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.2);
  animation: lightboxZoomIn 0.25s ease;
}

@keyframes lightboxZoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Shop page */
.shop-hero {
  padding: 6rem 2rem 2.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--pink-soft) 0%, var(--pink-blush) 100%);
}

.shop-hero h1 {
  margin-bottom: 0.5rem;
}

.shop-hero p {
  color: var(--charcoal-soft);
  margin: 0;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.shop-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.12), 0 0 40px rgba(232, 180, 184, 0.08), var(--shadow-soft);
  border-top: 3px solid var(--gold-champagne);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.25), 0 0 60px rgba(232, 180, 184, 0.15), var(--shadow-gold);
}

.shop-card-image {
  aspect-ratio: 1;
  background: var(--pink-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal-soft);
  font-size: 0.9rem;
}

.shop-card h3 {
  padding: 1rem 1.25rem 0;
  margin: 0;
}

.shop-card p {
  padding: 0.5rem 1.25rem 1rem;
  margin: 0;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}

.shop-card-btn {
  display: block;
  margin: 0 1.25rem 1.25rem;
  padding: 0.6rem 1rem;
  background: var(--gold-champagne);
  color: var(--white) !important;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.shop-card-btn:hover {
  background: var(--gold-dark);
}

.shop-cta {
  text-align: center;
  padding: 1.5rem 0 0;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.shop-cta p {
  margin: 0.5rem 0;
  color: var(--charcoal-soft);
}

/* FAQ */
.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-size: 1.15rem;
  color: var(--charcoal);
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.faq-a {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-a a {
  color: var(--gold-dark);
}

.nav-shop.active {
  color: var(--white) !important;
}

/* Mobile */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .nav {
    padding: 1rem 1.25rem;
  }

  .nav-inner {
    flex-wrap: wrap;
  }

  .nav-logo img {
    height: 58px;
  }

  .nav-toggle-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--charcoal);
    order: 2;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 3;
    gap: 0;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-shop {
    margin: 0.75rem 0;
    padding: 0.75rem 1rem;
    text-align: center;
    justify-content: center;
  }

  .hero {
    padding: 7rem 1.25rem 2rem;
  }

  .hero-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .hero-cta {
    width: 100%;
    max-width: 280px;
    padding: 1rem 1.5rem;
    text-align: center;
  }

  .hero-infinity {
    margin: 0.25rem 0 0;
  }

  .section {
    padding: 2rem 1.25rem;
  }

  .section-title {
    margin-bottom: 1rem;
  }

  .section-title .accent {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }

  .services-grid {
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .contact-block {
    padding: 1.5rem 1rem;
  }

  .contact-block a {
    font-size: 1rem;
  }

  .social-links {
    gap: 1.25rem;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

  .footer {
    padding: 1.5rem 1rem;
    font-size: 0.85rem;
  }

  .gallery-hero,
  .shop-hero {
    padding: 6rem 1.25rem 3rem;
  }

  .gallery-grid {
    padding: 2rem 1rem 4rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .gallery-item {
    min-height: 0;
  }

  .shop-grid {
    gap: 1.25rem;
  }

  .shop-card h3 {
    padding: 1rem 1rem 0;
  }

  .shop-card p {
    padding: 0.5rem 1rem 1rem;
  }

  .shop-card-btn {
    margin: 0 1rem 1rem;
    padding: 0.75rem 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    font-size: 1.75rem;
  }

  .lightbox-content {
    max-width: 95vw;
    max-height: 90vh;
  }

  .lightbox-content img {
    max-height: 90vh;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}
