/* ============================================
   SAVOY BAGS — Luxury CSS Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Poppins:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --beige:      #F5EFE6;
  --gold:       #D4AF37;
  --gold-light: #E8D07A;
  --gold-dark:  #B8960C;
  --ivory:      #FFFFF5;
  --black:      #111111;
  --blush:      #E8CFC5;
  --grey:       #7A7A7A;
  --white:      #FFFFFF;
  --shadow-sm:  0 4px 20px rgba(212,175,55,.12);
  --shadow-md:  0 8px 40px rgba(212,175,55,.18);
  --shadow-lg:  0 16px 60px rgba(17,17,17,.12);
  --radius:     16px;
  --radius-sm:  8px;
  --transition: all .4s cubic-bezier(.25,.8,.25,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--ivory);
  color: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; }

/* ---- Luxury Background Pattern ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(232,207,197,.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   LOADING SPINNER
   ============================================ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ivory);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.2rem;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--black); letter-spacing: .1em;
}
.loader-logo span { color: var(--gold); }
.loader-ring {
  width: 48px; height: 48px;
  border: 3px solid var(--blush);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: .9rem 2rem;
  background: rgba(255,255,245,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212,175,55,.15);
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
.navbar.scrolled {
  padding: .65rem 2rem;
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  letter-spacing: .06em;
  color: var(--black);
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 2.4rem;
}
.nav-links a {
  font-size: .85rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--black); position: relative; padding-bottom: 4px;
  transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .35s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: .5rem 1.3rem !important;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 16px rgba(212,175,55,.35);
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(212,175,55,.45) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; background: none;
  padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,245,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,.2);
  padding: 1.5rem 2rem 2rem;
  flex-direction: column; gap: 1.5rem;
  animation: slideDown .35s ease;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--black); padding: .5rem 0;
  border-bottom: 1px solid rgba(212,175,55,.12);
  transition: color .3s;
}
.mobile-nav a:hover { color: var(--gold); }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 1000;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.40);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform .3s ease;
}
.whatsapp-float:hover { transform: scale(1.12); animation-play-state: paused; }
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.40); }
  50%        { box-shadow: 0 6px 36px rgba(37,211,102,.65); }
}
.whatsapp-tooltip {
  position: fixed; bottom: 2.45rem; right: 5.2rem; z-index: 1000;
  background: var(--white);
  color: var(--black);
  font-size: .78rem; font-weight: 500;
  padding: .45rem .9rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease .2s;
}
.whatsapp-float:hover + .whatsapp-tooltip,
.whatsapp-tooltip:hover { opacity: 1; }

/* ============================================
   PAGE WRAPPER
   ============================================ */
.page-wrapper { min-height: 100vh; position: relative; z-index: 1; }
.content-wrap { padding-top: 80px; }
section { overflow: hidden; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 860px;  margin: 0 auto; padding: 0 1.5rem; }
.section-pad  { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }

.section-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-tag::before, .section-tag::after {
  content: '—'; margin: 0 .4rem;
  opacity: .6;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.22;
  color: var(--black);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle {
  font-size: .95rem; color: var(--grey);
  max-width: 520px; line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ---- Gold Divider ---- */
.gold-divider {
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.text-center .gold-divider { margin: 1rem auto 1.5rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .9rem 2.2rem;
  border-radius: 50px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute;
  inset: 0; background: rgba(255,255,255,.15);
  transform: translateX(-100%);
  transition: transform .4s ease;
}
.btn:hover::before { transform: translateX(0); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(212,175,55,.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212,175,55,.50);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,.35);
}
.btn-wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.30);
}
.btn-wa:hover {
  background: #1EBD5A;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,.45);
}
.btn-wa svg { width: 20px; height: 20px; fill: currentColor; }

/* ---- Scroll-reveal ---- */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity .75s ease, transform .75s ease; }
.reveal-right { opacity: 0; transform: translateX(36px);  transition: opacity .75s ease, transform .75s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }

