:root {
  --beige: #D4B896;
  --beige-light: #E8D5BE;
  --beige-pale: #F5EDE0;
  --cream: #FAF7F2;
  --charcoal: #3A3A3A;
  --charcoal-dark: #2A2A2A;
  --charcoal-light: #5A5A5A;
  --gold: #C9A96E;
  --white: #FFFFFF;

  /* Jewel accents — one per collection family, echoing the deep
     bridal tones a couture site is expected to carry */
  --jewel-maroon: #6E1423;
  --jewel-maroon-light: #8C2A3A;
  --jewel-emerald: #1F4B3F;
  --jewel-emerald-light: #35695A;

  --shadow: 0 8px 40px rgba(58,58,58,0.10);
  --shadow-lg: 0 20px 60px rgba(58,58,58,0.15);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--charcoal); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px;
}

/* Honeypot — visually hidden, still reachable by bots that fill every field */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ── NAV ── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 60px;
  background: rgba(250,247,242,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,184,150,0.2);
  transition: box-shadow 0.3s;
}
nav.site-nav.scrolled { box-shadow: var(--shadow); }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 68px; object-fit: contain; }
.nav-links { display: flex; gap: 36px; list-style: none; position: relative; }
.nav-links a { text-decoration: none; color: var(--charcoal); font-size: 13px; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; position: relative; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.current { color: var(--gold); }
/* Shared sliding underline — one element GSAP glides between links
   (assets/js/motion.js), instead of each link animating its own. Falls
   back to nothing visible if JS doesn't run; .current still gets the
   gold text color above either way. */
.nav-indicator { position: absolute; bottom: -4px; left: 0; height: 1px; width: 0; background: var(--gold); opacity: 0; pointer-events: none; }
.nav-cta { background: var(--charcoal); color: var(--cream); padding: 10px 24px; border: none; font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: background 0.3s; }
.nav-cta:hover { background: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 24px; height: 1.5px; background: var(--charcoal); display: block; transition: 0.3s; }

.mobile-menu { display: none; position: fixed; inset: 0; background: var(--cream); z-index: 1001; flex-direction: column; justify-content: center; align-items: center; gap: 32px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 24px; font-family: 'Cormorant Garamond', serif; color: var(--charcoal-dark); text-decoration: none; letter-spacing: 2px; }
.mobile-menu a.current { color: var(--gold); }
.mobile-close { position: absolute; top: 24px; right: 28px; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--charcoal); }

