:root {
  --cream:      #F5EFE4;
  --terracotta: #C4622D;
  --ember:      #E8793A;
  --umber:      #7A3318;
  --gold:       #B8974A;
  --ink:        #1A1208;
  --muted:      #7A6E63;
  --soft:       #EDE7DC;
  --border:     #D4C9B8;
  --logo-filter-terra: invert(38%) sepia(60%) saturate(600%) hue-rotate(345deg) brightness(85%) contrast(110%);
  --logo-filter-cream: brightness(0) invert(1);
  --logo-filter-ember: invert(55%) sepia(50%) saturate(500%) hue-rotate(340deg) brightness(100%) contrast(105%);

  /* Shadow system — color-tinted */
  --shadow-card:   0 2px 8px rgba(196,98,45,.06), 0 8px 24px rgba(26,18,8,.07);
  --shadow-lift:   0 4px 16px rgba(196,98,45,.1), 0 20px 48px rgba(26,18,8,.1);
  --shadow-float:  0 8px 24px rgba(196,98,45,.14), 0 32px 64px rgba(26,18,8,.12);
  --shadow-nav:    0 1px 0 rgba(212,201,184,.6), 0 4px 24px rgba(26,18,8,.06);

  /* Transition tokens */
  --t-fast:    150ms cubic-bezier(.16,1,.3,1);
  --t-base:    280ms cubic-bezier(.16,1,.3,1);
  --t-slow:    480ms cubic-bezier(.16,1,.3,1);
  --t-spring:  600ms cubic-bezier(.34,1.56,.64,1);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  background:var(--cream); color:var(--ink);
  font-family:"Jost",sans-serif; font-weight:300; overflow-x:hidden;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
}

/* Grain texture overlay */
body::after {
  content:""; position:fixed; inset:0; z-index:9999; pointer-events:none;
  opacity:.028; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:160px 160px;
}

::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:var(--cream); }
::-webkit-scrollbar-thumb { background:var(--terracotta); border-radius:2px; }

/* ─── BUTTONS ─── */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:7px;
  font-family:"Jost",sans-serif; font-weight:400;
  letter-spacing:.14em; text-transform:uppercase;
  cursor:pointer; border:none; text-decoration:none;
  transition:background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
  white-space:nowrap; line-height:1; border-radius:0; position:relative; overflow:hidden;
}
.btn:active { transform:scale(0.96); }
.btn:focus-visible { outline:2px solid var(--terracotta); outline-offset:3px; }
.btn-primary:hover { box-shadow:0 6px 20px rgba(196,98,45,.35); }
.btn-dark:hover { box-shadow:0 6px 20px rgba(26,18,8,.3); }
.btn-lg { font-size:13px; padding:14px 28px; }
.btn-md { font-size:12px; padding:11px 22px; }
.btn-sm { font-size:11px; padding:8px 16px; }
.btn-primary     { background:var(--terracotta); color:var(--cream); }
.btn-primary:hover { background:var(--umber); }
.btn-outline-ink { background:transparent; color:var(--ink); border:1px solid rgba(26,18,8,.3); }
.btn-outline-ink:hover { background:var(--ink); color:var(--cream); }
.btn-outline-terra { background:transparent; color:var(--terracotta); border:1px solid var(--terracotta); }
.btn-outline-terra:hover { background:var(--terracotta); color:var(--cream); }
.btn-dark        { background:var(--ink); color:var(--cream); }
.btn-dark:hover  { background:#2E2418; }
.btn-ghost       { background:transparent; color:var(--terracotta); border:none; }
.btn-ghost:hover { color:var(--umber); }
.btn-ghost .arrow { display:inline-block; transition:transform .2s; }
.btn-ghost:hover .arrow { transform:translateX(4px); }
.btn-white       { background:var(--cream); color:var(--terracotta); }
.btn-white:hover { background:#fff; }
.btn-ghost-white { background:transparent; color:rgba(245,239,228,.8); border:1px solid rgba(245,239,228,.3); }
.btn-ghost-white:hover { background:rgba(245,239,228,.08); }
.btn-whatsapp    { background:#25D366; color:#fff; }
.btn-whatsapp:hover { background:#1ebe59; }
.btn-soft        { background:var(--soft); color:var(--umber); border:1px solid var(--border); }
.btn-soft:hover  { background:var(--border); color:var(--ink); }

/* ─── TAGS ─── */
.tag {
  display:inline-flex; align-items:center; font-family:"Jost",sans-serif;
  font-size:10px; letter-spacing:.12em; text-transform:uppercase;
  padding:4px 10px; font-weight:400; border-radius:0;
}
.tag-terra { background:rgba(196,98,45,.1); color:var(--umber); border:0.5px solid rgba(196,98,45,.3); }
.tag-gold  { background:rgba(184,151,74,.1); color:#7A5C1A; border:0.5px solid rgba(184,151,74,.3); }
.tag-dark  { background:var(--ink); color:rgba(245,239,228,.75); }
.tag-cream { background:var(--cream); color:var(--muted); border:0.5px solid var(--border); }

/* ─── NAV ─── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  display:flex; align-items:center; justify-content:space-between;
  padding:.85rem 5vw;
  background:rgba(245,239,228,.92);
  backdrop-filter:blur(16px) saturate(1.4);
  -webkit-backdrop-filter:blur(16px) saturate(1.4);
  border-bottom:1px solid transparent;
  transition:padding var(--t-base), box-shadow var(--t-base), border-color var(--t-base), background var(--t-base);
}
nav.scrolled {
  padding:.6rem 5vw;
  background:rgba(245,239,228,.97);
  border-bottom-color:var(--border);
  box-shadow:var(--shadow-nav);
}
.nav-logo img {
  height:62px; width:auto; display:block;
  filter:var(--logo-filter-terra);
  transition:height var(--t-base), opacity var(--t-fast);
}
nav.scrolled .nav-logo img { height:48px; }
.nav-links { display:flex; gap:2.5rem; list-style:none; }
.nav-links a {
  font-size:.68rem; letter-spacing:.16em; text-transform:uppercase;
  color:var(--muted); text-decoration:none; transition:color var(--t-base);
  position:relative; padding-bottom:.28rem;
}
.nav-links a::after {
  content:""; position:absolute; bottom:0; left:0;
  width:0; height:1px; background:var(--terracotta);
  transition:width var(--t-slow);
}
.nav-links a:hover,
.nav-links a.active { color:var(--terracotta); }
.nav-links a.active::after,
.nav-links a:hover::after { width:100%; }
.hamburger {
  display:none; flex-direction:column; gap:5px; cursor:pointer;
  padding:6px; background:none; border:none;
}
.hamburger span {
  display:block; width:22px; height:1.5px; background:var(--ink);
  transition:transform var(--t-base), opacity var(--t-fast);
  transform-origin:center;
}
.hamburger.ham-open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.hamburger.ham-open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.ham-open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-links.nav-open {
  display:flex; flex-direction:column;
  position:fixed; top:0; left:0; right:0; bottom:0;
  background:rgba(245,239,228,.98);
  backdrop-filter:blur(20px);
  padding:7rem 5vw 3rem;
  gap:0; z-index:199;
  animation:navSlideIn .32s cubic-bezier(.16,1,.3,1);
}
.nav-links.nav-open li { border-bottom:1px solid var(--border); }
.nav-links.nav-open a {
  display:block; padding:1.2rem 0;
  font-size:.9rem; letter-spacing:.1em;
  color:var(--ink);
}
.nav-links.nav-open a::after { display:none; }
@keyframes navSlideIn {
  from { opacity:0; transform:translateY(-8px); }
  to   { opacity:1; transform:none; }
}

/* ─── TERRA DIVIDER ─── */
.terra-divider {
  height:2px;
  background:linear-gradient(90deg,
    transparent 0%, var(--umber) 10%,
    var(--terracotta) 30%, var(--ember) 50%,
    var(--gold) 65%, var(--ember) 80%,
    var(--terracotta) 90%, transparent 100%);
  opacity:.65;
}

/* ─── SECTION SHARED ─── */
section { padding:6rem 5vw; }
.section-tag {
  display:inline-flex; align-items:center; gap:.8rem;
  font-size:.62rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--terracotta); margin-bottom:1rem;
}
.section-tag::before { content:""; width:2rem; height:1px; background:var(--terracotta); }
h2.section-title {
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(2.2rem,4vw,3.6rem); font-weight:300; line-height:1.1; margin-bottom:1.2rem;
}
h2.section-title em { font-style:italic; color:var(--terracotta); }
.section-lead { font-size:.95rem; line-height:1.85; color:var(--muted); max-width:52ch; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding:9rem 5vw 5rem;
  position:relative; overflow:hidden;
}
.page-hero .hero-eyebrow {
  display:inline-flex; align-items:center; gap:.8rem;
  font-size:.65rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--terracotta); margin-bottom:1.4rem;
}
.page-hero .hero-eyebrow::before { content:""; width:2.5rem; height:1px; background:var(--terracotta); }
.page-hero h1 {
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(3rem,5.5vw,5.2rem);
  font-weight:300; line-height:1.02; letter-spacing:-.015em; margin-bottom:1.4rem;
}
.page-hero h1 em { font-style:italic; color:var(--terracotta); }
.page-hero p { font-size:.95rem; line-height:1.85; color:var(--muted); max-width:52ch; }
.page-hero .watermark {
  position:absolute; right:-4vw; top:50%; transform:translateY(-50%);
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(6rem,18vw,20rem); font-weight:300;
  color:transparent; -webkit-text-stroke:1px rgba(196,98,45,.05);
  white-space:nowrap; pointer-events:none; user-select:none;
}
.page-hero.dark {
  background:var(--ink); color:var(--cream);
}
.page-hero.dark .hero-eyebrow { color:var(--ember); }
.page-hero.dark .hero-eyebrow::before { background:var(--ember); }
.page-hero.dark h1 em { color:var(--ember); }
.page-hero.dark p { color:rgba(245,239,228,.6); }

/* ─── HERO (home) ─── */
#hero {
  min-height:100svh; display:grid; grid-template-columns:55fr 45fr;
  align-items:center; padding:8rem 0 5rem 5vw; gap:0;
  position:relative; overflow:hidden;
  background:url('images/hero-traditional-new.jpg') 85% top / cover no-repeat;
}
#hero::before {
  content:""; position:absolute; inset:0; z-index:0;
  background:
    linear-gradient(to right,
      rgba(245,239,228,.98) 0%, rgba(245,239,228,.94) 20%,
      rgba(245,239,228,.62) 42%, rgba(245,239,228,.12) 60%, transparent 70%),
    radial-gradient(ellipse 70% 80% at 5% 50%, rgba(196,98,45,.045) 0%, transparent 60%);
  pointer-events:none;
}
/* Bottom vignette for depth */
#hero::after {
  content:""; position:absolute; bottom:0; left:0; right:0; height:220px; z-index:0;
  background:linear-gradient(to top, rgba(245,239,228,.6) 0%, transparent 100%);
  pointer-events:none;
}
.hero-watermark {
  position:absolute; right:-6vw; top:50%; transform:translateY(-50%);
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(8rem,20vw,24rem); font-weight:300;
  color:transparent; -webkit-text-stroke:1px rgba(196,98,45,.055);
  white-space:nowrap; pointer-events:none; user-select:none;
  will-change:transform;
}
#hero > .reveal { position:relative; z-index:1; }
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:.8rem;
  font-size:.65rem; letter-spacing:.24em; text-transform:uppercase;
  color:var(--terracotta); margin-bottom:1.8rem;
}
.hero-eyebrow::before {
  content:""; width:2.5rem; height:1px; background:var(--terracotta);
  transition:width var(--t-slow);
}
h1 {
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(3.2rem,5.5vw,5.8rem);
  font-weight:300; line-height:1.02; letter-spacing:-.02em; margin-bottom:1.8rem;
}
h1 em { font-style:italic; color:var(--terracotta); }
.hero-desc {
  font-size:.95rem; line-height:1.9; color:var(--muted);
  max-width:40ch; margin-bottom:2.5rem; letter-spacing:.01em;
}
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; }
.hero-stats {
  display:flex; gap:2.5rem; margin-top:2.8rem;
  padding-top:2rem; border-top:1px solid var(--border);
}
.stat-num {
  font-family:"Cormorant Garamond",serif; font-size:2.2rem;
  font-weight:300; color:var(--terracotta); line-height:1;
}
.stat-label { font-size:.62rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin-top:.3rem; }
.hero-img-wrap { display:none; }

