/* ==========================================================================
   Label by Mansha — Stylesheet (dark / gold theme)
   Palette: near-black canvas, deep maroon contrast blocks, aged-gold accent
   (echoing Kashmiri tilla thread), warm cream text.
   Signature: a hand-drawn gold mandala/rosette motif behind the wordmark
   and in the hero — a nod to the tilla and dabka embroidery the brand works in.
   Display type: Cormorant Garamond (editorial serif)
   Script accent: Petit Formal Script (used sparingly, taglines only)
   Body/UI type: Jost (clean geometric sans)
   ========================================================================== */

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

:root {
  /* Backgrounds */
  --bg: #0E0D10;              /* page canvas */
  --panel: #18151A;           /* card / component surface */
  --panel-raised: #211A1E;    /* contrast blocks: footer, cta band, founder note */
  --blush: #131116;           /* barely-there alternate section wash */
  --blush-deep: #241C20;      /* card borders / dividers on --blush sections */

  /* Text */
  --ink: #F1EAD9;             /* headings + primary text (light, on dark) */
  --plum-soft: #B2A594;       /* secondary / muted text */
  --cream: #FBF6EC;           /* text on top of colored/gradient surfaces */

  /* Kept for continuity with earlier markup that still uses --plum as a
     "contrast block" background (footer, cta band, founder note). */
  --plum: #1B0F16;

  /* Accent */
  --gold: #C9A15A;
  --gold-bright: #E8CD8E;
  --coral: #C9A15A;           /* alias — gradient start */
  --maroon: #7A1E32;
  --rose: #9C2B45;            /* gradient end / badge & ribbon fills only */

  --line: rgba(241, 234, 217, 0.10);

  --gradient-brand: linear-gradient(120deg, var(--gold), var(--rose));
  --gradient-soft: linear-gradient(160deg, var(--panel) 0%, var(--bg) 60%);

  --serif: 'Cormorant Garamond', serif;
  --script: 'Petit Formal Script', cursive;
  --sans: 'Jost', sans-serif;

  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.08;
}

p { margin: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.script {
  font-family: var(--script);
  font-weight: 400;
  color: var(--gold-bright);
  font-size: 1.9rem;
  line-height: 1;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ------------------------------- Promo strip ------------------------------ */

.promo-strip {
  background: var(--rose);
  color: var(--cream);
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 9px 16px;
}

.promo-strip strong { color: var(--gold-bright); font-weight: 600; }

/* ---------------------------------- Header ------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 13, 16, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}

.header-side {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.header-side.right { justify-content: flex-end; }

.icon-btn {
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-btn .count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark .mandala {
  position: absolute;
  inset: -16px;
  width: auto;
  height: auto;
  opacity: 0.6;
}

.brand-mark .logo-img {
  height: 38px;
  position: relative;
  z-index: 1;
}

.brand-word {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-word span {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

nav.main-nav a {
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  color: var(--plum-soft);
  position: relative;
  padding: 4px 0;
}

nav.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 0;
  background: var(--gradient-brand);
  transition: width 0.25s ease;
}

nav.main-nav a:hover::after,
nav.main-nav a.active::after {
  width: 100%;
}

nav.main-nav a.active { color: var(--gold); }

/* --- NEW SOCIAL NAV ICONS --- */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 12px;
  padding-left: 20px;
  border-left: 1px solid rgba(241, 234, 217, 0.15);
}

.nav-socials a {
  color: var(--plum-soft);
  transition: color 0.2s ease, transform 0.2s ease;
  display: flex;
  padding: 0 !important;
}

.nav-socials a::after {
  display: none !important;
}

.nav-socials a:hover {
  color: var(--gold-bright);
  transform: translateY(-2px);
}
/* ---------------------------- */

.nav-cta {
  background: var(--gradient-brand);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px -8px rgba(156, 43, 69, 0.6);
}

.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ------------------------------- Ribbon motif ---------------------------- */

.drape-divider {
  width: 100%;
  height: 64px;
  display: block;
  color: var(--gold);
  opacity: 0.35;
}

.drape-divider.flip { transform: scaleY(-1); }

/* --------------------------------- Hero ---------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-soft);
  padding-top: 32px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 640px;
  height: 640px;
  background: url('../images/mandala.svg') center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.hero .wrap { position: relative; }

.promo-banner {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  background: var(--rose);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 10px;
  margin-bottom: 26px;
}

.promo-banner .flat {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.promo-banner .code {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.hero .wrap.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  min-height: 72vh;
  padding-top: 20px;
  padding-bottom: 40px;
}

.hero-copy .script { display: block; margin-bottom: 6px; }

.hero-copy h1 {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  margin: 10px 0 22px;
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--gold-bright);
}

.hero-copy p.lede {
  font-size: 1.05rem;
  color: var(--plum-soft);
  max-width: 46ch;
  margin-bottom: 30px;
}

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--cream);
  box-shadow: 0 12px 26px -10px rgba(156, 43, 69, 0.65);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(156, 43, 69, 0.75); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(241, 234, 217, 0.35);
}

.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 46px;
}

.hero-stats div strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--ink);
}

.hero-stats div span {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--plum-soft);
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .halo {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 161, 90, 0.22), transparent 70%);
}

.hero-visual .visual-frame {
  position: relative;
  width: min(400px, 100%);
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  border: 1px solid rgba(201, 161, 90, 0.35);
  background:
    url('../images/mandala.svg') center / 140% no-repeat,
    linear-gradient(160deg, #241820, #0E0D10);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-visual .visual-frame img {
  width: 55%;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

.hero-visual .visual-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(241, 234, 217, 0.55);
  background: rgba(14, 13, 16, 0.55);
  border-radius: 999px;
  padding: 6px 10px;
  backdrop-filter: blur(4px);
}

/* ------------------------------- Marquee strip --------------------------- */

.marquee {
  background: var(--panel-raised);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: inline-flex;
  animation: scroll-left 32s linear infinite;
  padding: 14px 0;
}

.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  padding: 0 28px;
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  gap: 28px;
}

