/* ═══════════════════════════════════════════
   SAVITA SYNTHETICS — Premium Luxury CSS
   ═══════════════════════════════════════════ */

:root {
  --color-bg-primary:    #0D0D0D;
  --color-bg-secondary:  #111111;
  --color-bg-elevated:   #1A1A1A;
  --color-gold-primary:  #B8922A;
  --color-gold-highlight:#D4A840;
  --color-gold-light:    #E8C96A;
  --color-gold-dim:      #7A6020;
  --color-text-primary:  #F2F2F0;
  --color-text-muted:    #999999;
  --color-text-gold:     #B8922A;
  --color-border:        #2A2A2A;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; }

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg-primary); }
::-webkit-scrollbar-thumb { background: var(--color-gold-dim); border-radius: 3px; }

/* ── CONTAINER ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-gold-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.section-heading {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--color-text-muted);
  font-size: 16px;
  margin-bottom: 40px;
  text-align: center;
}

.gold-underline {
  width: 60px;
  height: 2px;
  background: var(--color-gold-primary);
  margin-bottom: 32px;
}
.gold-underline.centered { margin: 0 auto 40px; }

/* ── BRAND NAME ── */
.brand-savita, .logo-savita { color: var(--color-text-primary); font-weight: 700; }
.brand-synth, .logo-synthetics { color: var(--color-gold-primary); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--color-gold-primary);
  color: #0D0D0D;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 2px;
  border: 2px solid var(--color-gold-primary);
  position: relative;
  overflow: hidden;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--color-gold-primary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 2px;
  border: 2px solid var(--color-gold-primary);
  position: relative;
  overflow: hidden;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}

.btn-primary::after, .btn-outline::after, .shimmer-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::after, .btn-outline:hover::after, .shimmer-btn:hover::after { left: 150%; }
.btn-primary:hover { background: var(--color-gold-highlight); border-color: var(--color-gold-highlight); }
.btn-outline:hover { background: var(--color-gold-primary); color: #0D0D0D; }
.btn-primary.full-width { width: 100%; text-align: center; }

/* ── CUSTOM CURSOR ── */
#cursor-dot, #cursor-ring { display: none; }

/* Normal cursor everywhere, pointer on interactive elements */
body { cursor: default; }
a, button, .filter-btn, select, [role="button"], .masonry-item, .fabric-card { cursor: pointer; }

/* ── INTRO OVERLAY ── */
#intro-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
#intro-logo {
  width: 200px;
  height: auto;
  opacity: 0;
  transform: scale(0.6);
  border-radius: 8px;
}

/* ── LOGO IMAGE (navbar & footer) ── */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  border-radius: 4px;
}
#intro-text {
  display: none;
}
#intro-savita {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #F2F2F0;
  letter-spacing: 0.15em;
}
#intro-synthetics {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.35em;
  color: var(--color-gold-primary);
  text-transform: uppercase;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, border-bottom 0.4s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: var(--color-bg-primary);
  padding: 12px 0;
  border-bottom-color: var(--color-gold-primary);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-savita {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.logo-synthetics {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold-primary);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--color-gold-primary); }
.nav-links a:hover::after { width: 100%; }

.btn-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold-primary);
  border: 1.5px solid var(--color-gold-primary);
  padding: 9px 22px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}
.btn-quote:hover { background: var(--color-gold-primary); color: #0D0D0D; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-gold-primary);
  border-radius: 2px;
  transition: transform 0.3s;
}