/* ---- Glassmorphism card ---- */
.glass-card {
  background: rgba(255,255,245,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   PAGE HERO BANNER (inner pages)
   ============================================ */
.page-hero {
  height: 320px;
  background: linear-gradient(135deg, var(--beige) 0%, var(--blush) 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1548036328-c9fa89d128fa?w=1200&q=60') center/cover no-repeat;
  opacity: .12;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--black);
  margin-bottom: .5rem;
}
.page-hero-sub {
  font-size: .9rem; color: var(--grey);
  letter-spacing: .1em; text-transform: uppercase;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--black);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: .87rem; line-height: 1.8; color: rgba(255,255,255,.55); }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600;
  color: var(--white); margin-bottom: 1.2rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(212,175,55,.3);
}
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .78rem; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: var(--gold); }

/* ============================================
   HOME — HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, var(--beige) 0%, var(--ivory) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute; top: -10%; right: -8%;
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(212,175,55,.10) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -15%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,207,197,.20) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  padding: 5rem 3rem 5rem 5rem;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .20em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.16;
  color: var(--black);
  margin-bottom: 1.4rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-sub {
  font-size: 1rem; color: var(--grey);
  max-width: 420px; line-height: 1.85;
  margin-bottom: 2.4rem;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-badge {
  display: flex; align-items: center; gap: .8rem;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(212,175,55,.2);
}
.hero-badge-item {
  display: flex; flex-direction: column;
  align-items: center;
  padding: 0 1.2rem;
  border-right: 1px solid rgba(212,175,55,.2);
}
.hero-badge-item:last-child { border-right: none; }
.hero-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--gold);
}
.hero-badge-label { font-size: .7rem; color: var(--grey); text-transform: uppercase; letter-spacing: .1em; }
.hero-visual {
  position: relative; height: 100%; min-height: 600px;
  overflow: hidden;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(245,239,230,.30) 0%, transparent 40%);
}
.hero-floating-card {
  position: absolute; bottom: 2.5rem; left: -2rem;
  padding: 1.2rem 1.6rem;
  min-width: 200px;
  z-index: 2;
}
.hero-float-tag {
  font-size: .68rem; color: var(--gold);
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: .3rem;
}
.hero-float-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600; color: var(--black);
}
.hero-float-price { font-size: .85rem; color: var(--grey); margin-top: .2rem; }

/* ============================================
   FEATURED COLLECTION
   ============================================ */
.featured { background: var(--ivory); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--beige);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: .65rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .75rem; border-radius: 50px;
}
.product-info { padding: 1.4rem; }
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem; font-weight: 600;
  color: var(--black); margin-bottom: .35rem;
}
.product-desc { font-size: .8rem; color: var(--grey); line-height: 1.65; margin-bottom: .9rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; color: var(--gold);
}
.product-price small { font-size: .7rem; font-family: 'Poppins', sans-serif; font-weight: 400; color: var(--grey); display: block; }
.btn-sm {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  padding: .55rem 1.1rem;
  border-radius: 50px;
  background: var(--gold);
  color: var(--white);
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: .4rem;
}
.btn-sm:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(212,175,55,.35);
}
.btn-sm svg { width: 14px; height: 14px; fill: currentColor; }

/* ============================================
   WHY CHOOSE
   ============================================ */