/* ─── ABOUT ─── */
#about, .about-section {
  background:var(--ink); color:var(--cream);
  position:relative; overflow:hidden;
}
/* Ambient radial glow */
#about::before, .about-section::before {
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 70% 60% at 15% 40%, rgba(196,98,45,.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(184,151,74,.06) 0%, transparent 50%);
}
#about .section-tag, .about-section .section-tag { color:var(--ember); }
#about .section-tag::before, .about-section .section-tag::before { background:var(--ember); }
#about h2.section-title em, .about-section h2.section-title em { color:var(--ember); }
#about .section-lead, .about-section .section-lead { color:rgba(245,239,228,.62); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; position:relative; }
.about-values { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:rgba(196,98,45,.15); margin-top:2.5rem; }
.value-cell {
  background:var(--ink); padding:2rem 1.8rem;
  border:1px solid rgba(196,98,45,.08);
  transition:background var(--t-base), border-color var(--t-base);
}
.value-cell:hover { background:rgba(196,98,45,.06); border-color:rgba(196,98,45,.2); }
.value-num { font-family:"Cormorant Garamond",serif; font-size:2.5rem; font-weight:300; color:var(--terracotta); opacity:.28; line-height:1; margin-bottom:.5rem; }
.value-title { font-size:.78rem; font-weight:500; letter-spacing:.06em; text-transform:uppercase; margin-bottom:.4rem; color:var(--cream); }
.value-desc { font-size:.73rem; color:rgba(245,239,228,.42); line-height:1.65; }
.about-frame {
  background:rgba(196,98,45,.06);
  border:1px solid rgba(196,98,45,.18);
  padding:3.5rem; position:relative;
  box-shadow:inset 0 0 60px rgba(196,98,45,.03);
}
.about-frame::before {
  content:""; position:absolute; top:10px; left:10px; right:-10px; bottom:-10px;
  border:1px solid rgba(196,98,45,.08); z-index:-1; pointer-events:none;
}
.about-logo-wrap { display:flex; align-items:center; justify-content:center; padding:3rem 2rem; }
.about-logo-wrap img { width:220px; height:auto; filter:var(--logo-filter-cream); opacity:.85; }
.about-quote {
  margin-top:2rem; font-family:"Cormorant Garamond",serif;
  font-size:1.35rem; font-weight:300; font-style:italic;
  color:rgba(245,239,228,.48); line-height:1.6;
  border-left:2px solid var(--terracotta); padding-left:1.5rem;
}

/* ─── TIMELINE ─── */
.timeline {
  display:grid; grid-template-columns:repeat(5,1fr);
  border-top:3px solid var(--terracotta); margin-top:3rem;
}
.timeline-item {
  padding:2rem 1.5rem 1.5rem; position:relative;
  border-right:1px solid var(--border);
}
.timeline-item:last-child { border-right:none; }
.timeline-dot {
  position:absolute; top:-8px; left:1.5rem;
  width:13px; height:13px; background:var(--terracotta); border-radius:50%;
  border:2px solid var(--cream);
}
.timeline-year { font-family:"Cormorant Garamond",serif; font-size:2rem; font-weight:300; color:var(--ink); line-height:1; }
.timeline-label { font-size:.75rem; color:var(--muted); margin-top:.5rem; line-height:1.5; }

/* ─── PRODUCTS SECTION AMBIENT GLOW ─── */
.products-glow {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
/* Warm radial glows that bathe the section */
.products-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 75% at 50% 72%, rgba(196,98,45,.10) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 10% 15%,  rgba(184,151,74,.07) 0%, transparent 50%),
    radial-gradient(ellipse 55% 45% at 90% 15%,  rgba(196,98,45,.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 50% 100%, rgba(122,51,24,.06)  0%, transparent 45%);
}
/* Stage spotlight — tight warm cone behind the cards */
.stack-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 65% 70% at 50% 55%, rgba(196,98,45,.11) 0%, rgba(232,121,58,.04) 40%, transparent 65%),
    radial-gradient(ellipse 90% 50% at 50% 100%, rgba(26,18,8,.06) 0%, transparent 60%);
}
/* Ensure cards sit above the stage glow */
.stack-stage .feature-card { z-index: 1; }
.stack-stage .feature-card[data-pos="0"]  { z-index: 10; }
.stack-stage .feature-card[data-pos="1"],
.stack-stage .feature-card[data-pos="-1"] { z-index: 5; }

/* ─── PRODUCTS ─── */
.products-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:3rem; flex-wrap:wrap; gap:2rem; }
.products-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.product-card {
  background:var(--soft); border:1px solid var(--border);
  overflow:hidden;
  transition:transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  text-decoration:none; color:inherit; display:block;
  box-shadow:var(--shadow-card);
}
.product-card:hover {
  transform:translateY(-6px);
  box-shadow:var(--shadow-float);
  border-color:rgba(196,98,45,.25);
}
.product-img {
  width:100%; aspect-ratio:3/4;
  background:linear-gradient(150deg,var(--border) 0%,var(--soft) 100%);
  position:relative; overflow:hidden;
}
.product-img::after {
  content:""; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(26,18,8,.45) 0%, transparent 50%);
  opacity:0; transition:opacity var(--t-base);
}
.product-card:hover .product-img::after { opacity:1; }
.product-img img {
  width:100%; height:100%; object-fit:cover; object-position:top; display:block;
  transition:transform .6s cubic-bezier(.16,1,.3,1);
}
.product-card:hover .product-img img { transform:scale(1.05); }
.product-img-badge {
  position:absolute; top:1rem; left:1rem; z-index:1;
  background:var(--terracotta); color:#fff;
  font-size:.6rem; letter-spacing:.14em; text-transform:uppercase; padding:.35rem .8rem;
}
.product-info { padding:1.4rem; }
.product-name { font-family:"Cormorant Garamond",serif; font-size:1.25rem; font-weight:400; margin-bottom:.3rem; }
.product-fabric { font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:var(--terracotta); margin-bottom:.8rem; }
.product-meta { display:flex; justify-content:space-between; align-items:center; }
.product-code { font-size:.68rem; color:var(--muted); }