.marquee-track span::after {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* -------------------------------- Sections -------------------------------- */

section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head .eyebrow { display: block; margin-bottom: 10px; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
.section-head p { margin-top: 16px; color: var(--plum-soft); font-size: 1rem; }

.section-head.left { text-align: left; margin: 0 0 48px; }

/* ------------------------------ Collection cards -------------------------- */

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.collection-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  transition: transform 0.35s ease;
  border: 1px solid rgba(201, 161, 90, 0.18);
}

.collection-card:hover { transform: translateY(-6px); }

.collection-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--card-bg, var(--gradient-brand));
}

.collection-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.6) 100%);
}

.collection-card .pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.4;
  mix-blend-mode: soft-light;
}

.collection-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.collection-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.collection-card .tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0,0,0,0.35);
  color: var(--gold-bright);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201, 161, 90, 0.35);
}

/* ---------------------------------- Promise ------------------------------- */

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.promise-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 28px;
}

.promise-card .num {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(201, 161, 90, 0.45);
  font-size: 2.6rem;
  display: block;
  margin-bottom: 14px;
}

.promise-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.promise-card p { color: var(--plum-soft); font-size: 0.92rem; }

/* -------------------------------- Testimonials ----------------------------- */

.testimonial-strip {
  background: var(--blush);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--panel);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--line);
}

.testimonial-card .stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.testimonial-card p.quote {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 18px;
}

.testimonial-card .who {
  font-size: 0.82rem;
  color: var(--plum-soft);
  letter-spacing: 0.02em;
}

.testimonial-card .who strong { color: var(--gold-bright); }

/* ---------------------------------- CTA band ------------------------------- */

.cta-band {
  background: var(--plum);
  color: var(--cream);
  border-radius: 24px;
  padding: 58px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 161, 90, 0.2);
}

.cta-band::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 161, 90, 0.3), transparent 70%);
}

.cta-band h2 { color: var(--cream); font-size: clamp(1.8rem, 3vw, 2.4rem); max-width: 460px; }
.cta-band p { color: rgba(251, 246, 236, 0.75); margin-top: 10px; max-width: 420px; }

/* ----------------------------------- Footer -------------------------------- */

footer {
  background: var(--plum);
  color: rgba(241, 234, 217, 0.65);
  padding: 70px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .brand-word { color: var(--cream); }
.footer-brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(251, 246, 236, 0.7);
  max-width: 32ch;
}

.footer-col h4 {
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 0.88rem;
  color: rgba(251, 246, 236, 0.7);
  margin-bottom: 10px;
}

.footer-col a:hover { color: var(--gold-bright); }

.social-row { display: flex; gap: 12px; margin-top: 4px; }
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
}
.social-row a:hover { background: var(--gradient-brand); border-color: transparent; color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  font-size: 0.78rem;
  color: rgba(251, 246, 236, 0.45);
  flex-wrap: wrap;
  gap: 10px;
}

/* ------------------------------ Page header (inner pages) ------------------ */

.page-hero {
  background: var(--gradient-soft);
  padding: 56px 0 68px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 460px;
  height: 460px;
  background: url('../images/mandala.svg') center / contain no-repeat;
  opacity: 0.1;
  pointer-events: none;
}