/* ── BUTTONS ── */
.btn-primary { background: var(--charcoal-dark); color: var(--cream); padding: 15px 36px; text-decoration: none; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s; border: 1px solid transparent; display: inline-block; cursor: pointer; font-family: 'Jost', sans-serif; }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); }
.btn-outline { border: 1px solid var(--charcoal); color: var(--charcoal); padding: 15px 36px; text-decoration: none; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s; background: transparent; display: inline-block; cursor: pointer; font-family: 'Jost', sans-serif; }
.btn-outline:hover { background: var(--charcoal); color: var(--cream); }
.btn-outline.on-dark { border-color: rgba(255,255,255,0.5); color: var(--cream); }
.btn-outline.on-dark:hover { background: var(--cream); color: var(--charcoal-dark); }
.btn-whatsapp { background: #25D366; color: white; padding: 15px 36px; text-decoration: none; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-whatsapp:hover { background: #128C7E; }

/* ── SECTION SHARED ── */
main { padding-top: 98px; }
section { padding: 100px 60px; }
.section-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 54px); font-weight: 300; color: var(--charcoal-dark); margin-bottom: 16px; line-height: 1.2; }
.section-title em { font-style: italic; }
.section-line { width: 60px; height: 1px; background: var(--gold); margin-bottom: 50px; }
.section-center { text-align: center; }
.section-center .section-line { margin: 0 auto 50px; }
.section-line-tight { margin: 0 auto 24px; }
.mt-40 { margin-top: 40px; }
.page-hero {
  position: relative; overflow: hidden;
  padding: 160px 60px 70px; text-align: center;
  background:
    radial-gradient(circle at 12% 15%, rgba(201,169,110,0.22) 0%, transparent 45%),
    radial-gradient(circle at 88% 85%, rgba(212,184,150,0.26) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='30' cy='30' rx='2' ry='2' fill='%233A3A3A' fill-opacity='0.08'/%3E%3C/svg%3E"),
    linear-gradient(145deg, #F5EDE0 0%, #FAF7F2 40%, #EDE0CC 100%);
}
.page-hero::before, .page-hero::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 0;
}
.page-hero::before { width: 340px; height: 340px; top: -140px; left: -100px; background: radial-gradient(circle, rgba(201,169,110,0.3) 0%, rgba(201,169,110,0) 70%); }
.page-hero::after { width: 300px; height: 300px; bottom: -140px; right: -90px; background: radial-gradient(circle, rgba(212,184,150,0.35) 0%, rgba(212,184,150,0) 70%); }
.page-hero > * { position: relative; z-index: 1; }
.page-hero .section-label { justify-content: center; }
/* Same corner-bracket accent as the home hero, for consistency across
   every page's intro banner. */
.page-hero-frame-corner { position: absolute; z-index: 0; width: 56px; height: 56px; border: 1px solid rgba(201,169,110,0.5); pointer-events: none; }
.page-hero-frame-corner.top-left { top: 34px; left: 34px; border-right: none; border-bottom: none; }
.page-hero-frame-corner.bottom-right { bottom: 24px; right: 34px; border-left: none; border-top: none; }
/* The brand's own illustrations, used as a large faint watermark instead
   of a small front-and-center icon — mix-blend-mode:multiply drops out
   each image's near-white backdrop so only the linework reads, and low
   opacity keeps it a background texture rather than competing with the
   heading. */
.page-hero .page-hero-icon {
  position: absolute; z-index: 0; top: 50%; right: -30px;
  transform: translateY(-50%) rotate(-4deg);
  width: 300px; height: auto; max-width: 32vw;
  opacity: 0.16; mix-blend-mode: multiply;
  margin: 0; pointer-events: none;
}
/* Left-side companion watermark — mirrored so the pair reads as
   deliberately bracketing the heading rather than two copies of the
   same pose facing the same way. */
.page-hero .page-hero-icon.left {
  right: auto; left: -30px;
  transform: translateY(-50%) rotate(4deg) scaleX(-1);
}
.page-hero p.lead { max-width: 640px; margin: 0 auto; font-size: 15px; line-height: 1.9; color: var(--charcoal-light); }
.page-hero-icon { width: 64px; height: 64px; object-fit: contain; margin: 0 auto 20px; }
.page-hero-icon.tight { margin-bottom: 6px; }
.page-hero.not-found { min-height: 70vh; min-height: 70dvh; display: flex; flex-direction: column; justify-content: center; }
.not-found-actions { margin-top: 32px; }

/* ── HERO CAROUSEL (home) ── */
#hero-carousel {
  position: relative; overflow: hidden;
  /* 100vh on mobile is measured as if the browser's address bar were
     always hidden, which isn't the actual visible area on first load —
     this cuts off content and causes a jump as the bar shows/hides while
     scrolling. 100dvh tracks the real visible viewport; the 100vh line
     stays first as a fallback for browsers that don't support dvh. */
  min-height: 100vh;
  min-height: 100dvh;
  background: linear-gradient(145deg, #F5EDE0 0%, #FAF7F2 45%, #EDE0CC 100%);
}
/* Static decoration layer — sits once behind every slide, never rebuilt
   on transition, so it's what fixes the "empty background" feeling
   without adding any per-slide flicker. */
.hero-bg-decor { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); }
.hero-glow-1 { width: 560px; height: 560px; top: -160px; right: -120px; background: radial-gradient(circle, rgba(201,169,110,0.35) 0%, rgba(201,169,110,0) 70%); }
.hero-glow-2 { width: 460px; height: 460px; bottom: -180px; left: -120px; background: radial-gradient(circle, rgba(212,184,150,0.4) 0%, rgba(212,184,150,0) 70%); }
.hero-texture {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='30' cy='30' rx='2' ry='2' fill='%233A3A3A'/%3E%3C/svg%3E");
}
.hero-decor-leaf { position: absolute; opacity: 0.08; }
.hero-decor-leaf.tl { top: 50px; left: -50px; width: 320px; transform: rotate(-18deg); }
.hero-decor-leaf.br { bottom: 30px; right: -70px; width: 360px; transform: rotate(162deg); }
.hero-frame-corner { position: absolute; width: 64px; height: 64px; border: 1px solid rgba(201,169,110,0.5); pointer-events: none; }
.hero-frame-corner.top-left { top: 100px; left: 44px; border-right: none; border-bottom: none; }
.hero-frame-corner.bottom-right { bottom: 100px; right: 44px; border-left: none; border-top: none; }

