:root {
  --maroon: #7a1f2b;
  --maroon-deep: #5c1720;
  --gold: #b8862b;
  --gold-soft: #d4a94a;
  --cream: #faf5ec;
  --cream-warm: #f4ead6;
  --ink: #2a1f1a;
  --ink-soft: #6b5e54;
  --line: #e8dcc4;
  --coral: #d97642;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 300;
}

.serif {
  font-family: 'Cormorant Garamond', serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Announce + Nav ── */
.announce {
  background: var(--maroon);
  color: #f0d2a6;
  text-align: center;
  font-size: 13px;
  padding: 8px;
  letter-spacing: 0.5px;
}

.nav {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--maroon);
  letter-spacing: 2px;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-bottom: 4px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--maroon);
  border-bottom: 1.5px solid var(--gold);
}

.nav-icons {
  display: flex;
  gap: 20px;
  font-size: 17px;
  color: var(--ink);
}

.nav-icons span {
  cursor: pointer;
  transition: color 0.2s;
}

.nav-icons span:hover {
  color: var(--maroon);
}

/* ═══ HERO — full-width scrollable ═══ */
.hero {
  position: relative;
  overflow: hidden;
  background: #1c1013;
}

.hero-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.hero-track::-webkit-scrollbar {
  display: none;
}

.hero-slide {
  flex: 0 0 100%;
  height: 640px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* placeholder visuals — three distinct tones */
.hero-slide[data-i="0"] .hero-bg {
  background:
    linear-gradient(135deg, rgba(122, 31, 43, 0.5), rgba(28, 16, 19, 0.85)),
    radial-gradient(circle at 30% 40%, #8a3845 0%, #3a181e 70%);
}

.hero-slide[data-i="1"] .hero-bg {
  background:
    linear-gradient(135deg, rgba(60, 30, 18, 0.45), rgba(28, 16, 19, 0.85)),
    radial-gradient(circle at 70% 50%, #a87333 0%, #3a2410 70%);
}

.hero-slide[data-i="2"] .hero-bg {
  background:
    linear-gradient(135deg, rgba(50, 25, 50, 0.45), rgba(28, 16, 19, 0.85)),
    radial-gradient(circle at 50% 50%, #5a3a5a 0%, #2a1828 70%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 169, 74, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 75% 60%, rgba(240, 210, 166, 0.12) 0%, transparent 35%);
}

.hero-placeholder-tag {
  position: absolute;
  bottom: 18px;
  right: 24px;
  font-family: monospace;
  font-size: 11px;
  color: rgba(240, 210, 166, 0.4);
  z-index: 3;
  letter-spacing: 1px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  height: 100%;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #faf1dd;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--gold-soft);
  font-weight: 500;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 86px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
  max-width: 700px;
}

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

.hero p {
  margin-top: 20px;
  font-size: 17px;
  color: #e8d5b0;
  max-width: 480px;
  line-height: 1.6;
  font-weight: 300;
}

.hero-cta {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 34px;
  background: var(--gold);
  color: var(--maroon-deep);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 3px;
  transition: all 0.25s;
}

.hero-cta:hover {
  background: var(--gold-soft);
  gap: 18px;
}

/* Hero controls (external - outside slides) */
.hero-controls {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.hero-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(240, 210, 166, 0.4);
  border-radius: 50%;
  background: rgba(28, 16, 19, 0.45);
  color: #f0d2a6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.2s;
  backdrop-filter: blur(6px);
}

.hero-arrow:hover {
  background: var(--gold);
  color: var(--maroon-deep);
  border-color: var(--gold);
}

.hero-dots {
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 28px;
  height: 2px;
  background: rgba(240, 210, 166, 0.35);
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  padding: 0;
}

.hero-dot.active {
  background: var(--gold);
  width: 48px;
}

/* ═══ CATEGORY TABS (under nav) ═══ */
.cat-strip {
  background: var(--cream-warm);
  border-bottom: 1px solid var(--line);
}

.cat-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 4px 20px;
}

.cat-tab {
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s;
  cursor: pointer;
}

.cat-tab:hover {
  color: var(--maroon);
}

.cat-tab.active {
  color: var(--maroon);
  font-weight: 500;
}

.cat-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--gold);
}

/* ═══ SHOP BY ROLE ═══ */
.section {
  padding: 90px 48px;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 46px;
  font-weight: 500;
  color: var(--maroon);
  line-height: 1.1;
}

.section-head p {
  color: var(--ink-soft);
  margin-top: 12px;
  font-size: 15px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.role-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s;
}

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

.role-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, #e0d4b8, #e0d4b8 1px, #ead9b8 1px, #ead9b8 14px);
}

.role-card[data-r="bride"] .role-bg {
  background: linear-gradient(160deg, #c94a5e 0%, #7a1f2b 100%);
}

.role-card[data-r="festive"] .role-bg {
  background: linear-gradient(160deg, #d98c3a 0%, #8a4a1a 100%);
}

.role-card[data-r="haldi"] .role-bg {
  background: linear-gradient(160deg, #dfb13a 0%, #8a6520 100%);
}

.role-card[data-r="daily"] .role-bg {
  background: linear-gradient(160deg, #b0b98c 0%, #5c6b48 100%);
}

.role-card[data-r="mehandi"] .role-bg {
  background: linear-gradient(160deg, #6e8a4a 0%, #3a4a24 100%);
}

.role-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.75));
  z-index: 2;
}

.role-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: monospace;
  font-size: 10px;
  color: rgba(240, 210, 166, 0.55);
  letter-spacing: 1px;
  z-index: 3;
}

.role-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 3;
  color: #faf1dd;
}

.role-label .r-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 6px;
}

