
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0e0e0e;
  --charcoal: #111111;
  --gold: #D4AF37;
  --gold-light: #e8cc6a;
  --gold-pale: #f5e9b8;
  --cream: #faf8f4;
  --warm-white: #fffef9;
  --mid-grey: #888;
  --light-grey: #e8e8e8;
  --soft-grey: #f4f3f0;
  --serif: 'Playfair Display', Georgia, serif;
  --serif-alt: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.25s ease, height 0.25s ease, background 0.2s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(212,175,55,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s;
}
body:hover .cursor { opacity: 1; }
a:hover ~ .cursor, button:hover ~ .cursor { width: 18px; height: 18px; }

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  height: 72px;
  background: rgba(255,254,249,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  border-bottom-color: var(--light-grey);
  box-shadow: 0 2px 30px rgba(0,0,0,0.04);
}
.nav-left { display: flex; gap: 32px; align-items: center; }
.nav-right { display: flex; gap: 24px; align-items: center; justify-content: flex-end; }
.nav-link {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-logo {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); }
.nav-icon {
  background: none; border: none;
  cursor: none;
  color: var(--charcoal);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: color 0.2s;
}
.nav-icon:hover { color: var(--gold); }
.bag-count {
  position: absolute;
  top: 4px; right: 4px;
  width: 14px; height: 14px;
  background: var(--gold);
  color: white;
  font-size: 8px;
  font-weight: 500;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-mobile-toggle {
  display: none;
  background: none; border: none;
  cursor: none;
  color: var(--charcoal);
  flex-direction: column; gap: 5px;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
}
.hero-left::before {
  content: 'CSA';
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(212,175,55,0.35);
  text-transform: uppercase;
}
.hero-tag {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.hero-tag::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #666;
  line-height: 1.8;
  max-width: 340px;
  margin-bottom: 52px;
}
.hero-ctas { display: flex; gap: 16px; align-items: center; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 36px;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: white;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

@media (max-width: 768px) {
.btn-primary {
padding: 13px 30px;
font-size: 9px;
}
}

/* Mobile */
@media (max-width: 480px) {
.hero-ctas { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.btn-primary {
padding: 12px 24px;
/* text-align: center; */
justify-content: center;
/* font-size: 6px; */
width: 100%;      /* Optional: full-width button */
max-width: 280px; /* Optional */
}
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(5px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: none;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  text-decoration: none;
  cursor: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--charcoal); }
.hero-right {
  background: var(--soft-grey);
  position: relative;
  overflow: hidden;
}

.hero-image-placeholder{
width: 100%;
height: 100%;
overflow: hidden;
}

.hero-image{
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.hero-image-placeholder{
width: 100%;
height: 100%;
overflow: hidden;
}

.hero-image{
width: 100%;
height: 100%;
object-fit: cover;   /* fills the hero section nicely */
display: block;
}

.hero-image{
opacity: 0;
animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn{
from{
    opacity: 0;
    transform: scale(1.05);
}
to{
    opacity: 1;
    transform: scale(1);
}
}
@media (max-width: 800px) {
.hero-right{
    height: 450px;
}
}
/* 
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(212,175,55,0.06) 100%);
}
.hero-image-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.hero-img-inner {
  text-align: center;
}
.hero-img-frame {
  width: 240px; height: 320px;
  border: 1px solid rgba(212,175,55,0.3);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  margin: 0 auto 20px;
}
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212,175,55,0.15);
}
.hero-img-icon {
  opacity: 0.25;
}
.hero-img-label {
  font-family: var(--serif-alt);
  font-size: 13px;
  font-style: italic;
  color: #aaa;
  letter-spacing: 0.1em;
} */



.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #aaa;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, #aaa, transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.hero-badge {
  position: absolute;
  bottom: 48px;
  right: 48px;
  width: 100px; height: 100px;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  animation: rotateBadge 20s linear infinite;
}
.hero-badge-text {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  line-height: 1.6;
}

/* ─── MARQUEE ─── */
.marquee-strip {
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
  background: var(--cream);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 28px;
  padding: 0 28px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #888;
  white-space: nowrap;
}
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTIONS ─── */
section { padding: 100px 80px; }
.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 13px;
  font-weight: 300;
  color: #777;
  letter-spacing: 0.04em;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 60px;
}

/* ─── COLLECTION / PRODUCT GRID ─── */
.collection { background: var(--warm-white); }
.collection-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.collection-header-left {}
.collection-header-left .section-sub { margin-bottom: 0; }
.view-all-link {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.view-all-link:hover { color: var(--gold); border-color: var(--gold); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card {
  position: relative;
  cursor: none;
  group: true;
}
.product-image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--soft-grey);
  aspect-ratio: 3/4;
  margin-bottom: 24px;
}
.product-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.04) 100%);
  z-index: 1;
  transition: opacity 0.4s;
}
.product-card:hover .product-image-wrap::before { opacity: 0; }
.product-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-placeholder { transform: scale(1.04); }
.product-placeholder-icon { opacity: 0.2; }
.product-placeholder-label {
  font-family: var(--serif-alt);
  font-style: italic;
  font-size: 12px;
  color: #bbb;
  letter-spacing: 0.1em;
}
/* Color swatch inside placeholder */
.product-swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  opacity: 0.4;
}
.quick-view-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: rgba(255,254,249,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}
.product-card:hover .quick-view-overlay { transform: translateY(0); }
.quick-view-btn {
  background: none; border: 1px solid var(--charcoal);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 11px 28px;
  cursor: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  width: 100%;
}
.quick-view-btn:hover {
  background: var(--charcoal);
  color: white;
}
.wishlist-btn {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  background: rgba(255,254,249,0.9);
  border: 1px solid var(--light-grey);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s, border-color 0.2s, color 0.2s;
}
.product-card:hover .wishlist-btn { opacity: 1; transform: scale(1); }
.wishlist-btn:hover { border-color: var(--gold); color: var(--gold); }
.wishlist-btn.active { color: var(--gold); border-color: var(--gold); }
.product-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
  background: var(--charcoal);
  color: white;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.product-info {}