.hero-slide {
  position: absolute; inset: 0; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center;
  padding: 80px 60px 70px; gap: 40px;
  transition: transform 0.9s cubic-bezier(.65,.05,.36,1);
}
.hero-slide.active { z-index: 2; }
.hero-slide-text { max-width: 560px; }

.hero-slide-eyebrow, .hero-slide-title, .hero-slide-sub, .feature-chip { opacity: 0; }
.hero-slide.active .hero-slide-eyebrow { animation: heroFadeUp 0.7s cubic-bezier(.16,.84,.44,1) 0.05s forwards; }
.hero-slide.active .hero-slide-title { animation: heroFadeUp 0.7s cubic-bezier(.16,.84,.44,1) 0.18s forwards; }
.hero-slide.active .hero-slide-sub { animation: heroFadeUp 0.7s cubic-bezier(.16,.84,.44,1) 0.31s forwards; }
.hero-slide.active .feature-chip:nth-child(1) { animation: heroFadeUp 0.7s cubic-bezier(.16,.84,.44,1) 0.44s forwards; }
.hero-slide.active .feature-chip:nth-child(2) { animation: heroFadeUp 0.7s cubic-bezier(.16,.84,.44,1) 0.52s forwards; }
.hero-slide.active .feature-chip:nth-child(3) { animation: heroFadeUp 0.7s cubic-bezier(.16,.84,.44,1) 0.6s forwards; }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.hero-slide-eyebrow { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero-slide-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4.8vw, 58px); font-weight: 400; line-height: 1.2; color: var(--charcoal-dark); margin-bottom: 22px; min-height: 2.4em; }
.hero-slide-title em { font-style: italic; color: var(--gold); }
.hero-slide-sub { font-size: 15px; line-height: 1.85; color: var(--charcoal-light); margin-bottom: 32px; min-height: 3.7em; }
.hero-features { display: flex; gap: 24px; flex-wrap: wrap; }
.feature-chip { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--charcoal-light); }
.feature-chip i { color: var(--gold); font-size: 14px; }
.hero-slide-visual { position: relative; display: flex; align-items: center; justify-content: center; height: 100%; overflow: hidden; }
.hero-slide-visual img {
  max-height: 72vh; object-fit: contain; filter: drop-shadow(0 24px 40px rgba(42,42,42,0.18));
  transform: scale(1); transition: transform 7s cubic-bezier(.25,.46,.45,.94);
}
/* Slow continuous "Ken Burns" zoom for as long as a slide stays active —
   restarts along with everything else each time .active is re-applied. */
.hero-slide.active .hero-slide-visual img { transform: scale(1.08); }
.hero-slide-visual .visual-ring { position: absolute; width: 340px; height: 340px; border: 1px solid rgba(212,184,150,0.35); border-radius: 50%; z-index: -1; }
.hero-slide-visual .visual-ring-2 { position: absolute; width: 400px; height: 400px; border: 1px solid rgba(201,169,110,0.2); border-radius: 50%; z-index: -1; }
/* The rings drift very slightly too, for a touch of parallax against the
   slide/zoom motion. */
.hero-slide.active .hero-slide-visual .visual-ring { animation: ringDrift 9s ease-in-out infinite alternate; }
.hero-slide.active .hero-slide-visual .visual-ring-2 { animation: ringDrift 11s ease-in-out infinite alternate reverse; }
@keyframes ringDrift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(6px, -6px) scale(1.03); }
}

.hero-controls { position: absolute; bottom: 32px; left: 0; right: 0; display: flex; align-items: center; justify-content: center; gap: 22px; z-index: 5; }
.hero-arrow { background: rgba(255,255,255,0.5); border: 1px solid rgba(58,58,58,0.15); color: var(--charcoal); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; font-size: 13px; }
.hero-arrow:hover { background: var(--gold); color: white; border-color: var(--gold); }
.hero-dots { display: flex; gap: 10px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(58,58,58,0.2); border: none; cursor: pointer; transition: all 0.3s; }
.hero-dot.active { background: var(--gold); transform: scale(1.3); }
.hero-scroll-hint { position: absolute; bottom: 32px; right: 40px; z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll-hint span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--charcoal-light); }
.scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 1.5s ease-in-out infinite; }

