/* =============================================
   VELVET CLUB — Premium Fashion CSS
   Palette: Obsidian #0A0A0A, Ivory #F5F0E8,
   Warm Sand #C8B89A, Silver Mist #D4D0C8,
   Chalk #FAF8F5
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --obsidian:   #0A0A0A;
  --ivory:      #F5F0E8;
  --sand:       #C8B89A;
  --sand-dark:  #A89070;
  --silver:     #D4D0C8;
  --chalk:      #FAF8F5;
  --mid-grey:   #6B6560;
  --light-grey: #E8E4DE;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Inter', sans-serif;
  --font-label:   'Montserrat', sans-serif;

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

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--chalk);
  color: var(--obsidian);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- LOADER ---- */
#loader {
  position: fixed; inset: 0;
  background: var(--obsidian);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  opacity: 0;
  animation: loaderFade 1.2s ease forwards 0.2s;
}
.loader-logo img { width: 160px; filter: brightness(10); }
@keyframes loaderFade {
  0%   { opacity: 0; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}

/* ---- ANNOUNCEMENT BAR ---- */
#announcement-bar {
  background: var(--obsidian);
  color: var(--silver);
  text-align: center;
  padding: 9px 16px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  z-index: 1050;
}
#announcement-bar span { opacity: 0.85; }

/* ---- NAVBAR ---- */
#mainNav {
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--light-grey);
  transition: box-shadow var(--transition), background var(--transition);
  z-index: 1040;
  padding: 0;
}
#mainNav.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(250, 248, 245, 0.99);
}
.navbar-brand img {
  height: 44px;
  width: auto;
  transition: opacity var(--transition);
}
.navbar-brand img:hover { opacity: 0.75; }
.navbar-nav .nav-link {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--obsidian) !important;
  padding: 8px 18px !important;
  position: relative;
  transition: color var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 18px; right: 18px;
  height: 1px;
  background: var(--obsidian);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta-btn {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--obsidian);
  color: var(--ivory) !important;
  padding: 10px 22px !important;
  border-radius: 0;
  transition: background var(--transition), color var(--transition);
}
.nav-cta-btn:hover {
  background: var(--sand-dark) !important;
  color: var(--ivory) !important;
}
.nav-cta-btn::after { display: none !important; }
.navbar-toggler {
  border: 1px solid var(--obsidian);
  border-radius: 0;
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2810, 10, 10, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--obsidian);
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
#hero.loaded .hero-image-wrap img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.25) 50%,
    rgba(10,10,10,0.08) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 80px 0;
}
.hero-eyebrow {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.8s;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--ivory);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards 1.0s;
}
.hero-heading em { font-style: italic; font-weight: 300; }
.hero-subheading {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.82);
  max-width: 420px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 1.2s;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 1.4s;
}
.btn-primary-vc {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ivory);
  color: var(--obsidian);
  border: none;
  padding: 16px 36px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-primary-vc:hover {
  background: var(--sand);
  color: var(--obsidian);
  transform: translateY(-2px);
}
.btn-outline-vc {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245,240,232,0.5);
  padding: 16px 36px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all var(--transition);
}
.btn-outline-vc:hover {
  background: rgba(245,240,232,0.1);
  border-color: var(--ivory);
  color: var(--ivory);
  transform: translateY(-2px);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px; right: 40px;
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 12px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 2.0s;
}
.hero-scroll-hint::before {
  content: '';
  width: 1px; height: 60px;
  background: rgba(245,240,232,0.3);
  flex-shrink: 0;
  animation: lineGrow 1.2s ease forwards 2.2s;
  transform-origin: top;
  transform: scaleY(0);
}
@keyframes lineGrow { to { transform: scaleY(1); } }

/* ---- SECTION COMMONS ---- */
.section-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--obsidian);
}
.section-title em { font-style: italic; }
.section-divider {
  width: 40px; height: 1px;
  background: var(--sand);
  margin: 20px 0;
}
.section-divider.centered { margin: 20px auto; }

/* ---- PRODUCT SECTION ---- */
#collection { background: var(--chalk); padding: 100px 0; }
.product-image-frame {
  position: relative;
  overflow: hidden;
  background: var(--light-grey);
  aspect-ratio: 3/4;
}
.product-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: zoom-in;
}
.product-image-frame:hover img { transform: scale(1.06); }
.product-zoom-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  pointer-events: none;
}
.product-image-frame:hover .product-zoom-overlay {
  background: rgba(10,10,10,0.08);
}
.zoom-icon {
  opacity: 0; transform: scale(0.8);
  font-size: 22px; color: var(--ivory);
  transition: all var(--transition);
}
.product-image-frame:hover .zoom-icon { opacity: 1; transform: scale(1); }