/* ── MOBILE DRAWER ── */
#mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--color-bg-primary);
  z-index: 9500;
  padding: 60px 40px;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  border-left: 1px solid var(--color-border);
}
#mobile-drawer.open { right: 0; }
#mobile-drawer ul { display: flex; flex-direction: column; gap: 28px; margin-top: 20px; }
#mobile-drawer a {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--color-text-primary);
  transition: color 0.3s;
}
#mobile-drawer a:hover { color: var(--color-gold-primary); }
.drawer-quote {
  font-size: 18px !important;
  color: var(--color-gold-primary) !important;
  border: 1px solid var(--color-gold-primary);
  padding: 10px 20px;
  border-radius: 2px;
  display: inline-block;
}
#drawer-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: var(--color-gold-primary);
  font-size: 22px;
  cursor: pointer;
}
#drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
#drawer-overlay.active { opacity: 1; pointer-events: all; }

/* ── HERO ── */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1.1);
  will-change: transform;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.75;
  filter: brightness(1.00) saturate(1.25) contrast(1.20);
  pointer-events: none;
}
.hero-mobile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: none;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.72) 0%,
    rgba(13,13,13,0.45) 40%,
    rgba(13,13,13,0.72) 75%,
    rgba(13,13,13,0.96) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--color-gold-primary);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
}
.hero-heading {
  font-size: clamp(40px, 7vw, 72px);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-h1-white { color: var(--color-text-primary); }
.hero-h1-gold { color: var(--color-gold-primary); }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(242, 242, 240, 0.88);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }

.hero-scroll-arrow {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-arrow {
  display: block;
  font-size: 28px;
  color: var(--color-gold-primary);
  animation: bounce 1.8s ease-in-out infinite;
  margin-top: 48px;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 0 24px 32px;
  flex-wrap: wrap;
}
.stat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(13,13,13,0.85);
  border: 1px solid var(--color-gold-primary);
  padding: 12px 24px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: default;
}
.stat-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: none;
  pointer-events: none;
}
.stat-pill:hover::before {
  left: 140%;
  transition: left 0.6s ease;
}
.stat-pill:hover {
  background: rgba(13,13,13,0.95);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
}
.stat-icon { color: var(--color-gold-primary); font-size: 12px; }

/* ── ABOUT ── */
.about-section { background: var(--color-bg-primary); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.about-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border: 2px solid var(--color-gold-primary);
  transform: rotate(0deg);
  transition: box-shadow 0.4s, transform 0.4s;
  filter: brightness(0.95);
  display: block;
  border-radius: 2px;
  cursor: zoom-in;
}
.about-img-wrap:hover .about-img {
  box-shadow: 0 0 28px rgba(184,146,42,0.25);
  transform: scale(1.02);
}
.about-para {
  color: var(--color-text-muted);
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.8;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-box {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  padding: 24px;
  border-radius: 4px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.stat-box:hover {
  border-color: var(--color-gold-primary);
  box-shadow: 0 0 20px rgba(184,146,42,0.15);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--color-gold-primary);
}
.stat-plus {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--color-gold-primary);
}
.stat-box p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

/* ── SERVICES ── */
.services-section { background: var(--color-bg-secondary); }
.services-section .section-heading,
.services-section .section-label { text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  padding: 36px 32px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
  transition: none;
  pointer-events: none;
}
.service-card:hover::before {
  left: 140%;
  transition: left 0.6s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
  border-color: var(--color-gold-primary);
  background: rgba(212, 175, 55, 0.06);
}
.service-icon { margin-bottom: 20px; }
.service-card h3 {
  font-size: 20px;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}
.service-card p { color: var(--color-text-muted); font-size: 15px; line-height: 1.7; }

/* ── CATALOGUE ── */
.catalogue-section { background: var(--color-bg-primary); }
.catalogue-section .section-heading,
.catalogue-section .section-label { text-align: center; }

.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 40px;
  border: 1.5px solid var(--color-gold-primary);
  background: transparent;
  color: var(--color-gold-primary);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--color-gold-primary);
  color: #0D0D0D;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fabric-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-gold-primary);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.fabric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(184,146,42,0.27);
}
.fabric-card.hidden { display: none; }
.fabric-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.fabric-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s;
  image-rendering: auto;
}
.fabric-card:hover .fabric-img-wrap img { transform: scale(1.05); }
.fabric-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(184,146,42,0);
  transition: background 0.3s;
}
.fabric-card:hover .fabric-hover-overlay { background: rgba(184,146,42,0.12); }
.fabric-info { padding: 20px 22px 24px; }
.fabric-info h3 {
  font-size: 17px;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}