.product-color-hint {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.product-material {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.product-price-row {
  display: flex; align-items: baseline; gap: 10px;
}
.price-pkr {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
}
.price-usd {
  font-size: 12px;
  color: #aaa;
  font-weight: 300;
}
.add-to-bag {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px;
  background: none; border: none;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  cursor: none;
  padding: 0;
  transition: color 0.2s;
}
.add-to-bag:hover { color: var(--gold); }
.add-to-bag::before {
  content: '';
  width: 16px; height: 1px;
  background: currentColor;
  transition: width 0.3s;
}
.add-to-bag:hover::before { width: 24px; }

.product-placeholder img {
width: 100%;
height: 100%;        /* adjust card image height */
object-fit: cover;
display: block;
transition: transform 0.5s ease;
}

/* ─── STORY SECTION ─── */
.story {
  background: var(--charcoal);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-left {}
.story .section-eyebrow { color: var(--gold); }
.story .section-title { color: white; }
.story-body {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}
.story-stat-row {
  display: flex; gap: 48px;
}
.story-stat {}
.story-stat-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.story-stat-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.story-right {
  position: relative;
}
.story-image-block {
  /* background: rgba(255, 255, 255, 0.04); */
  /* border: 1px solid rgba(255,255,255,0.1); */
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.story-image-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.06) 0%, transparent 60%);
}
.story-img-content { text-align: center; }
.story-accent-box {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 120px; height: 120px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.story-accent-text {
  font-family: var(--serif);
  font-size: 11px;
  font-style: italic;
  color: white;
  text-align: center;
  line-height: 1.6;
}

.story-img-content img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

/* ─── BESPOKE BANNER ─── */
.bespoke {
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 80px;
}
.bespoke::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.bespoke-ornament {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-bottom: 32px;
}
.ornament-line { width: 60px; height: 1px; background: var(--gold); opacity: 0.4; }
.ornament-diamond {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
.bespoke .section-title { max-width: 600px; margin: 0 auto 20px; }
.bespoke-sub {
  font-size: 14px;
  font-weight: 300;
  color: #777;
  letter-spacing: 0.06em;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 48px;
}
.bespoke-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 40px;
  background: var(--charcoal);
  color: white;
  border: 1px solid var(--charcoal);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
}
.btn-instagram {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 40px;
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-instagram:hover {
  background: var(--charcoal);
  color: white;
}
.bespoke-note {
  margin-top: 32px;
  font-size: 11px;
  color: #aaa;
  letter-spacing: 0.1em;
}
.bespoke-note a { color: var(--gold); text-decoration: none; }

/* ─── FEATURES ─── */
.features {
  background: var(--warm-white);
  padding: 70px 80px;
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
}
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.feature-icon { margin: 0 auto 16px; opacity: 0.6; }
.feature-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.feature-desc {
  font-size: 12px;
  color: #888;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {}
.footer-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: white;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.footer-logo span { color: var(--gold); }
.footer-brand-desc {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255,255,255,0.45);
  max-width: 240px;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.footer-newsletter-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.newsletter-form { display: flex; }
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  color: white;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.25); }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-btn {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: white;
  padding: 12px 20px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  cursor: none;
  text-transform: uppercase;
  transition: background 0.3s;
}
.newsletter-btn:hover { background: var(--gold-light); }
.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; }
.footer-social { display: flex; gap: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

/* ─── QUICK VIEW MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(14,14,14,0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: white;
  width: 90%;
  max-width: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-image {
  background: var(--soft-grey);
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
}
.modal-body { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none;
  font-size: 20px; cursor: none; color: #666;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { color: var(--charcoal); }
.modal-tag { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.modal-name { font-family: var(--serif); font-size: 28px; font-weight: 500; margin-bottom: 6px; }
.modal-color { font-size: 11px; color: #999; letter-spacing: 0.1em; margin-bottom: 16px; }
.modal-price { font-family: var(--serif); font-size: 22px; margin-bottom: 4px; }
.modal-price-usd { font-size: 12px; color: #aaa; margin-bottom: 28px; }
.modal-desc { font-size: 13px; color: #777; line-height: 1.8; letter-spacing: 0.04em; margin-bottom: 32px; }
.modal-cta {
  width: 100%;
  padding: 16px;
  background: var(--charcoal);
  color: white;
  border: none;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: none;
  transition: background 0.3s;
}
.modal-cta:hover { background: var(--gold); }

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--charcoal);
  color: white;
  padding: 14px 24px;
  font-size: 12px;
  letter-spacing: 0.1em;
  z-index: 3000;
  display: flex; align-items: center; gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ─── PAGE REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  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; }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(255,254,249,0.98);
  backdrop-filter: blur(16px);
  padding: 24px 32px;
  border-bottom: 1px solid var(--light-grey);
  z-index: 999;
  transform: translateY(-120%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-links { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu-link {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--light-grey);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  section { padding: 80px 48px; }
  .hero-left { padding: 60px 40px 60px 48px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-left, .nav-right { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 80px 32px 60px; }
  .hero-right { height: 300px; }
  .hero-scroll { display: none; }
  section { padding: 64px 32px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .story { grid-template-columns: 1fr; }
  .story-right { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 20px; }
  footer { padding: 60px 32px; }
  .features { padding: 60px 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .bespoke { padding: 80px 32px; }
  .modal { grid-template-columns: 1fr; }
  .modal-image { aspect-ratio: 2/1; }
  .collection-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 40px; }
  .story-stat-row { gap: 32px; }
}

/* Container for the modal image */
.modal-image {
    width: 100%;
    max-width: 400px; /* Adjust this to control the maximum width of the image area */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px; /* Optional: gives the image soft rounded corners */
  }
  
  /* The actual image inside the modal */
  .modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the aspect ratio is maintained beautifully */
    display: block;
  }