/* ================================================================
   ASHRAF SAREE CENTER — Modern CSS
   Design: Luxury editorial aesthetic
   Palette: Warm ivory · Deep charcoal · Gold accent
================================================================ */

/* ── Custom Properties ── */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e2c97e;
  --gold-dark:   #9e7b2e;
  --charcoal:    #1a1a1a;
  --charcoal-2:  #2d2d2d;
  --ivory:       #faf8f3;
  --ivory-2:     #f0ece2;
  --text:        #3d3d3d;
  --text-light:  #777;
  --white:       #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-h: 72px;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

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

/* ================================================================
   PAGE LOADER
================================================================ */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  text-align: center;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 28px;
  animation: pulse-gold 1.8s ease-in-out infinite;
}
@keyframes pulse-gold {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: load-bar 1.4s ease forwards;
}
@keyframes load-bar {
  to { width: 100%; }
}

/* ================================================================
   NAVBAR
================================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1003;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
#navbar.scrolled {
  background: rgba(250, 248, 243, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  height: 60px;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
  transition: height var(--transition);
}
#navbar.scrolled .nav-logo img { height: 38px; }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color var(--transition);
  padding-bottom: 4px;
}
#navbar.scrolled .nav-link { color: var(--charcoal); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--gold); }
#navbar.scrolled .nav-link:hover { color: var(--gold-dark); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
/* When scrolled, bars go dark to show on ivory background */
#navbar.scrolled .nav-toggle span { background: var(--charcoal); }
/* When menu is open, bars go gold so they're visible against the dark drawer */
.nav-toggle.open span { background: var(--gold-light); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO SECTION
================================================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow-x: hidden;
}
.hero-swiper {
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.72) 0%,
    rgba(26,26,26,0.38) 60%,
    rgba(26,26,26,0.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 800px;
}
.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 6px 18px;
  margin-bottom: 24px;
  border-radius: 2px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}
.btn-hero {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 14px 40px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-hero:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}

/* Swiper overrides */
.hero-pagination .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.5);
  opacity: 1;
  transition: all var(--transition);
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}
.hero-prev,
.hero-next {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
}
.hero-prev::after, .hero-next::after { display: none; }
.hero-prev i, .hero-next i { font-size: 0.85rem; }
.hero-prev:hover, .hero-next:hover {
  background: var(--gold);
  transform: scale(1.08);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce-fade 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}
@keyframes bounce-fade {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

/* ================================================================
   STATS STRIP
================================================================ */
.stats-strip {
  background: var(--charcoal);
  padding: 56px 24px;
  overflow: hidden;
}
.stats-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  overflow: hidden;
}
.stat-item {
  padding: 16px 8px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.stat-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  vertical-align: top;
  line-height: 1.4;
}
.stat-item p {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}

/* ================================================================
   SECTION HEADER (shared)
================================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto;
  border-radius: 2px;
}

/* ================================================================
   ABOUT SECTION
================================================================ */
.about-section {
  padding: 96px 0;
  background: var(--ivory);
  overflow-x: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
  margin-bottom: 64px;
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-lead {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
}
.about-text p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
}
.about-text strong { color: var(--charcoal); }

.about-quote {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-top: 12px;
}
.about-quote .fa-quote-left {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 10px;
  opacity: 0.6;
}
.about-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 10px;
}
.about-quote cite {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-transform: uppercase;
}

/* MD photo card */
.about-card-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.about-img-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: var(--charcoal);
}
.about-img-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  opacity: 0.93;
  transition: opacity var(--transition), transform 0.6s ease;
}
.about-img-card:hover img {
  opacity: 1;
  transform: scale(1.02);
}
.about-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,26,26,0.85));
  padding: 32px 20px 20px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-img-label strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}
.about-img-label span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Video */
.video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--charcoal);
  position: relative;
}
.video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  z-index: 1;
  pointer-events: none;
}
.video-inner video {
  width: 100%;
  max-height: 560px;
  display: block;
  object-fit: cover;
}

/* ================================================================
   COLLECTIONS SECTION
================================================================ */
.collections-section {
  padding: 96px 0;
  background: var(--ivory-2);
  overflow-x: hidden;
}

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(61,61,61,0.25);
  padding: 10px 24px;
  border-radius: 2px;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--charcoal);
  color: var(--gold-light);
  border-color: var(--charcoal);
}