.fabric-info p { font-size: 14px; color: var(--color-text-muted); margin-bottom: 16px; line-height: 1.6; }
.fabric-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold-primary);
  transition: color 0.3s;
}
.fabric-cta:hover { color: var(--color-gold-highlight); }

.catalogue-cta { text-align: center; margin-top: 48px; }

/* ── GALLERY ── */
.gallery-section { background: var(--color-bg-secondary); }
.gallery-section .section-heading,
.gallery-section .section-label { text-align: center; }
.gallery-filters { display: flex; gap: 10px; justify-content: center; margin-bottom: 40px; }

.masonry-grid {
  columns: 3;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.masonry-item.tall img { aspect-ratio: 3/4; }
.masonry-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s;
}
.masonry-item:hover img { transform: scale(1.03); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(184,146,42,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.masonry-item:hover .gallery-overlay { background: rgba(184,146,42,0.3); }
.zoom-icon {
  font-size: 32px;
  color: #fff;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s, transform 0.3s;
}
.masonry-item:hover .zoom-icon { opacity: 1; transform: scale(1); }
.masonry-item.g-hidden { display: none; }

.gallery-cta { text-align: center; margin-top: 40px; }

/* ── GALLERY PREVIEW GRID (homepage 3-photo layout) ── */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 260px 280px;
  gap: 12px;
}
.gp-preview-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.gp-preview-a { grid-column: 1; grid-row: 1; }
.gp-preview-b { grid-column: 2; grid-row: 1; }
.gp-preview-c { grid-column: 3; grid-row: 1 / 3; }
.gp-preview-d { grid-column: 1; grid-row: 2; }
.gp-preview-e { grid-column: 2; grid-row: 2; }

.gp-preview-d img { object-position: top; }
.gp-preview-e img { object-position: top; }
.gp-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gp-preview-item:hover img { transform: scale(1.04); }
.gp-preview-item .gallery-overlay { position: absolute; inset: 0; background: rgba(184,146,42,0); display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.gp-preview-item:hover .gallery-overlay { background: rgba(184,146,42,0.3); }
.gp-preview-item:hover .zoom-icon { opacity: 1; transform: scale(1); }

@media (max-width: 768px) {
  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .gp-preview-a { grid-column: 1; grid-row: 1; }
  .gp-preview-b { grid-column: 2; grid-row: 1; }
  .gp-preview-c { grid-column: 1 / 3; grid-row: 2; }
  .gp-preview-d { grid-column: 1; grid-row: 3; }
  .gp-preview-e { grid-column: 2; grid-row: 3; }
}
@media (max-width: 480px) {
  .gallery-preview-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gp-preview-a, .gp-preview-b, .gp-preview-c, .gp-preview-d, .gp-preview-e { grid-column: 1; grid-row: auto; }
  .gp-preview-item img { aspect-ratio: 16/9; height: auto; }
}

/* ── PHOTO GALLERY MODAL ── */
#photo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow-y: scroll;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
#photo-modal.active {
  opacity: 1;
  pointer-events: all;
}
.photo-modal-inner {
  width: 100%;
  max-width: 1100px;
  margin: 24px auto;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 32px;
}
.photo-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.photo-modal-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--color-text-primary);
}
#photo-modal-close {
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s;
}
#photo-modal-close:hover { border-color: var(--color-gold-primary); color: var(--color-gold-primary); }
.photo-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.photo-modal-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid var(--color-border);
}
.photo-modal-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.photo-modal-item:hover img { transform: scale(1.05); }
.photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--color-text-primary);
  font-size: 12px;
  padding: 20px 12px 10px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .photo-modal-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-modal-inner { padding: 20px 16px; }
}
@media (max-width: 480px) {
  .photo-modal-grid { grid-template-columns: 1fr; }
}