/* CATALOGUE PAGE */
.catalogue-hero { background:linear-gradient(180deg, var(--cream) 0%, var(--soft) 100%); }
.catalogue-hero-grid {
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:4rem;
  align-items:end;
  justify-content:space-between;
}
.catalogue-note {
  position:relative;
  background:rgba(245,239,228,.72);
  border:1px solid var(--border);
  padding:1.6rem;
  box-shadow:var(--shadow-card);
}
.catalogue-note::before {
  content:"";
  position:absolute;
  inset:10px -10px -10px 10px;
  border:1px solid rgba(196,98,45,.16);
  pointer-events:none;
  z-index:-1;
}
.catalogue-note-label {
  font-size:.64rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--terracotta);
  margin-bottom:.8rem;
}
.catalogue-note p {
  font-size:.8rem;
  line-height:1.75;
  margin-bottom:1.3rem;
}
.catalogue-filter .filter-tab {
  display:inline-flex;
  align-items:center;
  gap:.55rem;
}
.catalogue-filter .filter-tab span {
  font-family:"Cormorant Garamond",serif;
  font-size:1rem;
  letter-spacing:0;
  line-height:1;
  opacity:.72;
}
.catalogue-section {
  background:
    radial-gradient(ellipse 80% 55% at 50% 12%, rgba(196,98,45,.08) 0%, transparent 58%),
    var(--cream);
}
.catalogue-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1.2rem;
}
.catalogue-card {
  background:rgba(237,231,220,.78);
  border:1px solid var(--border);
  color:var(--ink);
  display:flex;
  flex-direction:column;
  min-width:0;
  overflow:hidden;
  text-decoration:none;
  box-shadow:var(--shadow-card);
  transition:transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.catalogue-card[hidden] { display:none; }
.catalogue-card:hover {
  transform:translateY(-5px);
  border-color:rgba(196,98,45,.32);
  box-shadow:var(--shadow-lift);
}
.catalogue-photo {
  aspect-ratio:3/4;
  background:
    radial-gradient(ellipse 70% 60% at 50% 38%, rgba(196,98,45,.12) 0%, transparent 58%),
    linear-gradient(145deg, rgba(212,201,184,.72) 0%, rgba(245,239,228,.96) 100%);
  display:grid;
  place-items:center;
  overflow:hidden;
  position:relative;
}
.catalogue-photo::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(26,18,8,.22) 0%, transparent 44%);
  opacity:0;
  transition:opacity var(--t-base);
}
.catalogue-card:hover .catalogue-photo::after { opacity:1; }
.catalogue-photo img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
  display:block;
  transition:transform .7s cubic-bezier(.16,1,.3,1);
}
.catalogue-card:hover .catalogue-photo img { transform:scale(1.04); }
.catalogue-photo.is-empty { border-bottom:1px solid rgba(212,201,184,.76); }
.catalogue-photo.is-empty span {
  border:1px solid rgba(196,98,45,.26);
  color:rgba(122,110,99,.76);
  font-size:.62rem;
  letter-spacing:.18em;
  padding:.55rem .8rem;
  text-transform:uppercase;
}
.catalogue-card-body {
  display:grid;
  gap:.35rem;
  padding:1rem 1rem 1.05rem;
}
.catalogue-card-body span {
  color:var(--terracotta);
  font-size:.62rem;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.catalogue-card-body h3 {
  font-family:"Cormorant Garamond",serif;
  font-size:1.35rem;
  font-weight:400;
  line-height:1;
}
.catalogue-card-body .btn {
  justify-self:start;
  margin-top:.35rem;
  padding-left:0;
  padding-right:0;
}
.catalogue-empty {
  grid-column:1 / -1;
  background:rgba(237,231,220,.82);
  border:1px solid var(--border);
  color:var(--muted);
  font-size:.82rem;
  line-height:1.7;
  padding:2rem;
  text-align:center;
  box-shadow:var(--shadow-card);
}
.catalogue-empty strong {
  color:var(--terracotta);
  font-weight:400;
}
.catalogue-loading {
  min-height:180px;
  display:grid;
  place-items:center;
}
.catalogue-section .reveal,
.catalogue-cta .reveal {
  opacity:1;
  transform:none;
}
.catalogue-cta .catalogue-process {
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.catalogue-cta .wf-icon {
  font-family:"Cormorant Garamond",serif;
  font-size:1.1rem;
}

/* ─── FILTER TABS ─── */
.filter-bar {
  display:flex; gap:.6rem; flex-wrap:wrap;
  padding:1.5rem 5vw; border-bottom:1px solid var(--border);
  background:var(--cream); position:sticky; top:82px; z-index:100;
}
.filter-tab {
  padding:.5rem 1rem;
  font-size:.68rem; letter-spacing:.12em; text-transform:uppercase;
  border:1px solid var(--border); background:transparent; color:var(--muted);
  cursor:pointer; transition:all .2s; border-radius:0; font-family:"Jost",sans-serif;
}
.filter-tab:hover { border-color:var(--terracotta); color:var(--terracotta); }
.filter-tab.active { background:var(--ink); color:var(--cream); border-color:var(--ink); }

/* ─── WHOLESALE ─── */
#wholesale, .wholesale-section { background:var(--soft); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.wholesale-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
.wholesale-features { display:flex; flex-direction:column; gap:1.2rem; margin-top:2.5rem; }
.wf-item {
  display:flex; gap:1.2rem; align-items:flex-start;
  padding:1.4rem; background:var(--cream); border:1px solid var(--border); transition:border-color .3s;
}
.wf-item:hover { border-color:var(--terracotta); }
.wf-icon { width:42px; height:42px; background:var(--terracotta); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; }
.wf-text-title { font-size:.82rem; font-weight:500; margin-bottom:.3rem; }
.wf-text-desc { font-size:.73rem; color:var(--muted); line-height:1.6; }

/* ─── TERMS TABLE ─── */
.terms-table { border:1px solid var(--border); margin-top:2rem; }
.terms-row {
  display:grid; grid-template-columns:200px 1fr;
  border-bottom:1px solid var(--border); padding:1.2rem 1.5rem;
  align-items:center; transition:background .2s;
}
.terms-row:last-child { border-bottom:none; }
.terms-row:hover { background:var(--cream); }
.terms-key { font-size:.68rem; letter-spacing:.16em; text-transform:uppercase; color:var(--terracotta); font-weight:500; }
.terms-val { font-size:.88rem; color:var(--ink); line-height:1.6; }

/* ─── FORMS ─── */
.form-wrap { background:var(--cream); border:1px solid var(--border); padding:2.5rem; position:sticky; top:7rem; }
.form-title { font-family:"Cormorant Garamond",serif; font-size:1.8rem; font-weight:300; margin-bottom:.4rem; }
.form-sub { font-size:.78rem; color:var(--muted); margin-bottom:2rem; line-height:1.6; }
.form-group { margin-bottom:1.1rem; }
.form-label { font-size:.62rem; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); display:block; margin-bottom:.5rem; }
.form-input,.form-select,.form-textarea {
  width:100%; padding:.85rem 1rem;
  border:1px solid var(--border); background:var(--soft);
  font-family:"Jost",sans-serif; font-size:.85rem; font-weight:300; color:var(--ink);
  outline:none; transition:border-color .2s; -webkit-appearance:none; border-radius:0;
}
.form-input:focus,.form-select:focus,.form-textarea:focus { border-color:var(--terracotta); }
.form-textarea { resize:vertical; min-height:90px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-note { font-size:.65rem; color:var(--muted); margin-top:1.2rem; line-height:1.6; }

/* ─── MANUFACTURE / WHITE LABEL ─── */
#whitelabel, .manufacture-section {
  background:var(--ink); color:var(--cream);
  position:relative; overflow:hidden;
}
#whitelabel::before, .manufacture-section::before {
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 80% 60% at 80% 30%, rgba(196,98,45,.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(184,151,74,.05) 0%, transparent 50%);
}
#whitelabel .section-tag, .manufacture-section .section-tag { color:var(--ember); }
#whitelabel .section-tag::before, .manufacture-section .section-tag::before { background:var(--ember); }
#whitelabel h2.section-title em, .manufacture-section h2.section-title em { color:var(--ember); }
#whitelabel .section-lead, .manufacture-section .section-lead { color:rgba(245,239,228,.62); }
.wl-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(196,98,45,.12); margin-top:2.5rem; position:relative; }
.wl-card {
  background:var(--ink); padding:2.5rem 2rem;
  border:1px solid rgba(196,98,45,.07);
  transition:background var(--t-base), border-color var(--t-base);
}
.wl-card:hover { background:rgba(196,98,45,.06); border-color:rgba(196,98,45,.18); }
.wl-step {
  font-family:"Cormorant Garamond",serif; font-size:3.5rem;
  font-weight:300; color:var(--terracotta); opacity:.2; line-height:1; margin-bottom:1rem;
}
.wl-title { font-size:.88rem; font-weight:500; letter-spacing:.04em; margin-bottom:.7rem; color:var(--cream); }
.wl-desc { font-size:.75rem; color:rgba(245,239,228,.42); line-height:1.72; }
.wl-cta-bar {
  margin-top:2.5rem;
  background:linear-gradient(135deg, var(--umber) 0%, var(--terracotta) 50%, var(--ember) 100%);
  padding:2.5rem 3rem;
  display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.wl-cta-bar::before {
  content:""; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,.03) 0%, transparent 50%);
  pointer-events:none;
}
.wl-cta-text {
  font-family:"Cormorant Garamond",serif; font-size:1.6rem;
  font-weight:300; font-style:italic; color:#fff;
  text-shadow:0 1px 12px rgba(26,18,8,.2);
}
.wl-cta-actions { display:flex; gap:1rem; flex-wrap:wrap; }

/* ─── PROCESS TIMELINE ─── */
.process-steps {
  display:grid; grid-template-columns:repeat(5,1fr);
  border-top:1px solid var(--border); margin-top:3rem; position:relative;
}
.process-steps::before {
  content:""; position:absolute; top:-2px; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--terracotta),var(--ember));
}
.process-step {
  padding:2rem 1.5rem; border-right:1px solid var(--border);
}
.process-step:last-child { border-right:none; }
.process-num { font-size:.65rem; letter-spacing:.22em; text-transform:uppercase; color:var(--terracotta); margin-bottom:.8rem; }
.process-name { font-family:"Cormorant Garamond",serif; font-size:1.3rem; font-weight:400; color:var(--ink); margin-bottom:.5rem; }
.process-desc { font-size:.75rem; color:var(--muted); line-height:1.65; }

/* ─── CAPABILITIES ─── */
.capability-list { margin-top:1.5rem; }
.capability-item {
  display:grid; grid-template-columns:36px 1fr;
  padding:1rem 0; border-bottom:1px solid var(--border); align-items:center;
}
.capability-item:first-child { border-top:1px solid var(--border); }
.cap-num { font-size:.68rem; letter-spacing:.18em; color:var(--terracotta); font-weight:500; }
.cap-label { font-family:"Cormorant Garamond",serif; font-size:1.1rem; color:var(--ink); }

/* ─── STATS BAR ─── */
.stats-bar {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:1px; background:rgba(196,98,45,.15); margin-top:3rem;
}
.stat-cell { background:var(--ink); padding:2rem; border:1px solid rgba(196,98,45,.08); }
.stat-cell-num { font-family:"Cormorant Garamond",serif; font-size:3rem; font-weight:300; color:var(--ember); line-height:1; }
.stat-cell-label { font-size:.62rem; letter-spacing:.18em; text-transform:uppercase; color:rgba(245,239,228,.45); margin-top:.5rem; }