.role-label .r-sub {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.role-label .r-sub .arr {
  display: inline-block;
  transition: transform 0.25s;
}

.role-card:hover .r-sub .arr {
  transform: translateX(6px);
}

/* ═══ OUR LEGACY — BENTO GRID ═══ */
.legacy-wrap {
  background: var(--cream-warm);
  padding: 90px 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legacy-bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 14px;
}

.b-tile {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: repeating-linear-gradient(135deg, #d9c8a0, #d9c8a0 1px, #e5d5ac 1px, #e5d5ac 14px);
  border: 1px solid var(--line);
  transition: transform 0.35s;
}

.b-tile:hover {
  transform: scale(1.015);
}

.b-tile::before {
  content: attr(data-tag);
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: monospace;
  font-size: 11px;
  color: rgba(122, 31, 43, 0.5);
  letter-spacing: 1px;
  z-index: 2;
}

.b-hero {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  background:
    linear-gradient(160deg, rgba(122, 31, 43, 0.2), rgba(92, 23, 32, 0.5)),
    repeating-linear-gradient(135deg, #d9c8a0, #d9c8a0 1px, #e5d5ac 1px, #e5d5ac 14px);
}

.b-hero-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: #faf1dd;
  z-index: 3;
}

.b-hero-label .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
}

.b-hero-label .small {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 8px;
}

.b-a {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.b-b {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.b-c {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.b-stat {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  background: linear-gradient(160deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color: #faf1dd;
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.b-stat::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(212, 169, 74, 0.2);
  border-radius: 50%;
}

.b-stat::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(212, 169, 74, 0.25);
  border-radius: 50%;
}

.b-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 500;
  color: var(--gold-soft);
  line-height: 1;
}

.b-stat .num sup {
  font-size: 28px;
  vertical-align: top;
}

.b-stat .lbl {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e8d5b0;
  margin-top: 6px;
}

/* ═══ STITCHING CORNER ═══ */
.stitch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.promo-card {
  background: linear-gradient(160deg, #3a2218 0%, #2a1812 100%);
  color: #f4ead6;
  border-radius: 3px;
  padding: 40px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(240, 210, 166, 0.12);
  border-radius: 50%;
}

.promo-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(240, 210, 166, 0.1);
  border-radius: 50%;
}

.promo-icon {
  width: 64px;
  height: 64px;
  border: 1px dashed rgba(240, 210, 166, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.promo-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold-soft);
}

.promo-sm {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.7;
  color: #d9c8a0;
  position: relative;
  z-index: 2;
}

.promo-rule {
  width: 50px;
  height: 1px;
  background: rgba(240, 210, 166, 0.3);
  margin: 18px 0;
  position: relative;
  z-index: 2;
}

.promo-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
  color: #faf1dd;
  position: relative;
  z-index: 2;
}

.promo-foot {
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(240, 210, 166, 0.55);
  font-style: italic;
  position: relative;
  z-index: 2;
}

.prod-card {
  background: var(--cream-warm);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s;
  position: relative;
}

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

.prod-img {
  height: 320px;
  position: relative;
  overflow: hidden;
}

.prod-card[data-p="blouse"] .prod-img {
  background: linear-gradient(160deg, #7a2a4a 0%, #3a1020 100%);
}

.prod-card[data-p="salwar"] .prod-img {
  background: linear-gradient(160deg, #d9548a 0%, #7a1f4a 100%);
}

.prod-card[data-p="lehenga"] .prod-img {
  background: linear-gradient(160deg, #b3b896 0%, #6a6b4a 100%);
}

.prod-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.prod-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: monospace;
  font-size: 10px;
  color: rgba(250, 241, 221, 0.6);
  letter-spacing: 1px;
}

.prod-info {
  padding: 20px 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.prod-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--maroon);
}

.prod-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
}

.cta-circle {
  width: 30px;
  height: 30px;
  background: var(--coral);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: transform 0.25s;
}

.prod-card:hover .cta-circle {
  transform: translateX(4px);
}

/* ═══ FOOTER ═══ */
footer {
  background: var(--maroon-deep);
  color: #e8d5b0;
  padding: 60px 48px 24px;
}

.foot-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.foot h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-soft);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.foot ul {
  list-style: none;
}

.foot li {
  margin-bottom: 10px;
  font-size: 13px;
}

.foot a {
  color: #c9a77c;
  text-decoration: none;
}

.foot a:hover {
  color: #f0d2a6;
}

.foot-brand .logo-main {
  color: #f0d2a6;
}

.foot-brand .logo-sub {
  color: #b89a75;
}

.foot-brand p {
  margin-top: 14px;
  font-size: 13px;
  color: #c9a77c;
  max-width: 280px;
  line-height: 1.7;
}

.foot-bottom {
  max-width: 1180px;
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid #4a1219;
  text-align: center;
  font-size: 12px;
  color: #a68762;
  letter-spacing: 1px;
}

@media (max-width: 980px) {
  .nav {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .hero-slide {
    height: 480px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .cat-inner {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .cat-tab {
    padding: 12px 20px;
    flex-shrink: 0;
  }

  .section {
    padding: 50px 20px;
  }

  .section-head h2 {
    font-size: 34px;
  }

  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legacy-wrap {
    padding: 50px 20px;
  }

  .legacy-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 140px 140px;
  }

  .b-hero {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .b-a {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .b-b {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .b-c {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .b-stat {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }

  .stitch-grid {
    grid-template-columns: 1fr 1fr;
  }

  .promo-card {
    grid-column: 1 / 3;
    padding: 30px;
  }

  .prod-img {
    height: 260px;
  }

  .foot-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.cat-tab {
  text-decoration: none;
  display: inline-block;
}