.page-hero .wrap { position: relative; }
.page-hero .eyebrow { display: block; margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.2rem); }
.page-hero p { max-width: 56ch; margin: 18px auto 0; color: var(--plum-soft); }

.breadcrumb {
  font-size: 0.78rem;
  color: var(--plum-soft);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.breadcrumb a { color: var(--gold); }

/* ------------------------------ Collections page ---------------------------- */

.filter-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.84rem;
  cursor: pointer;
  color: var(--plum-soft);
  transition: all 0.2s ease;
}

.filter-btn:hover { border-color: var(--gold); color: var(--gold-bright); }

.filter-btn.active {
  background: var(--gradient-brand);
  color: var(--cream);
  border-color: transparent;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--panel);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -22px rgba(0, 0, 0, 0.6);
}

.product-media {
  aspect-ratio: 4 / 5;
  position: relative;
  background: var(--card-bg, var(--gradient-brand));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-media .pattern { position: absolute; inset: 0; opacity: 0.4; mix-blend-mode: soft-light; }

.product-media .monogram {
  font-family: var(--script);
  font-size: 3.4rem;
  color: rgba(255,255,255,0.55);
  position: relative;
}

.product-media .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(251, 246, 236, 0.92);
  color: var(--plum);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.product-info { padding: 20px 22px 24px; }
.product-info .cat { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.product-info h3 { font-size: 1.2rem; margin: 6px 0 8px; }
.product-info .fabric { font-size: 0.84rem; color: var(--plum-soft); margin-bottom: 14px; }
.product-info .price-row { display: flex; align-items: center; justify-content: space-between; }
.product-info .price { font-family: var(--serif); font-size: 1.2rem; color: var(--gold-bright); }
.product-info .enquire {
  font-size: 0.78rem;
  color: var(--gold);
  border: none;
  border-bottom: 1px solid var(--gold);
  padding: 0 0 2px;
  background: none;
  font-family: var(--sans);
  cursor: pointer;
}

.hidden-card { display: none !important; }

/* ----------------------------- Enquiry modal -------------------------------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.open { display: flex; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
}

.modal-panel {
  position: relative;
  background: var(--panel-raised);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
}

.modal-panel h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
  padding-right: 20px;
}

.modal-panel #enquire-product-name { color: var(--gold-bright); }

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--plum-soft);
  cursor: pointer;
}

.modal-close:hover { color: var(--gold); }

/* Status text used by contact.js / products.js after an API call */
.form-note.success { color: #6FE3A8; }
.form-note.error {
  color: #F2A6B4;
}
.form-success.error {
  color: #F2A6B4;
  background: rgba(156, 43, 69, 0.15);
  border-color: rgba(156, 43, 69, 0.4);
}
.form-success.success { background: rgba(60, 180, 120, 0.1); border-color: rgba(60, 180, 120, 0.3); color: var(--ink); }

/* --------------------------------- About page ------------------------------- */

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.story-visual {
  background: var(--gradient-soft);
  border: 1px solid rgba(201, 161, 90, 0.2);
  border-radius: 24px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.story-visual img { width: 70%; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); }

.story-copy h2 { font-size: clamp(2rem, 3.6vw, 2.6rem); margin-bottom: 22px; }
.story-copy p { color: var(--plum-soft); margin-bottom: 16px; font-size: 1rem; }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 20px;
}

.timeline-step {
  border-top: 3px solid var(--gold);
  padding-top: 20px;
}

.timeline-step .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-bright);
  font-size: 1.6rem;
  display: block;
  margin-bottom: 10px;
}

.timeline-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.timeline-step p { font-size: 0.88rem; color: var(--plum-soft); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.value-row {
  display: flex;
  gap: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}

.value-row .icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}

.value-row h3 { font-size: 1.05rem; margin-bottom: 6px; }
.value-row p { font-size: 0.86rem; color: var(--plum-soft); }

.founder-note {
  background: var(--plum);
  color: rgba(241, 234, 217, 0.7);
  border-radius: 24px;
  padding: 54px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  align-items: center;
  border: 1px solid rgba(201, 161, 90, 0.2);
}

.founder-note .mark { font-family: var(--serif); font-size: 4rem; color: var(--gold); line-height: 1; font-style: italic; }
.founder-note p.note { font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--cream); margin-bottom: 16px; }
.founder-note .sign { color: var(--gold-bright); font-family: var(--script); font-size: 1.6rem; }