/* ── TRUST STRIP (fills the gap right under the hero) ── */
#trust-strip { background: var(--charcoal-dark); padding: 30px 40px; }
.trust-row { display: flex; justify-content: center; align-items: center; gap: 0; max-width: 900px; margin: 0 auto; flex-wrap: wrap; }
.trust-item {
  padding: 0 36px; position: relative;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 17px;
  color: var(--cream); letter-spacing: 0.3px;
}
.trust-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 22px; background: rgba(255,255,255,0.15); }
@media (max-width: 700px) {
  .trust-item { padding: 0 18px; font-size: 15px; }
  .trust-item:not(:last-child)::after { display: none; }
}

/* ── BRAND PROMISE STRIP ── */
#promise { background: var(--charcoal-dark); text-align: center; padding: 70px 40px; }
#promise p { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 2.6vw, 30px); font-style: italic; color: var(--gold); max-width: 780px; margin: 0 auto; line-height: 1.5; }

/* ── COLLECTIONS SHOWCASE (home teaser tiles) ── */
#collections-teaser { background: var(--beige-pale); }
.collections-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; max-width: 1180px; margin: 0 auto; }
.tile { position: relative; aspect-ratio: 3/4; overflow: hidden; text-decoration: none; display: block; background: var(--charcoal-dark); }
.tile img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.6s; opacity: 0.92; }
.tile:hover img { transform: scale(1.08); }
.tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,16,0.88) 0%, rgba(20,18,16,0.15) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; }
.tile-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--cream); font-weight: 400; }
.tile-cta { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 6px; display: flex; align-items: center; gap: 6px; }

/* ── SIGNATURE SILHOUETTES (editorial illustration strip) ── */
#silhouettes { background: var(--charcoal-dark); }
#silhouettes .section-label { color: var(--beige); }
#silhouettes .section-title { color: var(--cream); }
#silhouettes .section-line { background: var(--beige); }
.silhouette-scroller { display: flex; gap: 24px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; max-width: 1200px; margin: 0 auto; }
.silhouette-scroller::-webkit-scrollbar { height: 6px; }
.silhouette-scroller::-webkit-scrollbar-thumb { background: var(--gold); }
.silhouette-card { flex: 0 0 220px; scroll-snap-align: start; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 18px 18px 20px; text-align: center; }
.silhouette-card img { height: 260px; margin: 0 auto 14px; object-fit: contain; }
.silhouette-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--cream); font-weight: 400; }
.silhouette-card span { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--beige); }

/* ── REVIEWS (slider variant — home teaser) ── */
.reviews-slider { position: relative; overflow: hidden; max-width: 900px; margin: 0 auto; }
.reviews-track { display: flex; transition: transform 0.5s ease; }
.review-card { min-width: 100%; padding: 0 20px; }
.review-inner { background: var(--white); padding: 50px; position: relative; }
.review-quote { font-family: 'Cormorant Garamond', serif; font-size: 80px; color: var(--beige-light); position: absolute; top: 20px; left: 36px; line-height: 1; }
.review-text { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; line-height: 1.7; color: var(--charcoal); margin-bottom: 30px; position: relative; z-index: 2; }
.review-author { display: flex; align-items: center; gap: 16px; }
.review-avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; background: var(--beige-pale); display: flex; align-items: center; justify-content: center; color: var(--beige); font-size: 20px; flex-shrink: 0; }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 500; font-size: 14px; color: var(--charcoal-dark); }
.review-stars { color: var(--gold); font-size: 12px; margin-top: 2px; }
.slider-controls { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--beige); cursor: pointer; transition: background 0.3s, transform 0.3s; border: none; }
.slider-dot.active { background: var(--gold); transform: scale(1.3); }
.slider-prev, .slider-next { background: none; border: 1px solid var(--beige); color: var(--charcoal); width: 44px; height: 44px; cursor: pointer; font-size: 16px; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.slider-prev:hover, .slider-next:hover { background: var(--gold); border-color: var(--gold); color: white; }
.slider-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 30px; }
.reviews-empty { min-width: 100%; text-align: center; padding: 60px; color: var(--charcoal-light); }