/* ─── CONTACT ─── */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
.contact-details { display:flex; flex-direction:column; gap:1.8rem; margin-top:2rem; }
.contact-item { display:flex; gap:1.2rem; align-items:flex-start; }
.contact-icon { width:42px; height:42px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:.95rem; flex-shrink:0; }
.ci-label { font-size:.62rem; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); margin-bottom:.3rem; }
.ci-value { font-size:.88rem; color:var(--ink); line-height:1.65; }
.ci-value a { color:var(--ink); text-decoration:none; }
.ci-value a:hover { color:var(--terracotta); }
.contact-form-wrap { background:var(--soft); border:1px solid var(--border); padding:2.5rem; }
.contact-methods { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:2.5rem; }
.contact-method-card {
  border:1px solid var(--border); padding:2rem; background:var(--soft);
  transition:border-color .3s, transform .3s;
}
.contact-method-card:hover { border-color:var(--terracotta); transform:translateY(-3px); }
.cm-num { font-size:.65rem; letter-spacing:.22em; color:var(--terracotta); margin-bottom:1rem; }
.cm-type { font-family:"Cormorant Garamond",serif; font-size:1.4rem; font-weight:400; margin-bottom:.4rem; }
.cm-value { font-size:.9rem; color:var(--terracotta); margin-bottom:.3rem; font-family:"Cormorant Garamond",serif; }
.cm-note { font-size:.72rem; color:var(--muted); }

/* ─── CTA BANNER ─── */
.cta-banner {
  background:var(--soft); border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:5rem 5vw; text-align:center;
}
.cta-banner h2.section-title { margin-bottom:.8rem; }
.cta-banner .cta-actions { display:inline-flex; gap:1rem; flex-wrap:wrap; justify-content:center; margin-top:1.5rem; }

/* ─── 3D CARD STACK ─── */
.stack-wrapper {
  position: relative;
  margin-top: 3rem;
}

.stack-stage {
  perspective: 1600px;
  perspective-origin: 50% 36%;
  position: relative;
  height: clamp(500px, 68vh, 660px);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

/* Cards inside stack become absolute, 3D-positioned */
.stack-stage .feature-card {
  position: absolute;
  width: clamp(240px, 27vw, 350px);
  will-change: transform, opacity;
  transform-style: preserve-3d;
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    opacity   0.65s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  border: 1px solid var(--border);
  overflow: hidden;
}

/* ── Front card (active) ── */
.stack-stage .feature-card[data-pos="0"] {
  transform: translateX(0) translateZ(0px) rotateY(0deg) scale(1);
  z-index: 10;
  opacity: 1;
  filter: brightness(1) saturate(1);
  box-shadow: var(--shadow-float);
  cursor: default;
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    opacity   0.65s cubic-bezier(0.16, 1, 0.3, 1),
    filter    0.65s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.stack-stage .feature-card[data-pos="0"]:hover {
  transform: translateX(0) translateZ(18px) rotateY(0deg) scale(1.01);
}

/* ── Right back card ── */
.stack-stage .feature-card[data-pos="1"] {
  transform: translateX(56%) translateZ(-210px) rotateY(-22deg) scale(0.83);
  z-index: 5;
  opacity: 0.55;
  filter: brightness(0.55) saturate(0.7);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    opacity   0.65s cubic-bezier(0.16, 1, 0.3, 1),
    filter    0.65s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.stack-stage .feature-card[data-pos="1"]:hover {
  transform: translateX(52%) translateZ(-150px) rotateY(-16deg) scale(0.87);
  opacity: 0.78;
  filter: brightness(0.72) saturate(0.85);
}

/* ── Left back card ── */
.stack-stage .feature-card[data-pos="-1"] {
  transform: translateX(-56%) translateZ(-210px) rotateY(22deg) scale(0.83);
  z-index: 5;
  opacity: 0.55;
  filter: brightness(0.55) saturate(0.7);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    opacity   0.65s cubic-bezier(0.16, 1, 0.3, 1),
    filter    0.65s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.stack-stage .feature-card[data-pos="-1"]:hover {
  transform: translateX(-52%) translateZ(-150px) rotateY(16deg) scale(0.87);
  opacity: 0.78;
  filter: brightness(0.72) saturate(0.85);
}

/* ── "Click to view" hint on back cards ── */
.stack-stage .feature-card[data-pos="1"]::before,
.stack-stage .feature-card[data-pos="-1"]::before {
  content: "Click to view";
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(245,239,228,.92);
  padding: .3rem .8rem;
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
  white-space: nowrap;
}
.stack-stage .feature-card[data-pos="1"]:hover::before,
.stack-stage .feature-card[data-pos="-1"]:hover::before {
  opacity: 1;
}

/* ── Controls ── */
.stack-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.stack-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--terracotta);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-fast), color var(--t-base);
  border-radius: 0;
  flex-shrink: 0;
}
.stack-btn:hover {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}
.stack-btn:active { transform: scale(0.92); }
.stack-btn:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 2px; }

.stack-dots {
  display: flex;
  gap: 9px;
  align-items: center;
}
.stack-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background var(--t-base), transform var(--t-spring);
  flex-shrink: 0;
}
.stack-dot:hover { background: rgba(196,98,45,.4); }
.stack-dot.active {
  background: var(--terracotta);
  transform: scale(1.45);
}
.stack-dot:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 50%; }

/* ── Mobile tweaks ── */
@media (max-width: 700px) {
  .stack-stage {
    height: clamp(400px, 110vw, 520px);
  }
  .stack-stage .feature-card {
    width: clamp(195px, 58vw, 270px);
  }
  .stack-stage .feature-card[data-pos="1"] {
    transform: translateX(46%) translateZ(-140px) rotateY(-20deg) scale(0.80);
  }
  .stack-stage .feature-card[data-pos="1"]:hover {
    transform: translateX(42%) translateZ(-100px) rotateY(-14deg) scale(0.84);
  }
  .stack-stage .feature-card[data-pos="-1"] {
    transform: translateX(-46%) translateZ(-140px) rotateY(20deg) scale(0.80);
  }
  .stack-stage .feature-card[data-pos="-1"]:hover {
    transform: translateX(-42%) translateZ(-100px) rotateY(14deg) scale(0.84);
  }
}

/* ─── HOME FEATURE CARDS ─── */
.feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3rem; }
.feature-card {
  display:block; text-decoration:none; color:inherit;
  border:1px solid var(--border); overflow:hidden;
  transition:transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  box-shadow:var(--shadow-card);
}
.feature-card:hover {
  transform:translateY(-6px);
  box-shadow:var(--shadow-float);
  border-color:rgba(196,98,45,.25);
}
.feature-card-img {
  aspect-ratio:3/4; width:100%; overflow:hidden;
  background:var(--soft); position:relative;
}
.feature-card-img::after {
  content:""; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(26,18,8,.55) 0%, rgba(26,18,8,.1) 40%, transparent 60%);
  opacity:0; transition:opacity var(--t-base);
}
.feature-card:hover .feature-card-img::after { opacity:1; }
.feature-card-img img {
  width:100%; height:100%; object-fit:cover; object-position:top; display:block;
  transition:transform .6s cubic-bezier(.16,1,.3,1);
}
.feature-card:hover .feature-card-img img { transform:scale(1.05); }
.feature-card-body { padding:1.4rem 1.6rem; background:var(--soft); }
.feature-card-tag { font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; color:var(--terracotta); margin-bottom:.5rem; }
.feature-card-name { font-family:"Cormorant Garamond",serif; font-size:1.3rem; font-weight:400; margin-bottom:.5rem; }
.feature-card-desc { font-size:.75rem; color:var(--muted); line-height:1.65; margin-bottom:.8rem; }

/* ─── FOOTER ─── */
footer { background:var(--ink); color:rgba(245,239,228,.4); padding:3rem 5vw; }
.footer-inner {
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:2rem; padding-bottom:2rem;
  border-bottom:1px solid rgba(196,98,45,.15);
}
.footer-logo img { height:30px; display:block; filter:var(--logo-filter-cream); opacity:.65; }
.footer-tagline { font-size:.62rem; letter-spacing:.12em; text-transform:uppercase; margin-top:.5rem; color:rgba(245,239,228,.25); }
.footer-links { display:flex; gap:2rem; flex-wrap:wrap; }
.footer-links a { font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; color:rgba(245,239,228,.3); text-decoration:none; transition:color .2s; }
.footer-links a:hover { color:var(--ember); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:1.5rem; flex-wrap:wrap; gap:1rem; }
.footer-copy { font-size:.63rem; letter-spacing:.06em; }
.footer-gstin { font-size:.63rem; color:rgba(245,239,228,.18); }

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position:fixed; bottom:1.5rem; right:1.5rem; z-index:500;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 16px rgba(37,211,102,.4), 0 8px 32px rgba(37,211,102,.2);
  text-decoration:none;
  transition:transform var(--t-spring), box-shadow var(--t-base);
}
.wa-float:hover {
  transform:scale(1.08) translateY(-2px);
  box-shadow:0 6px 24px rgba(37,211,102,.5), 0 12px 40px rgba(37,211,102,.25);
}
.wa-float::before {
  content:""; position:absolute; inset:-6px; border-radius:50%;
  border:2px solid rgba(37,211,102,.3);
  animation:waRing 2.4s ease-out infinite;
}
@keyframes waRing {
  0%   { transform:scale(1); opacity:.65; }
  100% { transform:scale(1.5); opacity:0; }
}
.wa-float svg { width:27px; height:27px; }

/* ─── REVEAL — JS-powered scroll triggered ─── */
.reveal {
  opacity:0;
  transform:translateY(28px);
  transition:opacity var(--t-slow), transform var(--t-slow);
  transition-timing-function:cubic-bezier(.16,1,.3,1);
  will-change:opacity,transform;
}
.reveal.is-visible {
  opacity:1;
  transform:none;
}
/* Delay helpers via data-delay */
.reveal[data-delay="1"]  { transition-delay:80ms; }
.reveal[data-delay="2"]  { transition-delay:160ms; }
.reveal[data-delay="3"]  { transition-delay:240ms; }
.reveal[data-delay="4"]  { transition-delay:320ms; }

/* Slide-from-left variant */
.reveal-left {
  opacity:0; transform:translateX(-32px);
  transition:opacity var(--t-slow), transform var(--t-slow);
  transition-timing-function:cubic-bezier(.16,1,.3,1);
}
.reveal-left.is-visible { opacity:1; transform:none; }

/* Scale-up variant */
.reveal-scale {
  opacity:0; transform:scale(.96);
  transition:opacity var(--t-slow), transform var(--t-slow);
  transition-timing-function:cubic-bezier(.16,1,.3,1);
}
.reveal-scale.is-visible { opacity:1; transform:scale(1); }