/* -------------------------------- Contact page ------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
}

.contact-info-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 20px;
}

.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.contact-info-card p { color: var(--plum-soft); font-size: 0.92rem; }
.contact-info-card a.link { color: var(--gold-bright); font-weight: 500; }
.contact-info-card .pending {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 161, 90, 0.35);
  padding: 4px 10px;
  border-radius: 999px;
}

.whatsapp-card {
  background: var(--gradient-brand);
  border-radius: 20px;
  padding: 32px 36px;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.whatsapp-card h3 { color: var(--cream); margin-bottom: 6px; }
.whatsapp-card p { color: rgba(251, 246, 236, 0.9); font-size: 0.9rem; }
.whatsapp-card .btn { background: var(--cream); color: var(--rose); white-space: nowrap; }

.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 44px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--plum-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  font-family: var(--sans);
  font-size: 0.94rem;
  color: var(--ink);
  background: var(--bg);
  resize: vertical;
}

.form-field select option { background: var(--panel); color: var(--ink); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--panel-raised);
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(178, 165, 148, 0.6); }

.form-note {
  font-size: 0.8rem;
  color: var(--plum-soft);
  margin-top: 14px;
}

.form-success {
  display: none;
  background: var(--blush);
  border: 1px solid var(--blush-deep);
  color: var(--ink);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.9rem;
  margin-top: 18px;
}

.map-note {
  background: var(--blush);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; color: var(--plum-soft); font-size: 0.92rem; max-width: 60ch; }

/* ------------------------------ WhatsApp floating button -------------------- */

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.55);
  transition: transform 0.2s ease;
}

.whatsapp-fab:hover { transform: scale(1.06); }
.whatsapp-fab svg { width: 28px; height: 28px; }

/* --------------------------- Bottom mobile tab bar --------------------------- */

.bottom-tabbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 140;
  background: rgba(19, 17, 21, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
}

.bottom-tabbar ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bottom-tabbar li { flex: 1; }

.bottom-tabbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--plum-soft);
  font-size: 0.6rem;
  letter-spacing: 0.02em;
  padding: 4px 0;
  position: relative;
}

.bottom-tabbar a.active { color: var(--gold-bright); }
.bottom-tabbar a svg { width: 20px; height: 20px; }

.bottom-tabbar .count {
  position: absolute;
  top: -2px;
  right: 16px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.55rem;
  font-weight: 600;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ----------------------------------- Utility -------------------------------- */

.tac { text-align: center; }
.mt-lg { margin-top: 60px; }

/* ----------------------------------- Responsive ------------------------------ */

@media (max-width: 1020px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .hero .wrap.hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 10px; }
  .hero-copy p.lede { margin-left: auto; margin-right: auto; }
  .btn-row, .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-visual .visual-frame { width: min(320px, 100%); }

  nav.main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--panel-raised);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 32px 30px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    transition: transform 0.3s ease;
  }
  nav.main-nav.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  
  /* --- NEW SOCIAL NAV ICONS FOR MOBILE --- */
  .nav-socials { 
    margin-left: 0; 
    padding-left: 0; 
    border-left: none; 
    width: 100%; 
    border-top: 1px solid rgba(241, 234, 217, 0.15); 
    padding-top: 16px; 
    margin-top: 8px;
  }

  .collection-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .founder-note { grid-template-columns: 1fr; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .whatsapp-card { flex-direction: column; text-align: center; }
  section { padding: 64px 0; }

  .bottom-tabbar { display: block; }
  body { padding-bottom: 64px; }
  .whatsapp-fab { bottom: 78px; right: 16px; width: 50px; height: 50px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
}

/* ==========================================================================
   FINAL HERO SLIDER FIX
   ========================================================================== */

.hero.hero-slider {
  position: relative;
  overflow: hidden;
  background: #0E0D10;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: crossfade 20s infinite;
  z-index: 0;
}

.hero-slider .slide:nth-child(1) { animation-delay: 0s; }
.hero-slider .slide:nth-child(2) { animation-delay: 5s; }
.hero-slider .slide:nth-child(3) { animation-delay: 10s; }
.hero-slider .slide:nth-child(4) { animation-delay: 15s; }

@keyframes crossfade {
  0% { opacity: 0; }
  10% { opacity: 1; }
  25% { opacity: 1; }
  35% { opacity: 0; }
  100% { opacity: 0; }
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 13, 16, 0.65);
  z-index: 1;
}

.hero-slider .wrap, 
.hero-slider .drape-divider {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-slider .drape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
}

.hero-slider .hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.hero-slider .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-slider .hero-copy p.lede { margin: 0 auto 30px; }
.hero-slider .btn-row, .hero-slider .hero-stats { justify-content: center; }

.hero-slider .hero-copy h1, 
.hero-slider .hero-stats div strong { 
  color: var(--cream); 
}

.hero-slider .hero-copy p.lede, 
.hero-slider .hero-stats div span { 
  color: rgba(251, 246, 236, 0.9); 
}