/* Gallery grid — Masonry layout */
.gallery-grid {
  position: relative;
}
/* clearfix so floats don't overflow */
.gallery-grid::after {
  content: '';
  display: table;
  clear: both;
}
.gallery-sizer {
  width: calc(33.333% - 11px);
}
.gallery-item {
  width: calc(33.333% - 11px);
  margin-bottom: 16px;
  float: left;
}
.gallery-item.hidden {
  display: none;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal-2);
  cursor: pointer;
}
.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-card:hover img {
  transform: scale(1.07);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,26,26,0.75) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-card:hover .gallery-overlay {
  opacity: 1;
}
.gallery-cat {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 4px 12px;
  border-radius: 2px;
}

/* ================================================================
   CONTACT SECTION
================================================================ */
.contact-section {
  padding: 96px 0;
  background: var(--ivory);
  overflow-x: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Map */
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 500px;
}
.contact-map iframe {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  display: block;
}

/* Contact right */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ci-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}
.ci-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.ci-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.ci-text p a {
  color: var(--gold-dark);
  transition: color var(--transition);
}
.ci-text p a:hover { color: var(--charcoal); }

/* Social links (inside contact) */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: background var(--transition), transform var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* Contact form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,168,76,0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--ivory);
  border: 1px solid rgba(61,61,61,0.15);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-light); }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.btn-submit:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background: var(--charcoal);
}
.footer-top {
  padding: 64px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-brand img {
  height: 50px;
  object-fit: contain;
  filter: brightness(1.2) saturate(0.8);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav strong,
.footer-social strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-social-icons {
  display: flex;
  gap: 10px;
}
.footer-social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  transition: all var(--transition);
}
.footer-social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}
.footer-bottom {
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}

/* ================================================================
   BACK TO TOP
================================================================ */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* ================================================================
   LIGHTBOX
================================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.96);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.lightbox.open #lightbox-img { transform: scale(1); }
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(6px);
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--gold); color: var(--charcoal); }
.lightbox-prev:hover  { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover  { transform: translateY(-50%) scale(1.05); }

/* ================================================================
   AOS overrides
================================================================ */
[data-aos] { will-change: transform, opacity; }

/* ================================================================
   MOBILE MENU OVERLAY
================================================================ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
}
.nav-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-card-wrap {
    position: static;
    max-width: 360px;
    margin: 0 auto;
  }
  .footer-top-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Mobile nav — slide-in drawer from the RIGHT */
  .nav-overlay { display: block; }
  .nav-toggle  { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -320px;   /* start off-screen by exact px, not %, prevents overflow flash */
    width: 280px;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 36px;
    gap: 28px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.35);
    z-index: 1001;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .nav-links.open { right: 0; }

  .nav-links .nav-link,
  #navbar .nav-links .nav-link,
  #navbar.scrolled .nav-links .nav-link {
    font-size: 1.05rem;
    color: var(--white) !important;
    letter-spacing: 0.06em;
  }
  .nav-links .nav-link:hover {
    color: var(--gold-light) !important;
  }
  .nav-link::after { background: var(--gold-light); }

  /* Stats */
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat-item + .stat-item::before { display: none; }

  /* About */
  .about-grid { gap: 32px; }
  .about-section { padding: 64px 0; }

  /* Gallery — 2 compact columns on tablet */
  .gallery-sizer,
  .gallery-item {
    width: calc(50% - 8px);
  }
  .gallery-card {
    aspect-ratio: 4 / 5;
    overflow: hidden;
  }
  .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-section { padding: 64px 0; }
  .contact-map { min-height: 280px; }
  .contact-map iframe {
    min-height: 280px;
    max-width: 100%;
  }

  /* Form row */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand { grid-column: auto; }
  .footer-top { padding: 48px 20px; }

  /* Lightbox */
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  #back-to-top { bottom: 20px; right: 20px; }

  /* Sections padding tighten */
  .collections-section { padding: 64px 0; }
  .stats-strip { padding: 40px 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-sub   { font-size: 0.9rem; }

  /* Gallery — 2 compact columns on phones with fixed height cards */
  .gallery-sizer,
  .gallery-item {
    width: calc(50% - 6px);
  }
  .gallery-grid {
    /* tighter gutter on phone */
  }
  /* Fix card height on mobile so images are compact — no giant tall portraits */
  .gallery-card {
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }
  .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .contact-form { padding: 20px 16px; }

  .container { padding: 0 14px; }

  .filter-bar { gap: 6px; }
  .filter-btn { padding: 8px 14px; font-size: 0.66rem; }

  .section-title { font-size: 1.8rem; }
  .collections-section { padding: 48px 0; }
}

/* ================================================================
   UTILITIES
================================================================ */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