/* Reduced motion fallback */
@media (prefers-reduced-motion:reduce) {
  .reveal,.reveal-left,.reveal-scale { transition:none; opacity:1; transform:none; }
}

/* ─── MOBILE ─── */
@media(max-width:900px) {
  .nav-links { display:none; }
  nav > .btn { display:none; }
  .hamburger { display:flex; }
  #hero { grid-template-columns:1fr; gap:0; padding:6rem 5vw 4rem; background-position:30% top; min-height:100svh; }
  #hero::before { background:rgba(245,239,228,.88); }
  .hero-watermark { display:none; }
  .hero-stats { gap:1.5rem; flex-wrap:wrap; }
  .about-grid,.wholesale-grid,.contact-grid { grid-template-columns:1fr; gap:2rem; }
  .about-frame { display:none; }
  .products-grid, .feature-grid { grid-template-columns:1fr 1fr; }
  .catalogue-hero-grid { grid-template-columns:1fr; gap:2rem; }
  .catalogue-note { max-width:520px; }
  .catalogue-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .wl-grid { grid-template-columns:1fr; }
  .form-wrap { position:static; }
  .products-header { flex-direction:column; align-items:flex-start; }
  .timeline { grid-template-columns:1fr 1fr; }
  .process-steps { grid-template-columns:1fr 1fr; }
  .stats-bar { grid-template-columns:1fr 1fr; }
  .contact-methods { grid-template-columns:1fr; }
  .terms-row { grid-template-columns:1fr; gap:.3rem; }
}
@media(max-width:560px) {
  .products-grid, .feature-grid { grid-template-columns:1fr; }
  .catalogue-grid { grid-template-columns:1fr; }
  .catalogue-note { padding:1.25rem; }
  .catalogue-filter { top:69px; }
  .catalogue-card-body { padding:1rem; }
  .form-row { grid-template-columns:1fr; }
  .wl-cta-bar { flex-direction:column; align-items:flex-start; }
  .footer-inner { flex-direction:column; gap:1.5rem; }
  .footer-links { flex-direction:column; gap:1rem; }
  h1 { font-size:clamp(2.6rem,10vw,3.8rem); }
  .timeline { grid-template-columns:1fr; }
  .process-steps { grid-template-columns:1fr; }
  .stats-bar { grid-template-columns:1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   MAGIC LAYER — Button shimmer · Gradient text · Border beam
   Cursor spotlight · Hero line-split · Marquee · Infinite stack
═══════════════════════════════════════════════════════════════ */

/* ─── BUTTON SHIMMER ─── */
/* .btn already has overflow:hidden + position:relative */
.btn-primary::before,
.btn-dark::before {
  content:"";
  position:absolute; top:0; left:-75%;
  width:55%; height:100%;
  background:linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,.28) 50%,
    transparent 80%
  );
  transform:skewX(-15deg);
  pointer-events:none;
}
.btn-primary:hover::before,
.btn-dark:hover::before {
  animation:btnShimmer .52s cubic-bezier(.16,1,.3,1);
}
@keyframes btnShimmer {
  to { left:135%; }
}
@media (prefers-reduced-motion:reduce) {
  .btn-primary::before, .btn-dark::before { display:none; }
}

/* ─── GRADIENT SHIMMER TEXT ─── */
@keyframes shimmerTerra {
  0%   { background-position:0%   center; }
  100% { background-position:200% center; }
}
@keyframes shimmerEmber {
  0%   { background-position:0%   center; }
  100% { background-position:200% center; }
}

/* Override the flat color — light sections */
h1 em,
h2.section-title em {
  font-style:italic;
  background:linear-gradient(
    90deg,
    var(--umber)      0%,
    var(--terracotta) 22%,
    var(--gold)       48%,
    var(--ember)      62%,
    var(--terracotta) 78%,
    var(--umber)      100%
  );
  background-size:200% auto;
  -webkit-background-clip:text;
          background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
  animation:shimmerTerra 4.5s linear infinite;
}

/* Dark-section variant — warm ember/gold */
#about h1 em,
.about-section h1 em,
#about h2.section-title em,
.about-section h2.section-title em,
#whitelabel h1 em,
#whitelabel h2.section-title em,
.manufacture-section h1 em,
.manufacture-section h2.section-title em {
  background:linear-gradient(
    90deg,
    var(--ember)      0%,
    #F5D888           28%,
    var(--gold)       45%,
    #FAEAC2           58%,
    var(--gold)       72%,
    var(--ember)      100%
  );
  background-size:200% auto;
  -webkit-background-clip:text;
          background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
  animation:shimmerEmber 4.5s linear infinite;
}
@media (prefers-reduced-motion:reduce) {
  h1 em, h2.section-title em { animation:none; }
}

/* ─── BORDER BEAM on .about-frame ─── */
@property --beam-angle {
  syntax:'<angle>';
  inherits:false;
  initial-value:0deg;
}
@keyframes beamRotate {
  to { --beam-angle:360deg; }
}