/* ── REVIEWS WALL (about.html — full grid) ── */
#reviews-wall { background: var(--beige-pale); }
.reviews-wall-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.wall-card { background: var(--white); padding: 32px; box-shadow: var(--shadow); }
.wall-card .review-stars { margin-bottom: 12px; font-size: 13px; }
.wall-card .review-text { font-size: 15px; margin-bottom: 20px; }
.wall-card .review-author { gap: 12px; }

/* ── CONTACT CTA BAND (home) ── */
#cta-band { background: var(--charcoal-dark); text-align: center; padding: 90px 40px; }
#cta-band .section-label { color: var(--beige); justify-content: center; }
#cta-band .section-title { color: var(--cream); }
#cta-band .section-line { background: var(--beige); margin: 0 auto 40px; }
#cta-band .btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── ABOUT PAGE ── */
#about-main { background: var(--white); }
.about-grid { display: grid; grid-template-columns: minmax(320px, 1.1fr) minmax(320px, 0.9fr); gap: 60px; align-items: center; max-width: 1000px; margin: 0 auto; }
.about-img-wrap { position: relative; max-width: 620px; margin: 0 auto; }
.about-img-frame { width: 100%; aspect-ratio: 4 / 5; background: var(--beige-pale); overflow: hidden; position: relative; max-height: 540px; }
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
/* Oversized + recentred so the parallax scroll-drift (assets/js/data.js
   initReveal, via data-parallax) never reveals a gap at the frame edge —
   its own object-fit:cover already fills the frame at rest. */
.about-img-frame img[data-parallax] { height: 140%; top: -20%; position: relative; }
.about-accent { position: absolute; bottom: -20px; right: -20px; width: 100px; height: 100px; border: 2px solid var(--beige-light); z-index: -1; }
.about-accent2 { position: absolute; top: -20px; left: -20px; width: 80px; height: 80px; background: var(--beige-pale); z-index: -1; }
.about-desc { font-size: 15px; line-height: 1.9; color: var(--charcoal-light); margin-bottom: 40px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-item { padding: 24px; border: 1px solid var(--beige-light); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--charcoal-light); margin-top: 6px; }

#craft { background: var(--cream); }
.craft-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; max-width: 1100px; margin: 0 auto; }
.craft-item { text-align: center; padding: 10px; }
.craft-item i { font-size: 30px; color: var(--gold); margin-bottom: 16px; }
.craft-item img { width: 48px; height: 48px; object-fit: contain; margin: 0 auto 16px; display: block; }
.craft-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 400; margin-bottom: 10px; color: var(--charcoal-dark); }
.craft-item p { font-size: 13px; line-height: 1.7; color: var(--charcoal-light); }

/* ── COLLECTIONS PAGE ── */
.jump-nav { position: sticky; top: 98px; z-index: 90; background: rgba(250,247,242,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(212,184,150,0.25); display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; padding: 14px 24px; }
.jump-link { background: transparent; border: 1px solid rgba(212,184,150,0.4); color: var(--charcoal); padding: 8px 20px; font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: all 0.3s; }
.jump-link:hover, .jump-link.current { background: var(--gold); border-color: var(--gold); color: white; }

.category-section { padding: 90px 60px; scroll-margin-top: 150px; }
.category-section:nth-child(odd) { background: var(--white); }
.category-section:nth-child(even) { background: var(--beige-pale); }
.category-banner { max-width: 780px; margin: 0 auto 50px; text-align: center; }
.category-banner .cat-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: white; font-size: 20px; }
.category-banner .cat-icon.maroon { background: var(--jewel-maroon); }
.category-banner .cat-icon.emerald { background: var(--jewel-emerald); }
.category-banner .cat-icon.gold { background: var(--gold); }
.category-banner p { font-size: 14px; line-height: 1.8; color: var(--charcoal-light); }

.piece-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; max-width: 1200px; margin: 0 auto; }
.piece-item { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; background: var(--beige-pale); }
.piece-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.piece-item:hover img { transform: scale(1.08); }
.piece-overlay { position: absolute; inset: 0; background: rgba(42,42,42,0.55); opacity: 0; transition: opacity 0.4s; display: flex; align-items: center; justify-content: center; }
.piece-item:hover .piece-overlay { opacity: 1; }
.piece-view { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: background 0.3s; }
.piece-view:hover { background: var(--gold); border-color: var(--gold); }

/* Lightbox / article detail (shared) — a piece's own gallery (3-6
   process/detail/final-look images with captions), not a single
   cycling image. */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.94); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 40px 20px; }