/* Color swatches */
.color-swatches { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.color-swatch {
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.color-swatch::after {
  content: '';
  position: absolute; inset: 3px;
  border-radius: 50%;
  background: inherit;
}
.color-swatch:hover, .color-swatch.active {
  border-color: var(--obsidian);
  transform: scale(1.1);
}
.color-swatch.pink    { background: #E8A0C0; }
.color-swatch.beige   { background: #C8B089; }
.color-swatch.blue    { background: #7EC8E3; }
.color-swatch.green   { background: #8BB89A; }
.color-swatch.grey    { background: #A8A09A; }
.color-swatch.black   { background: #2C2825; }
.color-label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  display: block;
  margin-top: -4px;
  margin-bottom: 16px;
}

/* Size selector */
.size-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.size-btn {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  min-width: 52px;
  padding: 10px 16px;
  border: 1px solid var(--silver);
  background: transparent;
  color: var(--obsidian);
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 0;
}
.size-btn:hover, .size-btn.active {
  background: var(--obsidian);
  border-color: var(--obsidian);
  color: var(--ivory);
}

/* Pricing */
.pricing-block { padding: 24px; background: var(--light-grey); margin-bottom: 28px; }
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--silver);
}
.price-row:last-of-type { border-bottom: none; }
.price-label {
  font-family: var(--font-label);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--mid-grey);
}
.price-badge {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 500;
  color: var(--obsidian);
}
.price-note {
  font-size: 11px; color: var(--mid-grey);
  margin-top: 10px; font-style: italic;
}

/* Features */
.feature-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-label);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--light-grey);
  color: var(--mid-grey);
  margin: 4px 4px 4px 0;
  background: white;
}

/* ---- TRUST / FEATURES SECTION ---- */
#trust { background: var(--obsidian); padding: 90px 0; }
.trust-card {
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  text-align: center;
  transition: all var(--transition);
  height: 100%;
}
.trust-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,184,154,0.3);
  transform: translateY(-4px);
}
.trust-icon {
  font-size: 28px;
  color: var(--sand);
  margin-bottom: 20px;
  display: block;
}
.trust-title {
  font-family: var(--font-label);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 10px;
}
.trust-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(245,240,232,0.55);
  line-height: 1.6;
}

/* ---- WHY VELVET CLUB ---- */
#why { background: var(--ivory); padding: 100px 0; }
.why-item {
  padding: 40px 32px;
  position: relative;
  border-top: 1px solid var(--light-grey);
  transition: all var(--transition);
}
.why-item:hover { background: white; }
.why-number {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 300;
  color: var(--light-grey);
  position: absolute; top: 28px; right: 32px;
  line-height: 1;
}
.why-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400;
  margin-bottom: 12px;
}
.why-desc { font-size: 14px; color: var(--mid-grey); line-height: 1.7; }

/* ---- AI DISCLOSURE ---- */
#ai-disclosure {
  background: var(--chalk);
  padding: 60px 0;
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
}
.disclosure-box {
  max-width: 680px; margin: 0 auto;
  text-align: center; padding: 40px;
  background: white;
  border: 1px solid var(--light-grey);
}
.disclosure-box p {
  font-size: 14px; color: var(--mid-grey);
  line-height: 1.8; margin-bottom: 0;
}

/* ---- POLICY SECTIONS ---- */
.policy-section { background: white; padding: 80px 0; }
.policy-section + .policy-section { background: var(--chalk); }
.policy-box {
  max-width: 760px; margin: 0 auto;
}
.policy-box h3 {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 400;
  margin-bottom: 8px;
}
.policy-body { font-size: 14px; color: var(--mid-grey); line-height: 1.9; }
.policy-body h5 {
  font-family: var(--font-label);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--obsidian);
  margin: 24px 0 8px;
}
.policy-body ul { padding-left: 18px; }
.policy-body ul li { margin-bottom: 6px; }

/* ---- FAQ ---- */
#faq { background: var(--chalk); padding: 100px 0; }
.accordion-item {
  border: none !important;
  border-bottom: 1px solid var(--light-grey) !important;
  background: transparent !important;
  border-radius: 0 !important;
}
.accordion-button {
  font-family: var(--font-label);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--obsidian) !important;
  background: transparent !important;
  padding: 22px 0;
  box-shadow: none !important;
}
.accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230A0A0A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.accordion-body {
  font-size: 14px; color: var(--mid-grey);
  line-height: 1.8; padding: 0 0 22px;
}