.about-frame::after {
  content:"";
  position:absolute; inset:0;
  padding:1px;
  background:conic-gradient(
    from var(--beam-angle),
    transparent          0deg,
    transparent         72deg,
    rgba(196,98,45,.12)  90deg,
    rgba(196,98,45,.88) 128deg,
    rgba(232,121,58,1)  160deg,
    rgba(184,151,74,.9) 192deg,
    rgba(196,98,45,.2)  224deg,
    transparent         264deg,
    transparent         360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:destination-out;
  mask-composite:exclude;
  animation:beamRotate 4.2s linear infinite;
  pointer-events:none;
  z-index:2;
}
@media (prefers-reduced-motion:reduce) {
  .about-frame::after { animation:none; }
}

/* ─── CURSOR SPOTLIGHT (injected by JS as .cursor-spot) ─── */
.cursor-spot {
  position:absolute; inset:0;
  pointer-events:none;
  --spot-x:50%; --spot-y:50%;
  background:radial-gradient(
    700px circle at var(--spot-x) var(--spot-y),
    rgba(196,98,45,.072) 0%,
    transparent 65%
  );
  opacity:0;
  transition:opacity .45s ease;
  z-index:0;
  will-change:background;
}

/* ─── HERO LINE-SPLIT ─── */
h1 .line-wrap {
  display:block;
  overflow:hidden;
  line-height:1.06;
}
h1 .line-inner {
  display:block;
  transform:translateY(110%);
  animation:lineReveal .95s cubic-bezier(.16,1,.3,1) both;
  will-change:transform;
}
h1 .line-wrap:nth-child(1) .line-inner { animation-delay:.04s; }
h1 .line-wrap:nth-child(2) .line-inner { animation-delay:.18s; }
h1 .line-wrap:nth-child(3) .line-inner { animation-delay:.32s; }
@keyframes lineReveal {
  from { transform:translateY(110%); }
  to   { transform:translateY(0);    }
}
@media (prefers-reduced-motion:reduce) {
  h1 .line-inner { animation:none; transform:none; }
}

/* ─── REVEAL-BLUR VARIANT ─── */
.reveal-blur {
  opacity:0;
  filter:blur(10px);
  transform:translateY(20px);
  transition:
    opacity   var(--t-slow),
    filter    var(--t-slow),
    transform var(--t-slow);
  transition-timing-function:cubic-bezier(.16,1,.3,1);
}
.reveal-blur.is-visible {
  opacity:1; filter:blur(0); transform:none;
}
@media (prefers-reduced-motion:reduce) {
  .reveal-blur { transition:none; opacity:1; filter:none; transform:none; }
}

/* ─── MARQUEE TICKER ─── */
.marquee-bar {
  overflow:hidden;
  background:var(--ink);
  border-top:1px solid rgba(196,98,45,.2);
  border-bottom:1px solid rgba(196,98,45,.2);
  display:flex;
  user-select:none;
}
.marquee-track {
  display:flex;
  align-items:center;
  white-space:nowrap;
  animation:marqueeScroll 30s linear infinite;
  will-change:transform;
}
.marquee-track:hover { animation-play-state:paused; }
.marquee-item {
  display:inline-flex; align-items:center;
  padding:.68rem 1.5rem;
  font-size:.56rem; letter-spacing:.22em; text-transform:uppercase;
  color:rgba(245,239,228,.32);
  font-family:"Jost",sans-serif; font-weight:400;
}
.marquee-dot {
  width:3px; height:3px; border-radius:50%;
  background:var(--terracotta); opacity:.45; flex-shrink:0;
}
@keyframes marqueeScroll {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}
@media (prefers-reduced-motion:reduce) {
  .marquee-track { animation:none; }
}

/* ─── INFINITE CAROUSEL — off-screen teleport positions ─── */
.stack-stage .feature-card[data-pos="2"] {
  transform:translateX(126%) translateZ(-320px) rotateY(-30deg) scale(0.64);
  z-index:1; opacity:0; pointer-events:none;
  filter:brightness(0.28) saturate(0.4);
  transition:
    transform .62s cubic-bezier(.16,1,.3,1),
    opacity   .62s cubic-bezier(.16,1,.3,1),
    filter    .62s cubic-bezier(.16,1,.3,1);
}
.stack-stage .feature-card[data-pos="-2"] {
  transform:translateX(-126%) translateZ(-320px) rotateY(30deg) scale(0.64);
  z-index:1; opacity:0; pointer-events:none;
  filter:brightness(0.28) saturate(0.4);
  transition:
    transform .62s cubic-bezier(.16,1,.3,1),
    opacity   .62s cubic-bezier(.16,1,.3,1),
    filter    .62s cubic-bezier(.16,1,.3,1);
}

/* ─── UTILITY ─── */
.no-transition,
.no-transition * {
  transition:none !important;
  animation:none !important;
}

/* ═══════════════════════════════════════════════════════════════
   3D ROOM CAROUSEL
   Four walls of a CSS 3D square room · floor + ceiling panels
   Direction-aware rotation · auto-advance · swipe/keyboard nav
═══════════════════════════════════════════════════════════════ */

.room-wrapper {
  margin-top:3rem;
  /* Room dimension tokens — cascade down to all room children */
  --wall-w: clamp(240px, 26vw, 340px);
  --wall-h: clamp(380px, 52vh, 520px);
}

/* ── Active product label row ── */
.room-label {
  display:flex; align-items:baseline; gap:1rem;
  margin-bottom:1.4rem; overflow:hidden;
}
.room-label-index {
  font-family:"Cormorant Garamond",serif;
  font-size:2.6rem; font-weight:300; line-height:1;
  color:rgba(196,98,45,.2); flex-shrink:0;
  transition:opacity .4s ease;
}
.room-label-sep {
  width:2rem; height:1px; background:var(--border); flex-shrink:0;
  align-self:center;
}
.room-label-name {
  font-family:"Cormorant Garamond",serif;
  font-size:1.1rem; font-weight:400; color:var(--ink);
  transition:opacity .35s ease, transform .35s cubic-bezier(.16,1,.3,1);
}
.room-label-price {
  font-size:.65rem; letter-spacing:.1em; color:var(--muted);
  margin-left:auto; white-space:nowrap;
  transition:opacity .35s ease;
}
/* Fade label during room rotation */
.room-label.is-spinning .room-label-name,
.room-label.is-spinning .room-label-price { opacity:0; transform:translateY(-6px); }

/* ── Scene (perspective container) ── */
.room-scene {
  perspective: clamp(680px, 88vw, 1080px);
  perspective-origin:50% 36%;
  display:flex; align-items:center; justify-content:center;
  height:clamp(500px, 70vh, 680px);
  position:relative;
}

/* Warm floor-level ambient glow beneath the room */
.room-scene::before {
  content:""; position:absolute;
  bottom:3%; left:50%; transform:translateX(-50%);
  width:80%; height:22%;
  background:radial-gradient(ellipse, rgba(196,98,45,.09) 0%, transparent 65%);
  pointer-events:none;
}
/* Ceiling glow above the room */
.room-scene::after {
  content:""; position:absolute;
  top:4%; left:50%; transform:translateX(-50%);
  width:50%; height:18%;
  background:radial-gradient(ellipse, rgba(184,151,74,.06) 0%, transparent 60%);
  pointer-events:none;
}

/* ── Room container (rotates on Y) ── */
.room {
  position:relative;
  width:var(--wall-w);
  height:var(--wall-h);
  transform-style:preserve-3d;
  transform:rotateY(0deg);
  transition:transform 1s cubic-bezier(.16,1,.3,1);
  will-change:transform;
}

/* ── Walls ── */
.room-wall {
  position:absolute;
  top:0; left:0;
  width:var(--wall-w);
  height:var(--wall-h);
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  overflow:hidden;
  background:#0e0906;
  border:1px solid rgba(196,98,45,.12);
  cursor:pointer;
  /* Dim side walls; active wall is brightened by [data-active="true"] */
  transition:filter 1s ease;
  filter:brightness(.7) saturate(.8);
}
.room-wall[data-active="true"] {
  filter:brightness(1) saturate(1);
  cursor:default;
}

/* Wall positions for a square room: radius = wall-w / 2 */
.wall-front { transform:rotateY(0deg)    translateZ(calc(var(--wall-w)/2)); }
.wall-right { transform:rotateY(90deg)   translateZ(calc(var(--wall-w)/2)); }
.wall-back  { transform:rotateY(180deg)  translateZ(calc(var(--wall-w)/2)); }
.wall-left  { transform:rotateY(-90deg)  translateZ(calc(var(--wall-w)/2)); }

/* Pendant ceiling light (warm radial at top of each wall) */
.room-wall::before {
  content:""; position:absolute;
  top:0; left:0; right:0;
  height:45%; z-index:2; pointer-events:none;
  background:
    radial-gradient(ellipse 85% 60% at 50% 0%,
      rgba(184,151,74,.1) 0%, rgba(196,98,45,.05) 35%, transparent 65%),
    linear-gradient(to bottom, rgba(10,5,2,.18) 0%, transparent 25%);
  transition:background 1s ease;
}
/* Brighter pendant light on the active wall */
.room-wall[data-active="true"]::before {
  background:
    radial-gradient(ellipse 85% 65% at 50% 0%,
      rgba(184,151,74,.18) 0%, rgba(196,98,45,.1) 30%, transparent 65%),
    linear-gradient(to bottom, rgba(10,5,2,.1) 0%, transparent 25%);
}

/* Floor shadow + bottom vignette */
.room-wall::after {
  content:""; position:absolute; inset:0;
  z-index:2; pointer-events:none;
  background:
    linear-gradient(to top,
      rgba(5,2,1,.95) 0%,
      rgba(15,7,3,.7)  18%,
      rgba(10,5,2,.18) 40%,
      transparent      58%),
    linear-gradient(to bottom,
      rgba(8,4,2,.15) 0%, transparent 14%);
}

/* ── Product image (fills wall) ── */
.wall-img {
  position:absolute; inset:0; z-index:0;
}
.wall-img img {
  width:100%; height:100%;
  object-fit:cover; object-position:top center; display:block;
  transition:transform 1.2s cubic-bezier(.16,1,.3,1), opacity 1s ease;
  opacity:.78;
}
.room-wall[data-active="true"] .wall-img img {
  transform:scale(1.04);
  opacity:.88;
}

/* Dummy overlay div — wall-left uses this for the diag-stripe texture */
.wall-overlay {
  position:absolute; inset:0; z-index:1; pointer-events:none;
}
.wall-left .wall-overlay {
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(196,98,45,.035) 0px, rgba(196,98,45,.035) 1px,
      transparent 1px, transparent 22px
    );
}

/* ── Info overlay (bottom of wall) ── */
.wall-info {
  position:absolute;
  bottom:0; left:0; right:0;
  padding:1.8rem 1.6rem;
  z-index:3;
}
.wall-info--center {
  top:50%; transform:translateY(-50%); bottom:auto;
  display:flex; flex-direction:column; align-items:center; text-align:center;
}
.wall-tag {
  font-size:.58rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--ember); margin-bottom:.5rem;
}
.wall-name {
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(1.2rem,2.4vw,1.7rem);
  font-weight:300; color:var(--cream); line-height:1.1; margin-bottom:.4rem;
}
.wall-detail {
  font-size:.68rem; color:rgba(245,239,228,.42);
  letter-spacing:.04em; margin-bottom:1rem; line-height:1.6;
}

/* ── Floor panel ── */
/* pivot at bottom edge → rotateX(90°) folds flat toward viewer = room floor */
.room-floor {
  position:absolute;
  width:var(--wall-w);
  height:var(--wall-w);     /* depth = width for square room */
  bottom:0; left:0;
  transform-origin:center bottom;
  transform:rotateX(90deg);
  /* Dark wood / terracotta tile */
  background:
    repeating-linear-gradient(
      0deg,   transparent, transparent 39px,
      rgba(196,98,45,.055) 39px, rgba(196,98,45,.055) 40px
    ),
    repeating-linear-gradient(
      90deg,  transparent, transparent 39px,
      rgba(196,98,45,.055) 39px, rgba(196,98,45,.055) 40px
    ),
    radial-gradient(ellipse 90% 70% at 50% 0%,
      rgba(80,35,14,.6) 0%, rgba(30,14,6,.94) 60%,
      rgba(14,7,3,.98) 100%);
}

/* ── Ceiling panel ── */
/* pivot at top edge → rotateX(-90°) folds flat away from viewer = ceiling */
.room-ceiling {
  position:absolute;
  width:var(--wall-w);
  height:var(--wall-w);
  top:0; left:0;
  transform-origin:center top;
  transform:rotateX(-90deg);
  background:
    radial-gradient(ellipse 60% 55% at 50% 60%,
      rgba(184,151,74,.11) 0%, rgba(196,98,45,.05) 40%,
      rgba(8,4,2,.97) 75%);
}

/* ── Controls ── */
.room-controls {
  display:flex; align-items:center; justify-content:center;
  gap:1.2rem; margin-top:1.8rem;
}
.room-btn {
  width:38px; height:38px;
  border:1px solid var(--border); background:transparent;
  color:var(--terracotta); cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background var(--t-base), border-color var(--t-base),
             color var(--t-base), transform var(--t-fast);
  flex-shrink:0;
}
.room-btn:hover { background:var(--terracotta); color:var(--cream); border-color:var(--terracotta); }
.room-btn:active { transform:scale(.92); }
.room-btn:focus-visible { outline:2px solid var(--terracotta); outline-offset:2px; }

.room-dots { display:flex; gap:9px; align-items:center; }
.room-dot {
  width:7px; height:7px; border-radius:50%;
  background:var(--border); cursor:pointer;
  border:none; padding:0;
  transition:background var(--t-base), transform var(--t-spring);
  flex-shrink:0;
}
.room-dot:hover { background:rgba(196,98,45,.4); }
.room-dot.active { background:var(--terracotta); transform:scale(1.45); }
.room-dot:focus-visible { outline:2px solid var(--terracotta); outline-offset:3px; border-radius:50%; }