.lightbox.active { display: flex; }
.lightbox-inner { position: relative; max-width: 1000px; width: 100%; max-height: 90vh; overflow-y: auto; }
.lightbox-close { position: absolute; top: -6px; right: -6px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: white; width: 36px; height: 36px; border-radius: 50%; font-size: 15px; cursor: pointer; transition: background 0.3s; z-index: 2; }
.lightbox-close:hover { background: var(--gold); }
.lb-article-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px, 3vw, 34px); font-weight: 400; color: var(--cream); text-align: center; margin: 0 0 28px; padding-right: 40px; }
.lb-gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }
.lb-gallery-item { background: rgba(255,255,255,0.03); }
.lb-gallery-item img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.lb-gallery-item figcaption { font-size: 12px; letter-spacing: 0.5px; color: rgba(255,255,255,0.6); padding: 10px 4px; line-height: 1.5; }

/* ── CONTACT PAGE ── */
#contact-main { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1100px; margin: 0 auto; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 30px; }
.contact-icon { width: 44px; height: 44px; background: var(--beige-pale); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; font-size: 16px; }
.contact-info-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--charcoal-light); margin-bottom: 4px; }
.contact-info-value { font-size: 15px; color: var(--charcoal); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--charcoal-light); }
.form-input, .form-textarea { padding: 14px 16px; border: 1px solid var(--beige-light); background: var(--cream); font-family: 'Jost', sans-serif; font-size: 14px; color: var(--charcoal); outline: none; transition: border-color 0.3s; width: 100%; }
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { background: var(--charcoal-dark); color: var(--cream); border: none; padding: 16px 36px; font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: background 0.3s; align-self: flex-start; }
.form-submit:hover { background: var(--gold); }
.form-success { background: #f0faf4; border: 1px solid #a8d5b8; color: #2d6a4f; padding: 14px 18px; font-size: 14px; display: none; margin-top: 8px; }
.form-success.show { display: block; }
.form-error-msg { background: #fdf0ef; border: 1px solid #e3aca6; color: #a4302a; padding: 14px 18px; font-size: 14px; display: none; margin-top: 8px; }
.form-error-msg.show { display: block; }

/* ── FOOTER ── */
footer.site-footer { background: var(--charcoal-dark); color: var(--cream); padding: 80px 60px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .footer-logo { height: 56px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.85; margin-bottom: 20px; }
.footer-brand-desc { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.5); max-width: 240px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-icon { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); text-decoration: none; transition: all 0.3s; font-size: 14px; }
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: white; }
.footer-heading { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.5); font-size: 13px; transition: color 0.3s; letter-spacing: 0.5px; }
.footer-links a:hover { color: var(--beige-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-contact-item i { color: var(--gold); margin-top: 2px; font-size: 13px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 0.5px; }
.footer-admin-link { font-size: 11px; color: rgba(255,255,255,0.2); text-decoration: none; letter-spacing: 1px; transition: color 0.3s; }
.footer-admin-link:hover { color: var(--gold); }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 36px; right: 36px; z-index: 500; }
.wa-btn { width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: white; font-size: 26px; box-shadow: 0 6px 24px rgba(37,211,102,0.4); transition: transform 0.3s, box-shadow 0.3s; animation: waPulse 2.5s ease-in-out infinite; }
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.5); animation: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes scrollPulse { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
@keyframes waPulse { 0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); } 50% { box-shadow: 0 6px 36px rgba(37,211,102,0.7); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: none; }

/* No items placeholder */
.empty-state { text-align: center; padding: 60px 20px; color: var(--charcoal-light); grid-column: 1/-1; }
.empty-state i { font-size: 40px; color: var(--beige); margin-bottom: 12px; display: block; }