.why-choose { background: var(--beige); }
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature-card {
  padding: 2.4rem 1.8rem;
  text-align: center;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-bottom: 2px solid var(--gold);
}
.feature-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--beige), var(--blush));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  border: 1px solid rgba(212,175,55,.2);
}
.feature-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--black); margin-bottom: .5rem;
}
.feature-text { font-size: .82rem; color: var(--grey); line-height: 1.7; }

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: linear-gradient(135deg, #C9A227 0%, var(--gold) 50%, #E8C84A 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.cta-strip .section-title { color: var(--white); margin-bottom: .8rem; position: relative; }
.cta-strip .section-subtitle { color: rgba(255,255,255,.80); margin-bottom: 2rem; position: relative; }
.btn-white {
  background: var(--white);
  color: var(--gold-dark);
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
  position: relative;
}
.btn-white:hover {
  background: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,.20);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story { background: var(--ivory); }
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.story-img-wrap {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/5;
}
.story-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.story-img-accent {
  position: absolute; top: -1.5rem; left: -1.5rem;
  width: 100%; height: 100%;
  border: 2px solid rgba(212,175,55,.30);
  border-radius: var(--radius);
  z-index: -1;
}
.story-badge {
  position: absolute; bottom: 2rem; right: -2rem;
  padding: 1.4rem 1.8rem;
  text-align: center;
  z-index: 2;
}
.story-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 800; color: var(--gold);
  line-height: 1;
}
.story-badge-text { font-size: .75rem; color: var(--grey); white-space: nowrap; }

.mv-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.mv-card { padding: 2.8rem; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); border-top: 3px solid var(--gold); }
.mv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--black);
  margin-bottom: 1rem;
}
.mv-card p { font-size: .9rem; color: var(--grey); line-height: 1.8; }

.craft-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.craft-card {
  padding: 2rem 1.6rem;
  background: var(--beige);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}
.craft-card:hover { background: var(--white); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.craft-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600; color: var(--black);
  margin: .8rem 0 .5rem;
}
.craft-card p { font-size: .8rem; color: var(--grey); }
.craft-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 800; color: var(--gold);
  opacity: .35; line-height: 1;
}

.london-section { background: var(--beige); }
.london-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.london-img-wrap {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/10;
}
.london-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}
.product-card-full .product-img-wrap { aspect-ratio: 1/1.1; }

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-masonry {
  columns: 3;
  column-gap: 1.4rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.4rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .55s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.55) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  display: flex; align-items: flex-end;
  padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  font-size: .8rem; color: rgba(255,255,255,.90);
  font-weight: 500; letter-spacing: .05em;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(17,17,17,.93);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem;
  transition: background .3s;
  cursor: pointer;
}
.lightbox-close:hover { background: var(--gold); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { background: var(--ivory); }
.contact-hero-box {
  max-width: 700px; margin: 0 auto;
  text-align: center; padding: 4rem 0;
}
.contact-info-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; margin: 3rem 0;
}
.contact-info-card {
  padding: 2.2rem 1.6rem;
  text-align: center;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-info-icon {
  width: 56px; height: 56px;
  background: var(--beige);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  border: 1px solid rgba(212,175,55,.2);
}
.contact-info-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-info-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600; color: var(--black);
  margin-bottom: .4rem;
}
.contact-info-card p, .contact-info-card a {
  font-size: .85rem; color: var(--grey);
}
.contact-info-card a:hover { color: var(--gold); }

.contact-wa-box {
  max-width: 560px; margin: 0 auto;
  text-align: center;
  padding: 3.5rem;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212,175,55,.15);
}
.wa-icon-big {
  width: 80px; height: 80px;
  background: rgba(37,211,102,.10);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.wa-icon-big svg { width: 40px; height: 40px; fill: #25D366; }
.contact-wa-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--black); margin-bottom: .8rem;
}
.contact-wa-box p { font-size: .88rem; color: var(--grey); margin-bottom: 1.8rem; line-height: 1.75; }
.btn-wa-lg {
  background: #25D366;
  color: var(--white);
  font-size: .9rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 1.1rem 2.6rem;
  border-radius: 50px;
  display: inline-flex; align-items: center; gap: .7rem;
  box-shadow: 0 8px 28px rgba(37,211,102,.35);
  transition: var(--transition);
}
.btn-wa-lg:hover {
  background: #1EBD5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,211,102,.50);
}
.btn-wa-lg svg { width: 22px; height: 22px; fill: currentColor; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,175,55,.15);
}
.map-wrap iframe { width: 100%; height: 380px; display: block; border: none; }

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  background: var(--black);
  padding: .9rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(212,175,55,.15);
  border-bottom: 1px solid rgba(212,175,55,.15);
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
}
.marquee-dot {
  color: var(--gold) !important;
  font-size: .65rem !important;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   LOOKBOOK GRID (NEW ARRIVALS)
   ============================================ */
.lookbook-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 1.4rem;
  align-items: start;
}
.lookbook-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.lookbook-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.lookbook-item--tall img { height: 560px; }
.lookbook-item:hover img { transform: scale(1.06); }
.lookbook-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem 1.5rem;
  transition: background .4s;
}
.lookbook-item:hover .lookbook-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 60%);
}
.lookbook-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 50px;
  margin-bottom: .6rem;
  width: fit-content;
}
.lookbook-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .9rem;
}
.lookbook-btn {
  display: inline-block;
  padding: .45rem 1.2rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: background .3s, color .3s;
  width: fit-content;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s, background .3s, color .3s;
}
.lookbook-item:hover .lookbook-btn {
  opacity: 1;
  transform: translateY(0);
}
.lookbook-btn:hover { background: var(--gold); color: var(--black); }