/* ── LIGHTBOX ── */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 99000;
  display: none;
  align-items: center;
  justify-content: center;
}
#lightbox.active { display: flex; }
#lb-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  animation: lbZoom 0.3s ease;
}
@keyframes lbZoom {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
#lb-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border: 1px solid var(--color-gold-dim); }
#lb-close {
  position: absolute;
  top: 20px; right: 28px;
  background: none;
  border: none;
  color: var(--color-gold-primary);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s;
}
#lb-close:hover { color: var(--color-gold-highlight); }
#lb-prev, #lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(184,146,42,0.15);
  border: 1px solid var(--color-gold-dim);
  color: var(--color-gold-primary);
  font-size: 22px;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
#lb-prev:hover, #lb-next:hover { background: rgba(184,146,42,0.35); }
#lb-prev { left: 20px; }
#lb-next { right: 20px; }

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--color-bg-primary);
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(184,146,42,0.03) 30px,
    rgba(184,146,42,0.03) 31px
  );
  pointer-events: none;
}
.testimonials-section .section-heading,
.testimonials-section .section-label { text-align: center; }

.testimonials-swiper { margin-top: 48px; padding-bottom: 20px; position: relative; overflow: visible; }

.testi-nav-next,
.testi-nav-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13,13,13,0.85);
  border: 1px solid var(--color-gold-primary);
  color: var(--color-gold-primary);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
  user-select: none;
}
.testi-nav-next { right: -22px; }
.testi-nav-prev { left: -22px; }
.testi-nav-next:hover,
.testi-nav-prev:hover {
  background: var(--color-gold-primary);
  color: #0D0D0D;
  box-shadow: 0 4px 16px rgba(212,175,55,0.3);
  transform: translateY(-50%) scale(1.08);
}
.testi-nav-next.swiper-button-disabled,
.testi-nav-prev.swiper-button-disabled { opacity: 0.3; pointer-events: none; }
.testi-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-gold-dim);
  padding: 40px 36px;
  border-radius: 4px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.testi-card:hover {
  border-color: var(--color-gold-primary);
  box-shadow: 0 0 20px rgba(184,146,42,0.2);
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--color-gold-primary);
  line-height: 0.6;
  display: block;
  margin-bottom: 20px;
  opacity: 0.7;
}
.testi-text {
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.testi-stars {
  color: var(--color-gold-primary);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testi-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--color-gold-primary);
  margin-bottom: 4px;
}
.testi-role { font-size: 13px; color: var(--color-text-muted); }

/* ── CONTACT ── */
.contact-section { background: var(--color-bg-secondary); }
.contact-section .section-heading,
.contact-section .section-label { text-align: center; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}
.contact-info h3 {
  font-size: 26px;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}
.info-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--color-text-muted);
}
.info-icon { font-size: 18px; flex-shrink: 0; }
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

/* ── FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--color-bg-elevated);
  border: none;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 14px 4px;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--color-bg-elevated); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--color-gold-primary); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-muted); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── FOOTER ── */
footer {
  background: #080808;
  padding: 60px 0 0;
}
.footer-top-border {
  height: 1px;
  background: var(--color-gold-primary);
  margin-bottom: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
}
.footer-tagline {
  color: var(--color-text-muted);
  font-size: 14px;
  margin: 16px 0 24px;
  font-style: italic;
}
.social-icons { display: flex; gap: 16px; }
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-primary);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.social-icon:hover {
  border-color: var(--color-gold-primary);
  box-shadow: 0 0 12px rgba(184,146,42,0.4);
}
.footer-links h4, .footer-contact h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--color-gold-primary);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--color-gold-primary); }
.footer-contact p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--color-text-muted); }