@media (max-width: 900px) {
  nav.site-nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  main { padding-top: 82px; }
  section, .category-section { padding: 70px 24px; }
  .page-hero { padding: 130px 24px 50px; }
  .page-hero .page-hero-icon { width: 180px; max-width: 55vw; opacity: 0.15; right: -40px; }
  /* On mobile the text and image stack instead of sitting side by side,
     which needs more vertical room than one screen height — but .hero-
     slide is locked to exactly match #hero-carousel's height (position:
     absolute; inset:0, required so the slides can stack for the sliding
     transition). Without extra room here, the overflow gets silently
     clipped by the carousel's overflow:hidden, cutting the image off at
     the top and bottom. Giving the carousel some extra height on mobile
     (a small scroll to see the dots) plus trimming the image and
     padding a bit fixes it for every slide at once. */
  #hero-carousel { min-height: calc(100vh + 140px); min-height: calc(100dvh + 140px); }
  .hero-slide { grid-template-columns: 1fr; text-align: center; padding: 70px 24px 90px; }
  .hero-slide-text { max-width: 100%; }
  .hero-features { justify-content: center; }
  .hero-slide-visual img { max-height: 32vh; }
  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-img-wrap { max-width: 100%; }
  .about-img-frame { aspect-ratio: 5 / 6; max-height: 420px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .jump-nav { top: 82px; }
  /* Image grids: the desktop minmax values are too wide to give more
     than one cramped, oversized column on a phone — tighten them so
     photos sit two-up at a reasonable size instead. */
  .piece-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
  .collections-tiles { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
  .lb-gallery-grid { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 10px; }
  .silhouette-card { flex: 0 0 160px; }
  .silhouette-card img { height: 190px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   MOTION & EDITORIAL POLISH (assets/js/motion.js drives all of this
   except the marquee and stitch divider, which are pure CSS)
   ══════════════════════════════════════════════════════════════ */

::selection { background: var(--gold); color: var(--cream); }

/* ── Scroll progress bar ── */
#scroll-progress { position: fixed; top: 0; left: 0; width: 0%; height: 3px; background: var(--gold); z-index: 10001; pointer-events: none; }

/* ── Custom cursor (desktop, fine-pointer only — motion.js only creates
   these elements at all under (hover:hover) and (pointer:fine), and the
   media query below is a second, CSS-level safety net) ── */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 10000; }
.cursor-dot { width: 6px; height: 6px; background: var(--gold); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(201,169,110,0.7); transition: width 0.25s, height 0.25s, background-color 0.25s; }
.cursor-ring.hover { width: 60px; height: 60px; background: rgba(201,169,110,0.12); }
body.has-custom-cursor, body.has-custom-cursor a, body.has-custom-cursor button, body.has-custom-cursor .piece-item, body.has-custom-cursor .tile { cursor: none; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none !important; } }

/* ── Page-transition wipe ── */
#page-transition { position: fixed; inset: 0; background: var(--charcoal-dark); z-index: 10002; transform: translateY(-100%); pointer-events: none; }

/* ── Marquee ticker ── */
.marquee { overflow: hidden; background: var(--charcoal-dark); padding: 18px 0; }
.marquee-track { display: flex; width: max-content; animation: marqueeScroll 32s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; padding: 0 28px; font-family: 'Cormorant Garamond', serif; font-size: 19px; font-style: italic; color: var(--gold); white-space: nowrap; }
.marquee-track span::after { content: '✦'; margin-left: 28px; color: rgba(255,255,255,0.28); font-size: 13px; font-style: normal; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ── Running-stitch section divider — a dashed line standing in for a
   hand-embroidery running stitch, tying the motif directly to the brand
   instead of a generic template rule/divider ── */
.stitch-divider { height: 1px; max-width: 1100px; margin: 0 auto; background-image: repeating-linear-gradient(90deg, var(--gold) 0 10px, transparent 10px 22px); opacity: 0.55; }

/* ── Numbered editorial index ── */
.section-index { display: block; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; letter-spacing: 3px; color: var(--gold); opacity: 0.65; margin-bottom: 8px; }

.btn-primary, .btn-outline { position: relative; overflow: hidden; z-index: 0; }
.btn-primary::before, .btn-outline::before {
  content: ''; position: absolute; inset: 0; background: var(--gold);
  transform: translateX(-100%); transition: transform 0.4s ease; z-index: -1;
}
.btn-outline.on-dark::before { background: var(--cream); }
.btn-primary:hover::before, .btn-outline:hover::before { transform: translateX(0); }

.form-group { position: relative; }
.form-label { transition: color 0.3s, letter-spacing 0.3s; }
.form-group:focus-within .form-label { color: var(--gold); letter-spacing: 2.5px; }
.form-input, .form-textarea { position: relative; }
.form-group::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.35s ease; transform-origin: left; }
.form-group:focus-within::after { transform: scaleX(1); }

.section-title { clip-path: inset(0 0 0 0); }

@media (max-width: 700px) {
  .marquee-track span { font-size: 16px; padding: 0 18px; }
}