/* ── Mobile ── */
@media(max-width:900px) {
  .room-wrapper { --wall-w: clamp(200px, 50vw, 280px); --wall-h: clamp(320px, 60vw, 420px); }
  .room-scene {
    height:clamp(440px, 90vw, 580px);
    perspective:clamp(500px, 110vw, 750px);
  }
}
@media(max-width:560px) {
  .room-wrapper { --wall-w: clamp(180px, 58vw, 250px); --wall-h: clamp(290px, 72vw, 380px); }
  .room-label { flex-wrap:wrap; }
  .room-label-price { margin-left:0; width:100%; }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT V2 — 3-column services · center image · stats · CTA
   Sutra Anvaya contextual layout (dark section)
═══════════════════════════════════════════════════════════════ */

/* Floating ambient dots (position relative to .about-section) */
.as-dot {
  position:absolute; border-radius:50%; pointer-events:none; z-index:0;
  animation:asFloat 3s ease-in-out infinite;
}
.as-dot--1 {
  width:6px; height:6px;
  top:22%; left:8%;
  background:rgba(196,98,45,.45);
  animation-duration:3.2s;
}
.as-dot--2 {
  width:9px; height:9px;
  bottom:28%; right:9%;
  background:rgba(184,151,74,.35);
  animation-duration:4.1s;
  animation-delay:1.2s;
}
@keyframes asFloat {
  0%,100% { transform:translateY(0);     opacity:.55; }
  50%      { transform:translateY(-12px); opacity:1;   }
}

/* Inner container */
.as-inner {
  position:relative; z-index:1;
  max-width:1180px; margin:0 auto;
}

/* ── Header ── */
.as-header {
  display:flex; flex-direction:column; align-items:center;
  text-align:center; margin-bottom:1.4rem;
}
.as-header .section-tag { margin-bottom:1.2rem; }
.as-header .section-title { text-align:center; }

.as-rule {
  width:96px; height:2px;
  background:linear-gradient(90deg, var(--terracotta), var(--ember));
  margin-top:1.6rem; border-radius:1px;
}

/* ── Lead paragraph ── */
.as-lead {
  text-align:center;
  max-width:600px; margin:1.8rem auto 4rem;
  font-size:.9rem; line-height:1.8;
  color:rgba(245,239,228,.6);
}

/* ── 3-column grid ── */
.as-grid {
  display:grid;
  grid-template-columns:1fr clamp(200px,20vw,256px) 1fr;
  gap:clamp(2rem,4vw,4rem);
  align-items:center;
}

/* ── Service column ── */
.as-col {
  display:flex; flex-direction:column;
  gap:clamp(2rem,3.5vw,3.2rem);
}

/* ── Individual service item ── */
.as-svc {
  display:flex; flex-direction:column; gap:.7rem;
  cursor:default;
  transition:transform var(--t-base);
}
.as-svc:hover { transform:translateY(-5px); }

.as-svc-head { display:flex; align-items:center; gap:.85rem; }

.as-icon {
  flex-shrink:0;
  width:44px; height:44px;
  display:flex; align-items:center; justify-content:center;
  border-radius:10px;
  background:rgba(196,98,45,.14);
  color:var(--ember);
  transition:background var(--t-base), transform var(--t-spring);
}
.as-svc:hover .as-icon {
  background:rgba(196,98,45,.26);
  transform:rotate(-8deg) scale(1.05);
}

.as-svc-title {
  font-family:"Jost",sans-serif;
  font-size:.88rem; font-weight:500;
  letter-spacing:.03em; line-height:1.3;
  color:var(--cream);
  transition:color var(--t-base);
}
.as-svc:hover .as-svc-title { color:var(--ember); }

.as-svc-desc {
  font-size:.76rem; line-height:1.72;
  color:rgba(245,239,228,.46);
  padding-left:52px; /* icon 44px + gap 8px */
}

.as-svc-more {
  display:inline-flex; align-items:center; gap:.35rem;
  padding-left:52px;
  font-size:.65rem; font-weight:500;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--ember);
  opacity:0;
  transition:opacity var(--t-base);
  user-select:none;
}
.as-svc:hover .as-svc-more { opacity:1; }

/* ── Center image ── */
.as-center { position:relative; align-self:center; }

/* Border beam on the image column */
.as-center::after {
  content:"";
  position:absolute; inset:0;
  padding:1.5px; border-radius:6px;
  background:conic-gradient(
    from var(--beam-angle),
    transparent          0deg,
    transparent         68deg,
    rgba(196,98,45,.1)   86deg,
    rgba(196,98,45,.8)  124deg,
    rgba(232,121,58,.95) 156deg,
    rgba(184,151,74,.85) 188deg,
    rgba(196,98,45,.18) 220deg,
    transparent         262deg,
    transparent         360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:destination-out;
  mask-composite:exclude;
  animation:beamRotate 5s linear infinite;
  pointer-events:none; z-index:2;
}
@media (prefers-reduced-motion:reduce) { .as-center::after { animation:none; } }

.as-img-wrap {
  position:relative; border-radius:6px; overflow:hidden;
  box-shadow:0 24px 64px rgba(0,0,0,.5), 0 4px 16px rgba(196,98,45,.1);
  aspect-ratio:3/4;
}
.as-img-wrap img {
  width:100%; height:100%;
  object-fit:cover; object-position:center top; display:block;
  filter:saturate(.85) brightness(.88);
  transition:filter var(--t-slow), transform 1.2s cubic-bezier(.16,1,.3,1);
}
.as-img-wrap:hover img {
  filter:saturate(1) brightness(.96);
  transform:scale(1.04);
}

.as-img-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top,
    rgba(26,18,8,.72) 0%,
    rgba(26,18,8,.18) 44%,
    transparent       62%);
  display:flex; align-items:flex-end; justify-content:center;
  padding-bottom:1.4rem;
  opacity:0;
  transition:opacity var(--t-base);
}
.as-img-wrap:hover .as-img-overlay { opacity:1; }

/* Floating dots around the image */
.as-img-dot {
  position:absolute; border-radius:50%; pointer-events:none;
  left:50%; transform:translateX(-50%);
}
.as-img-dot--top {
  width:10px; height:10px; top:-28px;
  background:var(--terracotta);
  animation:asFloat 2s ease-in-out infinite;
}
.as-img-dot--btm {
  width:7px; height:7px; bottom:-36px;
  background:var(--gold);
  animation:asFloat 2s ease-in-out infinite .55s;
  animation-direction:reverse;
}

/* Soft ambient blobs behind the image */
.as-img-blob { position:absolute; border-radius:50%; pointer-events:none; z-index:-1; }
.as-img-blob--1 {
  width:80px; height:80px;
  top:-12px; right:-28px;
  background:rgba(196,98,45,.1);
}
.as-img-blob--2 {
  width:96px; height:96px;
  bottom:-20px; left:-36px;
  background:rgba(184,151,74,.08);
}

/* ── Stats grid ── */
.as-stats {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
  margin-top:clamp(3rem,6vw,5.5rem);
}

.as-stat {
  background:rgba(245,239,228,.04);
  border:1px solid rgba(196,98,45,.1);
  border-radius:14px;
  padding:1.8rem 1.4rem;
  display:flex; flex-direction:column; align-items:center; text-align:center;
  gap:.45rem;
  cursor:default;
  transition:background var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.as-stat:hover {
  background:rgba(245,239,228,.07);
  border-color:rgba(196,98,45,.24);
  transform:translateY(-5px);
}

.as-stat-icon {
  width:50px; height:50px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:rgba(196,98,45,.1); color:var(--ember);
  margin-bottom:.6rem;
  transition:background var(--t-base), transform var(--t-spring);
}
.as-stat:hover .as-stat-icon {
  background:rgba(196,98,45,.22);
  transform:rotate(15deg) scale(1.08);
}

.as-stat-num {
  font-family:"Cormorant Garamond",serif;
  font-size:2.2rem; font-weight:300;
  color:var(--cream); line-height:1;
}

.as-stat-label {
  font-size:.66rem; letter-spacing:.06em;
  color:rgba(245,239,228,.45);
  line-height:1.5;
}

.as-stat-line {
  width:24px; height:1.5px;
  background:var(--terracotta); border-radius:1px;
  margin-top:.5rem;
  transition:width var(--t-base);
}
.as-stat:hover .as-stat-line { width:40px; }

/* ── CTA bar ── */
.as-cta {
  margin-top:clamp(2.5rem,5vw,4rem);
  background:rgba(196,98,45,.07);
  border:1px solid rgba(196,98,45,.18);
  border-radius:14px;
  padding:2.2rem 2.4rem;
  display:flex; align-items:center;
  justify-content:space-between; gap:2rem;
  flex-wrap:wrap;
}

.as-cta-text h3 {
  font-family:"Cormorant Garamond",serif;
  font-size:1.55rem; font-weight:300;
  color:var(--cream); margin-bottom:.35rem;
}
.as-cta-text p {
  font-size:.76rem; line-height:1.6;
  color:rgba(245,239,228,.48);
}
.as-cta-actions { display:flex; gap:.9rem; flex-wrap:wrap; }

/* ── About V2 responsive ── */
@media(max-width:1000px) {
  .as-grid {
    grid-template-columns:1fr;
    gap:2.5rem;
  }
  .as-center {
    width:clamp(200px,55vw,300px);
    margin:0 auto;
    order:-1;
  }
}
@media(max-width:768px) {
  .as-stats { grid-template-columns:repeat(2,1fr); gap:1rem; }
  .as-lead  { font-size:.84rem; margin-bottom:3rem; }
  .as-cta   { padding:1.6rem; }
  .as-cta-text h3 { font-size:1.25rem; }
}
@media(max-width:480px) {
  .as-stats { grid-template-columns:1fr 1fr; }
  .as-cta   { flex-direction:column; align-items:flex-start; }
  .as-cta-actions { width:100%; }
  .as-stat-num { font-size:1.85rem; }
}

/* ==========================================================================
   PREMIUM CARD CAROUSEL (SWIPER COVERFLOW) & HOVER SPOTLIGHTS
   ========================================================================== */

/* Carousel Container and general overrides */
.products-carousel-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto 0;
  position: relative;
  overflow: visible !important;
}

.products-swiper {
  width: 100%;
  padding-bottom: 50px !important;
  overflow: visible !important;
}