/* ============================================
   PROCESS / CRAFTSMANSHIP
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.process-step {
  text-align: center;
  padding: 2rem 1.2rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(212,175,55,.15);
}
.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  opacity: .18;
  line-height: 1;
  margin-bottom: .5rem;
}
.process-icon {
  width: 56px;
  height: 56px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.process-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-dark);
}
.process-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .6rem;
}
.process-text {
  font-size: .82rem;
  color: var(--grey);
  line-height: 1.75;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(212,175,55,.12);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: .98rem;
  font-style: italic;
  color: var(--black);
  line-height: 1.8;
  margin: 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(212,175,55,.2);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--black);
}
.testimonial-loc {
  font-size: .75rem;
  color: var(--grey);
  margin-top: .1rem;
}

/* ============================================
   LOOKBOOK BANNER (FULL-WIDTH SPLIT)
   ============================================ */
.lookbook-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.lookbook-banner-img {
  overflow: hidden;
}
.lookbook-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.lookbook-banner:hover .lookbook-banner-img img { transform: scale(1.04); }
.lookbook-banner-content {
  background: var(--black);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .6rem;
}
.lookbook-banner-content .gold-divider { margin: .8rem 0 1rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .products-full-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .craft-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 3rem 2rem; order: 2; }
  .hero-visual { min-height: 380px; order: 1; height: 380px; }
  .story-grid, .london-grid { grid-template-columns: 1fr; }
  .story-img-wrap { aspect-ratio: 16/9; }
  .story-badge { right: 1rem; }
  .mv-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .lookbook-grid { grid-template-columns: 1fr 1fr; }
  .lookbook-item--tall img { height: 420px; }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .lookbook-banner { grid-template-columns: 1fr; min-height: auto; }
  .lookbook-banner-img { aspect-ratio: 16/9; }
  .lookbook-banner-content { padding: 3.5rem 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 4rem 0; }
  .products-full-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .hero-content { padding: 2.5rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-strip { padding: 3.5rem 0; }
  .gallery-masonry { columns: 1; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-wa-box { padding: 2.5rem 1.5rem; }
  .hero-badge { flex-wrap: wrap; gap: .5rem; }
  .hero-badge-item { flex: 1; min-width: 80px; border-right: none; border-bottom: 1px solid rgba(212,175,55,.2); padding: .6rem .5rem; }
  .hero-badge-item:last-child { border-bottom: none; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero-floating-card { left: 1rem; bottom: 1rem; right: auto; }
  .craft-grid { grid-template-columns: 1fr; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .lookbook-item img, .lookbook-item--tall img { height: 320px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .lookbook-banner-content { padding: 3rem 1.5rem; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .whatsapp-float { bottom: 1.2rem; right: 1.2rem; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .process-grid { grid-template-columns: 1fr; }
  .lookbook-banner-content { padding: 2.5rem 1.2rem; }
}