/* ── WHATSAPP FLOAT ── */
#whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.3s;
}
#whatsapp-float:hover { transform: scale(1.1); }
#whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--color-gold-primary);
  animation: waPulse 2s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--color-bg-elevated);
  color: var(--color-text-primary);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  border: 1px solid var(--color-border);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ── SECTION DIVIDER ── */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold-dim), transparent);
  position: relative;
  overflow: visible;
}

/* ── AOS OVERRIDES ── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { height: 320px; }
  .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }
  .nav-links, .btn-quote { display: none; }
  .hero-video { object-position: 20% center; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 2; }
  .hero-stats { gap: 10px; }
  .stat-pill { font-size: 12px; padding: 10px 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  /* Hero */
  .hero-desktop { display: none; }
  .hero-mobile-img { display: block; }
  .hero-heading { font-size: clamp(30px, 9vw, 48px); }
  .hero-sub { font-size: 14px; padding: 0 8px; }
  .hero-content { padding: 0 16px; text-align: center; }
  .hero-scroll-arrow { bottom: 100px; }

  /* Typography */
  .section-heading { font-size: clamp(26px, 6vw, 36px); }
  .section-sub { font-size: 14px; padding: 0 12px; }

  /* About */
  .about-para { font-size: 14px; line-height: 1.8; }

  /* Contact */
  .contact-form input,
  .contact-form textarea,
  .contact-form select { font-size: 16px; } /* prevents iOS zoom on focus */

  /* Buttons */
  .btn-primary, .btn-outline { padding: 13px 24px; font-size: 14px; width: 100%; text-align: center; }
  .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 56px 0; }

  /* Hero */
  .hero-heading { font-size: clamp(26px, 10vw, 38px); }
  .hero-label { font-size: 10px; letter-spacing: 0.2em; }
  .hero-scroll-arrow { display: none; }

  /* Catalogue & Gallery */
  .catalogue-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }

  /* Filters */
  .filter-tabs { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .filter-btn { font-size: 12px; padding: 7px 14px; }

  /* Cards */
  .testi-card { padding: 28px 22px; }
  .service-card { padding: 28px 20px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-box { padding: 20px 12px; }
  .stat-num { font-size: 32px; }

  /* Contact */
  .contact-grid { gap: 36px; }

  /* Lightbox nav */
  #lb-prev { left: 8px; }
  #lb-next { right: 8px; }

  /* Footer */
  .footer-grid { gap: 28px; }
  .footer-brand { text-align: center; }
}

/* ── INTERACTIVE CONTACT LINKS ── */
.info-link {
  color: var(--color-text-muted);
  transition: color 0.3s;
  text-decoration: none;
}
.info-link:hover { color: var(--color-gold-primary); }

.footer-link {
  color: var(--color-text-muted);
  transition: color 0.3s;
  text-decoration: none;
}
.footer-link:hover { color: var(--color-gold-primary); }

/* ── LOCAL FACTORY PHOTO — full resolution, no degradation ── */
.masonry-item img[src^="Images/"] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* ── ABOUT IMAGE INTERACTIVE ── */
.about-img-click {
  position: relative;
  display: inline-block;
  width: 100%;
  cursor: zoom-in;
}
.about-img-zoom-hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(13,13,13,0.75);
  color: var(--color-gold-primary);
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border: 1px solid var(--color-gold-dim);
  border-radius: 2px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  backdrop-filter: blur(4px);
}
.about-img-click:hover .about-img-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

/* ── FORM VALIDATION HINTS ── */
.field-hint {
  display: block;
  font-size: 11.5px;
  margin-top: 5px;
  padding-left: 2px;
  min-height: 16px;
  transition: color 0.3s;
}
.field-hint.error { color: #e05555; }
.field-hint.success { color: #4caf50; }
.form-group input.invalid { border-bottom-color: #e05555; }
.form-group input.valid   { border-bottom-color: #4caf50; }