.products-swiper .swiper-slide {
  width: 290px;
  height: auto;
  opacity: 0.45;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.products-swiper .swiper-slide-active {
  opacity: 1;
  pointer-events: auto;
}

.products-swiper .swiper-slide-next,
.products-swiper .swiper-slide-prev {
  opacity: 0.8;
  pointer-events: auto;
}

/* Swiper Controls Custom Styling (Sutra Brand) */
.products-swiper .swiper-pagination-bullet {
  background: var(--terracotta) !important;
  opacity: 0.3;
  width: 8px;
  height: 8px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.products-swiper .swiper-pagination-bullet-active {
  background: var(--terracotta) !important;
  opacity: 1;
  transform: scale(1.3);
}

.products-swiper .swiper-button-prev,
.products-swiper .swiper-button-next {
  color: var(--terracotta) !important;
  width: 44px;
  height: 44px;
  background: rgba(26, 18, 8, 0.6);
  border: 1px solid rgba(196, 98, 45, 0.25);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  top: 42% !important;
  z-index: 50 !important;
  pointer-events: auto !important;
}

.products-swiper .swiper-button-prev::after,
.products-swiper .swiper-button-next::after {
  font-size: 1.1rem !important;
  font-weight: bold;
}

.products-swiper .swiper-button-prev:hover,
.products-swiper .swiper-button-next:hover {
  background: var(--terracotta);
  color: var(--cream) !important;
  border-color: var(--terracotta);
}

.products-swiper .swiper-button-prev:active,
.products-swiper .swiper-button-next:active {
  transform: scale(0.9);
}

@media(max-width: 768px) {
  .products-swiper .swiper-button-prev,
  .products-swiper .swiper-button-next {
    display: none !important; /* Hide arrows on mobile for clean swipe */
  }
}

/* Premium Glow Card Visual Styling */
.product-card,
.catalogue-card {
  --radius: 20px;
  --border-size: 1px;
  --backdrop: rgba(26, 18, 8, 0.95);
  --backup-border: rgba(196, 98, 45, 0.15);
  --spotlight-size: 260px;
  --hue: 22; /* Terracotta HSL Hue */
  
  background-color: var(--backdrop);
  border: var(--border-size) solid var(--backup-border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 1px rgba(196, 98, 45, 0.2);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  width: 100%;
}

.product-card:hover,
.catalogue-card:hover {
  border-color: rgba(196, 98, 45, 0.45);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.7), 0 0 15px rgba(196, 98, 45, 0.1);
}

/* Spotlight mouse glow overlay */
.product-card[data-glow]::before,
.catalogue-card[data-glow]::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(
    var(--spotlight-size) var(--spotlight-size) at
    var(--x, 0px)
    var(--y, 0px),
    hsla(var(--hue), 72%, 55%, 0.095) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Elegant glowing border overlay */
.product-card[data-glow]::after,
.catalogue-card[data-glow]::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  z-index: 2;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background-image: radial-gradient(
    calc(var(--spotlight-size) * 0.8) calc(var(--spotlight-size) * 0.8) at
    var(--x, 0px)
    var(--y, 0px),
    hsla(var(--hue), 72%, 60%, 0.65) 0%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover::before,
.product-card:hover::after,
.catalogue-card:hover::before,
.catalogue-card:hover::after {
  opacity: 1;
}

/* Card Badge Pill */
.product-card-badge,
.catalogue-card-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 10px;
  background: rgba(26, 18, 8, 0.7);
  border: 1px solid rgba(196, 98, 45, 0.25);
  backdrop-filter: blur(8px);
  color: var(--ember);
  font-family: "Jost", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sparkle-svg {
  color: var(--amber);
  fill: rgba(184, 151, 74, 0.3);
  animation: sparkleScale 2.4s ease-in-out infinite;
}

@keyframes sparkleScale {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* Product Card Photo */
.product-card-img,
.catalogue-photo {
  width: 100%;
  aspect-ratio: 16 / 15;
  overflow: hidden;
  position: relative;
  background: #0E0B06;
}

.product-card-img img,
.catalogue-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
  filter: saturate(0.85) brightness(0.88);
}

.product-card:hover .product-card-img img,
.catalogue-card:hover .catalogue-photo img {
  transform: scale(1.03);
  filter: saturate(1) brightness(0.96);
}

/* Card Text Styling */
.product-card-body,
.catalogue-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.product-card-body h3,
.catalogue-card-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin: 0;
}

.product-card-meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.25rem;
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.product-price {
  color: var(--terracotta);
  font-weight: 500;
}

.product-divider {
  color: rgba(245, 239, 228, 0.2);
}

.product-sizes {
  color: rgba(245, 239, 228, 0.45);
}

.product-desc {
  font-family: "Jost", sans-serif;
  font-size: 0.74rem;
  line-height: 1.6;
  color: rgba(245, 239, 228, 0.5);
  margin: 0.65rem 0 1.25rem;
  height: 2.2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Integration with existing Catalogue styling */
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.catalogue-card {
  height: 100%;
}

.catalogue-card .catalogue-photo {
  aspect-ratio: 3 / 4 !important;
}

.catalogue-card-body span {
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.3rem;
}

.catalogue-whatsapp {
  margin-top: 1.25rem;
  width: 100%;
  text-align: center;
  justify-content: center;
  border-color: rgba(196, 98, 45, 0.25) !important;
  color: var(--cream) !important;
  background: rgba(196, 98, 45, 0.05);
}

.catalogue-whatsapp:hover {
  background: var(--terracotta) !important;
  border-color: var(--terracotta) !important;
}

/* ==========================================================================
   BESPOKE MOBILE-FIRST EXPERIENCE & iOS LIQUID GLASS STYLING
   ========================================================================== */

/* iOS-Style Liquid Glass Buttons */
.btn-liquid-glass {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(196, 98, 45, 0.2) 0%, rgba(196, 98, 45, 0.06) 100%);
  border: 1.5px solid rgba(245, 239, 228, 0.22);
  color: #F5EFE4 !important;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    inset 0 1.5px 1.5px rgba(255, 255, 255, 0.35),
    inset 0 -1.5px 1.5px rgba(0, 0, 0, 0.55),
    inset 0 14px 14px rgba(255, 255, 255, 0.04),
    0 10px 30px rgba(0, 0, 0, 0.45);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  overflow: hidden;
  user-select: none;
}

.btn-liquid-glass::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12) 0%, transparent 100%);
  border-radius: 16px 16px 0 0;
  pointer-events: none;
}

.btn-liquid-glass:hover {
  background: linear-gradient(135deg, rgba(196, 98, 45, 0.3) 0%, rgba(196, 98, 45, 0.12) 100%);
  border-color: rgba(245, 239, 228, 0.35);
  transform: translateY(-2px);
  box-shadow: 
    inset 0 1.5px 1.5px rgba(255, 255, 255, 0.45),
    inset 0 -1.5px 1.5px rgba(0, 0, 0, 0.6),
    0 14px 35px rgba(196, 98, 45, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.5);
}

.btn-liquid-glass:active {
  transform: scale(0.96) translateY(1px);
  background: linear-gradient(135deg, rgba(196, 98, 45, 0.28) 0%, rgba(196, 98, 45, 0.1) 100%);
  box-shadow: 
    inset 0 1px 0px rgba(255, 255, 255, 0.15),
    inset 0 -1px 0px rgba(0, 0, 0, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Glassmorphism Floating Bottom Navigation Bar */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 5%;
  width: 90%;
  max-width: 480px;
  height: 66px;
  background: rgba(26, 18, 8, 0.78);
  border: 1px solid rgba(196, 98, 45, 0.28);
  border-radius: 26px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    0 12px 36px rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: space-around;
  align-items: center;
  padding: 0 0.8rem;
}

.mb-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(245, 239, 228, 0.5);
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.05em;
  gap: 0.2rem;
  transition: all 0.3s ease;
  width: 20%;
  height: 100%;
}

.mb-nav-item svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.6;
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.mb-nav-item.active {
  color: var(--ember);
  font-weight: 500;
}

.mb-nav-item.active svg {
  transform: translateY(-2px) scale(1.08);
}

/* Instagram-Style circular stories filter */
.stories-wrapper {
  display: none;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none; /* Hide scrollbar on Firefox */
  padding: 1.2rem 1rem;
  border-bottom: 1px solid rgba(196, 98, 45, 0.1);
  background: rgba(245, 239, 228, 0.015);
  margin-bottom: 1rem;
}

.stories-wrapper::-webkit-scrollbar {
  display: none; /* Hide scrollbar on Chrome/Safari */
}

.stories-track {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.story-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
}

.story-circle-ring {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  padding: 2.5px;
  background: linear-gradient(135deg, rgba(196, 98, 45, 0.25) 0%, rgba(196, 98, 45, 0.08) 100%);
  border: 1px solid rgba(245, 239, 228, 0.12);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-circle-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(0.85);
  transition: filter 0.3s ease;
}

.story-circle span {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(245, 239, 228, 0.5);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.story-circle.active .story-circle-ring {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--ember) 100%);
  border-color: var(--ember);
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(196, 98, 45, 0.25);
}

.story-circle.active .story-circle-ring img {
  filter: saturate(1.1) brightness(1.02);
}

.story-circle.active span {
  color: var(--ember);
  font-weight: 500;
}

/* Responsive Mobile Layout Toggles */
@media(max-width: 768px) {
  /* Bottom sticky bar */
  .mobile-bottom-nav {
    display: flex;
  }
  
  /* Stories filter active */
  .stories-wrapper {
    display: block;
  }
  
  /* Hide desktop header navigation / elements */
  nav .nav-links,
  nav .btn {
    display: none !important;
  }
  
  /* Force single-column Instagram-feed style */
  .catalogue-grid {
    grid-template-columns: 1fr !important;
    gap: 2.2rem !important;
    padding: 0 0.5rem 6rem !important;
  }
  
  .catalogue-card {
    border-radius: 24px !important;
    --radius: 24px;
  }
  
  .catalogue-card .catalogue-photo {
    aspect-ratio: 16 / 15 !important;
  }
  
  /* Adjust margins so bottom tab bar doesn't cover content */
  body {
    padding-bottom: 90px !important;
  }
  
  /* Hide desktop filter tabs */
  .filter-bar.catalogue-filter {
    display: none !important;
  }
  
  /* Premium Liquid Glass styling for all action buttons on mobile */
  .btn-primary, 
  .btn-ghost, 
  .catalogue-whatsapp, 
  .product-card-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(196, 98, 45, 0.2) 0%, rgba(196, 98, 45, 0.06) 100%) !important;
    border: 1.5px solid rgba(245, 239, 228, 0.22) !important;
    color: #F5EFE4 !important;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
      inset 0 1.5px 1.5px rgba(255, 255, 255, 0.35),
      inset 0 -1.5px 1.5px rgba(0, 0, 0, 0.55),
      inset 0 14px 14px rgba(255, 255, 255, 0.04),
      0 10px 30px rgba(0, 0, 0, 0.45) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    overflow: hidden;
  }
  
  .btn-primary:active, 
  .btn-ghost:active, 
  .catalogue-whatsapp:active, 
  .product-card-btn:active {
    transform: scale(0.96) translateY(1px);
    background: linear-gradient(135deg, rgba(196, 98, 45, 0.28) 0%, rgba(196, 98, 45, 0.1) 100%) !important;
  }
  
  /* Hide desktop watermarks & clutter on mobile */
  .hero-watermark,
  .watermark {
    display: none !important;
  }
}