/* ---- CONTACT / ORDER SECTION ---- */
#contact { background: var(--obsidian); padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px;
}
.contact-info-item i {
  font-size: 20px; color: var(--sand);
  flex-shrink: 0; margin-top: 2px;
}
.contact-info-item a {
  color: var(--ivory);
  font-size: 15px;
  text-decoration: none;
  transition: color var(--transition);
}
.contact-info-item a:hover { color: var(--sand); }

/* ---- FOOTER ---- */
#footer {
  background: var(--obsidian);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 0 32px;
}
.footer-logo img { height: 48px; filter: brightness(10); }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem; font-weight: 300;
  color: rgba(245,240,232,0.45);
  margin-top: 10px;
}
.footer-heading {
  font-family: var(--font-label);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px; color: rgba(245,240,232,0.55);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.footer-links a:hover { color: var(--ivory); }
.footer-social a {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color var(--transition);
  margin-bottom: 10px;
}
.footer-social a:hover { color: var(--sand); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px; margin-top: 40px;
  font-size: 11px; color: rgba(245,240,232,0.3);
  letter-spacing: 0.05em;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}

/* ---- ORDER MODAL ---- */
.modal-content {
  border: none; border-radius: 0;
  background: var(--chalk);
}
.modal-header {
  border-bottom: 1px solid var(--light-grey);
  padding: 24px 32px;
  background: var(--obsidian);
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 400;
  color: var(--ivory);
}
.modal-header .btn-close {
  filter: invert(1);
  opacity: 0.6;
}
.modal-body { padding: 32px; }
.modal-footer {
  border-top: 1px solid var(--light-grey);
  padding: 20px 32px;
}
.form-label {
  font-family: var(--font-label);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 6px;
}
.form-control, .form-select {
  border: 1px solid var(--silver);
  border-radius: 0;
  padding: 12px 14px;
  font-size: 14px;
  background: white;
  color: var(--obsidian);
  transition: border-color var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--obsidian);
  box-shadow: none;
  outline: none;
}
.payment-radio { display: flex; gap: 16px; }
.payment-option {
  flex: 1;
  border: 1px solid var(--silver);
  padding: 16px;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
}
.payment-option.selected {
  border-color: var(--obsidian);
  background: var(--obsidian);
  color: var(--ivory);
}
.payment-option label { cursor: pointer; font-size: 13px; font-weight: 500; }
.payment-option input { display: none; }
.order-summary-line {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--light-grey);
}
.order-total {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500;
  display: flex; justify-content: space-between;
  padding-top: 12px;
}

/* ---- STICKY BUTTONS ---- */
#sticky-wa {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
#sticky-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
#mobile-bottom-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 998;
  display: none;
  background: var(--obsidian);
  padding: 14px 20px;
  gap: 12px;
}
@media (max-width: 768px) {
  #mobile-bottom-cta { display: flex; }
  #sticky-wa { bottom: 80px; }
}
.mobile-cta-btn {
  flex: 1;
  font-family: var(--font-label);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
}
.mobile-cta-primary { background: var(--ivory); color: var(--obsidian); }
.mobile-cta-wa { background: #25D366; color: white; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- UTILITY ---- */
.text-sand { color: var(--sand) !important; }
.text-ivory { color: var(--ivory) !important; }
.text-mid { color: var(--mid-grey) !important; }
.bg-chalk { background: var(--chalk) !important; }
.bg-obsidian { background: var(--obsidian) !important; }

/* ---- MARQUEE STRIP ---- */
.marquee-strip {
  background: var(--sand);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 20px;
  font-family: var(--font-label);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--obsidian);
  padding: 0 32px;
}
.marquee-dot { width: 4px; height: 4px; background: var(--obsidian); border-radius: 50%; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- GLASSMORPHISM card variant ---- */
.glass-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-sm);
}

/* Lightbox overlay */
#lightbox {
  display: none; position: fixed; inset: 0;
  z-index: 9000;
  background: rgba(10,10,10,0.92);
  align-items: center; justify-content: center;
  cursor: zoom-out;
}
#lightbox.active { display: flex; }
#lightbox img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  animation: fadeUp 0.3s ease;
}
#lightbox-close {
  position: absolute; top: 20px; right: 28px;
  color: var(--ivory); font-size: 32px;
  cursor: pointer; line-height: 1;
  opacity: 0.7; transition: opacity var(--transition);
}
#lightbox-close:hover { opacity: 1; }

@media (max-width: 576px) {
  .hero-heading { font-size: 2.6rem; }
  .modal-body { padding: 20px; }
  .modal-header { padding: 18px 20px; }
  .modal-footer { padding: 16px 20px; }
}
