:root {
  --bg: #f6f1eb;
  --surface: #fffaf4;
  --surface-strong: #f0e4d6;
  --ink: #1c1714;
  --muted: #5e5046;
  --line: rgba(28, 23, 20, 0.12);
  --accent: #8c5f3c;
  --accent-deep: #5f3921;
  --highlight: #d8b48b;
  --shadow: 0 24px 80px rgba(36, 24, 15, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: min(1180px, calc(100vw - 2rem));
  --section-gap: clamp(3rem, 7vw, 5.5rem);
  --weather-page-overlay: linear-gradient(180deg, rgba(250, 244, 236, 0.52), rgba(239, 230, 220, 0.82));
  --weather-accent-overlay:
    radial-gradient(circle at top left, rgba(216, 180, 139, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.16));
  --weather-hero-overlay:
    linear-gradient(90deg, rgba(19, 12, 8, 0.84) 0%, rgba(19, 12, 8, 0.5) 42%, rgba(19, 12, 8, 0.3) 100%),
    linear-gradient(180deg, rgba(16, 10, 6, 0.14), rgba(16, 10, 6, 0.54));
  --weather-image: url("https://images.unsplash.com/photo-1769107805412-90d9191d53e9?auto=format&fit=crop&fm=jpg&q=80&w=1800");
  --weather-filter: saturate(0.95) blur(1px);
  --weather-page-text: #1c1714;
  --weather-muted-text: #5e5046;
  --weather-header-bg: rgba(20, 16, 14, 0.28);
  --weather-header-border: rgba(255, 255, 255, 0.18);
  --weather-header-text: #fff9f3;
  --weather-card-bg: rgba(255, 250, 244, 0.88);
  --weather-card-border: rgba(28, 23, 20, 0.08);
  --weather-soft-card-bg: rgba(255, 250, 244, 0.72);
  --weather-soft-card-border: rgba(28, 23, 20, 0.08);
  --weather-card-shadow: 0 24px 80px rgba(36, 24, 15, 0.12);
  --weather-card-shadow-strong: 0 26px 70px rgba(36, 24, 15, 0.2);
  --weather-card-heading: #1c1714;
  --weather-icon-bg: rgba(140, 95, 60, 0.1);
  --weather-icon-color: #5f3921;
  --weather-button-light-bg: #fff7ef;
  --weather-button-light-text: #1c1714;
  --weather-button-outline-border: rgba(255, 248, 242, 0.36);
  --weather-button-outline-text: #fff8f2;
  --weather-hover-light-text: #1c1714;
  --weather-hover-dark-text: #f8f5f1;
  --weather-popup-bg: rgba(18, 12, 8, 0.82);
  --weather-popup-text: #fff8f2;
  --weather-popup-muted: rgba(255, 248, 242, 0.7);
  --weather-popup-close-bg: rgba(255, 248, 242, 0.1);
  --weather-hero-panel-bg: rgba(255, 248, 242, 0.12);
  --weather-hero-panel-border: rgba(255, 248, 242, 0.16);
  --weather-hero-copy: #fff8f2;
  --weather-hero-muted: rgba(255, 248, 242, 0.86);
  --weather-collection-overlay: linear-gradient(180deg, rgba(17, 11, 8, 0.08) 14%, rgba(17, 11, 8, 0.64) 100%);
  --weather-collection-text: #fff9f1;
  --weather-collection-muted: rgba(255, 249, 241, 0.84);
  --weather-collection-note: rgba(255, 249, 241, 0.92);
  --weather-promo-overlay: linear-gradient(135deg, rgba(95, 57, 33, 0.98), rgba(140, 95, 60, 0.86));
  --weather-promo-text: #fff8f0;
  --weather-promo-muted: rgba(255, 248, 240, 0.84);
  --weather-hero-rotator-bg: rgba(255, 248, 242, 0.08);
  --weather-hero-rotator-border: rgba(255, 248, 242, 0.16);
  --weather-hero-rotator-muted: rgba(255, 248, 242, 0.7);
  --weather-dot-bg: rgba(255, 248, 242, 0.28);
  --weather-dot-active: #fff7ef;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(251, 247, 241, 0.92) 0%, rgba(246, 241, 235, 0.9) 44%, rgba(239, 230, 220, 0.96) 100%);
  color: var(--weather-page-text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    var(--weather-page-overlay),
    var(--weather-image) center top / cover no-repeat;
  filter: var(--weather-filter);
  transform: scale(1.02);
  transition:
    filter 600ms ease,
    transform 600ms ease,
    background 600ms ease;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--weather-accent-overlay);
  pointer-events: none;
  transition: background 600ms ease;
}

body[data-weather-theme="sunny"] {
  --weather-page-overlay: linear-gradient(180deg, rgba(255, 244, 220, 0.36), rgba(245, 225, 195, 0.68));
  --weather-accent-overlay:
    radial-gradient(circle at top left, rgba(255, 214, 130, 0.34), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 236, 188, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 241, 220, 0.14));
  --weather-hero-overlay:
    linear-gradient(90deg, rgba(46, 27, 10, 0.72) 0%, rgba(46, 27, 10, 0.34) 45%, rgba(46, 27, 10, 0.16) 100%),
    linear-gradient(180deg, rgba(255, 214, 138, 0.12), rgba(42, 21, 8, 0.42));
  --weather-filter: saturate(1.08) blur(1px);
  --weather-page-text: #24170d;
  --weather-muted-text: #6c5744;
  --weather-header-bg: rgba(57, 34, 12, 0.32);
  --weather-header-border: rgba(255, 244, 220, 0.2);
  --weather-header-text: #fff9f0;
  --weather-card-bg: rgba(255, 249, 241, 0.9);
  --weather-soft-card-bg: rgba(255, 246, 234, 0.76);
  --weather-card-shadow: 0 22px 60px rgba(86, 59, 25, 0.12);
  --weather-card-shadow-strong: 0 24px 64px rgba(86, 59, 25, 0.16);
  --weather-icon-bg: rgba(184, 127, 61, 0.12);
  --weather-icon-color: #6b3c16;
  --weather-collection-overlay: linear-gradient(180deg, rgba(72, 38, 8, 0.08) 12%, rgba(72, 38, 8, 0.58) 100%);
  --weather-promo-overlay: linear-gradient(135deg, rgba(122, 73, 31, 0.94), rgba(186, 128, 65, 0.82));
}

body[data-weather-theme="cloudy"] {
  --weather-page-overlay: linear-gradient(180deg, rgba(230, 233, 239, 0.48), rgba(203, 208, 218, 0.76));
  --weather-accent-overlay:
    radial-gradient(circle at top left, rgba(184, 191, 204, 0.26), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(196, 204, 214, 0.22));
  --weather-hero-overlay:
    linear-gradient(90deg, rgba(25, 28, 35, 0.78) 0%, rgba(25, 28, 35, 0.42) 42%, rgba(25, 28, 35, 0.24) 100%),
    linear-gradient(180deg, rgba(185, 193, 204, 0.08), rgba(20, 22, 28, 0.46));
  --weather-filter: saturate(0.82) blur(1px);
  --weather-page-text: #171b22;
  --weather-muted-text: #4e5968;
  --weather-header-bg: rgba(32, 38, 48, 0.44);
  --weather-header-border: rgba(233, 239, 247, 0.16);
  --weather-header-text: #f6f8fb;
  --weather-card-bg: rgba(247, 249, 252, 0.86);
  --weather-soft-card-bg: rgba(239, 243, 248, 0.72);
  --weather-card-shadow: 0 22px 60px rgba(33, 42, 56, 0.12);
  --weather-card-shadow-strong: 0 24px 64px rgba(33, 42, 56, 0.16);
  --weather-card-heading: #171b22;
  --weather-icon-bg: rgba(86, 103, 130, 0.12);
  --weather-icon-color: #30425e;
  --weather-popup-bg: rgba(24, 28, 35, 0.84);
  --weather-collection-overlay: linear-gradient(180deg, rgba(28, 34, 42, 0.16) 12%, rgba(28, 34, 42, 0.7) 100%);
  --weather-promo-overlay: linear-gradient(135deg, rgba(51, 59, 72, 0.94), rgba(96, 110, 131, 0.82));
}

body[data-weather-theme="rain"] {
  --weather-page-overlay: linear-gradient(180deg, rgba(70, 85, 108, 0.38), rgba(43, 53, 69, 0.74));
  --weather-accent-overlay:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08) 8%, transparent 8%, transparent 42%, rgba(255, 255, 255, 0.06) 42%, rgba(255, 255, 255, 0.06) 44%, transparent 44%, transparent 78%, rgba(255, 255, 255, 0.05) 78%, rgba(255, 255, 255, 0.05) 80%, transparent 80%),
    linear-gradient(180deg, rgba(28, 36, 49, 0.1), rgba(16, 20, 28, 0.26));
  --weather-hero-overlay:
    linear-gradient(90deg, rgba(14, 20, 30, 0.84) 0%, rgba(14, 20, 30, 0.52) 42%, rgba(14, 20, 30, 0.28) 100%),
    linear-gradient(180deg, rgba(108, 128, 156, 0.1), rgba(10, 14, 20, 0.56));
  --weather-filter: saturate(0.78) blur(1.3px);
  --weather-page-text: #e7edf6;
  --weather-muted-text: rgba(231, 237, 246, 0.76);
  --weather-header-bg: rgba(12, 18, 28, 0.58);
  --weather-header-border: rgba(220, 230, 242, 0.14);
  --weather-header-text: #f5f8fd;
  --weather-card-bg: rgba(18, 25, 36, 0.64);
  --weather-card-border: rgba(226, 235, 247, 0.12);
  --weather-soft-card-bg: rgba(20, 28, 40, 0.58);
  --weather-soft-card-border: rgba(226, 235, 247, 0.1);
  --weather-card-shadow: 0 22px 60px rgba(6, 10, 18, 0.34);
  --weather-card-shadow-strong: 0 26px 68px rgba(6, 10, 18, 0.4);
  --weather-card-heading: #eef4ff;
  --weather-icon-bg: rgba(176, 194, 225, 0.14);
  --weather-icon-color: #eef4ff;
  --weather-button-light-bg: #eef3fb;
  --weather-button-light-text: #101827;
  --weather-button-outline-border: rgba(240, 246, 255, 0.34);
  --weather-button-outline-text: #f4f8ff;
  --weather-hover-light-text: #101827;
  --weather-hover-dark-text: #f4f8ff;
  --weather-popup-bg: rgba(12, 18, 28, 0.86);
  --weather-popup-text: #f4f8ff;
  --weather-popup-muted: rgba(244, 248, 255, 0.7);
  --weather-popup-close-bg: rgba(244, 248, 255, 0.1);
  --weather-hero-panel-bg: rgba(233, 242, 255, 0.1);
  --weather-hero-panel-border: rgba(233, 242, 255, 0.12);
  --weather-hero-copy: #f4f8ff;
  --weather-hero-muted: rgba(244, 248, 255, 0.82);
  --weather-collection-overlay: linear-gradient(180deg, rgba(14, 20, 30, 0.18) 14%, rgba(14, 20, 30, 0.78) 100%);
  --weather-collection-text: #f4f8ff;
  --weather-collection-muted: rgba(244, 248, 255, 0.82);
  --weather-collection-note: rgba(244, 248, 255, 0.92);
  --weather-promo-overlay: linear-gradient(135deg, rgba(16, 24, 38, 0.94), rgba(56, 74, 104, 0.82));
  --weather-promo-text: #f4f8ff;
  --weather-promo-muted: rgba(244, 248, 255, 0.82);
  --weather-hero-rotator-bg: rgba(233, 242, 255, 0.08);
  --weather-hero-rotator-border: rgba(233, 242, 255, 0.14);
  --weather-hero-rotator-muted: rgba(244, 248, 255, 0.68);
  --weather-dot-bg: rgba(244, 248, 255, 0.24);
  --weather-dot-active: #eef4ff;
}

body[data-weather-theme="night"] {
  --weather-page-overlay: linear-gradient(180deg, rgba(14, 20, 38, 0.44), rgba(10, 14, 26, 0.82));
  --weather-accent-overlay:
    radial-gradient(circle at 82% 14%, rgba(202, 220, 255, 0.18), transparent 12%),
    radial-gradient(circle at top left, rgba(42, 52, 82, 0.3), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(14, 18, 28, 0.22));
  --weather-hero-overlay:
    linear-gradient(90deg, rgba(8, 12, 24, 0.86) 0%, rgba(8, 12, 24, 0.54) 42%, rgba(8, 12, 24, 0.3) 100%),
    linear-gradient(180deg, rgba(86, 108, 160, 0.06), rgba(6, 8, 14, 0.6));
  --weather-filter: saturate(0.72) brightness(0.72) blur(1px);
  --weather-page-text: #edf3ff;
  --weather-muted-text: rgba(237, 243, 255, 0.74);
  --weather-header-bg: rgba(10, 14, 26, 0.6);
  --weather-header-border: rgba(223, 231, 255, 0.14);
  --weather-header-text: #f6f8ff;
  --weather-card-bg: rgba(12, 18, 32, 0.66);
  --weather-card-border: rgba(226, 233, 255, 0.12);
  --weather-soft-card-bg: rgba(14, 20, 36, 0.58);
  --weather-soft-card-border: rgba(226, 233, 255, 0.1);
  --weather-card-shadow: 0 22px 60px rgba(4, 8, 18, 0.36);
  --weather-card-shadow-strong: 0 26px 68px rgba(4, 8, 18, 0.42);
  --weather-card-heading: #f2f6ff;
  --weather-icon-bg: rgba(182, 196, 255, 0.12);
  --weather-icon-color: #eef3ff;
  --weather-button-light-bg: #eef2ff;
  --weather-button-light-text: #111827;
  --weather-button-outline-border: rgba(240, 245, 255, 0.32);
  --weather-button-outline-text: #f4f7ff;
  --weather-hover-light-text: #111827;
  --weather-hover-dark-text: #f4f7ff;
  --weather-popup-bg: rgba(10, 14, 26, 0.88);
  --weather-popup-text: #f6f8ff;
  --weather-popup-muted: rgba(246, 248, 255, 0.68);
  --weather-popup-close-bg: rgba(246, 248, 255, 0.1);
  --weather-hero-panel-bg: rgba(231, 238, 255, 0.08);
  --weather-hero-panel-border: rgba(231, 238, 255, 0.12);
  --weather-hero-copy: #f6f8ff;
  --weather-hero-muted: rgba(246, 248, 255, 0.82);
  --weather-collection-overlay: linear-gradient(180deg, rgba(8, 12, 24, 0.18) 14%, rgba(8, 12, 24, 0.8) 100%);
  --weather-collection-text: #f6f8ff;
  --weather-collection-muted: rgba(246, 248, 255, 0.84);
  --weather-collection-note: rgba(246, 248, 255, 0.92);
  --weather-promo-overlay: linear-gradient(135deg, rgba(10, 14, 26, 0.95), rgba(44, 58, 96, 0.82));
  --weather-promo-text: #f6f8ff;
  --weather-promo-muted: rgba(246, 248, 255, 0.82);
  --weather-hero-rotator-bg: rgba(231, 238, 255, 0.08);
  --weather-hero-rotator-border: rgba(231, 238, 255, 0.14);
  --weather-hero-rotator-muted: rgba(246, 248, 255, 0.68);
  --weather-dot-bg: rgba(246, 248, 255, 0.24);
  --weather-dot-active: #eef2ff;
}

.welcome-popup {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  width: min(24rem, calc(100vw - 1.5rem));
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(255, 248, 242, 0.16);
  border-radius: 1.4rem;
  background: var(--weather-popup-bg);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(12, 8, 6, 0.28);
  color: var(--weather-popup-text);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.welcome-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.welcome-popup-label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--weather-popup-muted);
}

.welcome-popup-message {
  display: block;
  max-width: 18rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.welcome-popup-close {
  position: absolute;
  top: 0.65rem;
  right: 0.7rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: var(--weather-popup-close-bg);
  color: var(--weather-popup-text);
  font-size: 1.2rem;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.welcome-popup-close:hover,
.welcome-popup-close:focus-visible {
  background: rgba(255, 248, 242, 0.18);
  transform: scale(1.04);
  color: var(--weather-hover-dark-text);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: var(--container);
  margin: 1rem auto 0;
  padding: 1rem 1.2rem;
  border: 1px solid var(--weather-header-border);
  border-radius: 999px;
  background: var(--weather-header-bg);
  backdrop-filter: blur(18px);
  color: var(--weather-header-text);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.15rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-copy strong,
.eyebrow,
h1,
h2,
h3,
.marketplace-card strong,
.social-link strong,
.promo-block h2 {
  font-family: "Cormorant Garamond", serif;
}

.brand-copy strong {
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.brand-copy small {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.93rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  opacity: 0.88;
  transition: opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  color: var(--weather-header-text);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(7rem, 13vw, 8.25rem) 1rem 3rem;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--weather-hero-copy);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: var(--weather-hero-overlay), var(--weather-image) center center/cover;
  transform: scale(1.05);
  transition: transform 900ms ease;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 11rem;
  background: linear-gradient(180deg, rgba(246, 241, 235, 0), var(--bg));
}

.hero-content,
.hero-panels {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
}

.hero-content {
  max-width: 42rem;
  padding-bottom: 5rem;
  animation: rise 700ms ease-out both;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  max-width: 11ch;
}

.hero-text {
  max-width: 34rem;
  margin: 1.35rem 0 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--weather-hero-muted);
}

.hero-rotator {
  display: inline-grid;
  gap: 0.45rem;
  margin-top: 1.4rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--weather-hero-rotator-border);
  border-radius: 1.2rem;
  background: var(--weather-hero-rotator-bg);
  backdrop-filter: blur(14px);
  max-width: 29rem;
}

.hero-rotator-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--weather-hero-rotator-muted);
}

.hero-rotator-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  line-height: 1.1;
  min-height: 1.6em;
}

.hero-rotator-dots {
  display: flex;
  gap: 0.35rem;
}

.hero-rotator-dots span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--weather-dot-bg);
  transition:
    width 240ms ease,
    background 240ms ease,
    transform 240ms ease;
}

.hero-rotator-dots .is-active {
  width: 1.3rem;
  background: var(--weather-dot-active);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible,
.marketplace-card:hover,
.marketplace-card:focus-visible,
.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
}

.btn,
.site-nav a,
.brand,
.collection-card,
.marketplace-logo,
.social-icon,
.legal-block {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    opacity 220ms ease,
    color 220ms ease;
}

.btn-light {
  background: var(--weather-button-light-bg);
  color: var(--weather-button-light-text);
  box-shadow: 0 12px 30px rgba(18, 12, 8, 0.18);
}

.btn-outline {
  border: 1px solid var(--weather-button-outline-border);
  color: var(--weather-button-outline-text);
}

.btn-light:hover,
.btn-light:focus-visible {
  box-shadow: 0 18px 34px rgba(18, 12, 8, 0.22);
  color: var(--weather-hover-light-text);
}

.btn:active,
.marketplace-card:active,
.social-link:active,
.collection-card:active {
  transform: translateY(0) scale(0.985);
}

.hero-panels {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding-bottom: 4.2rem;
  flex-wrap: wrap;
}

.hero-panel {
  width: min(18rem, 42vw);
  padding: 1.1rem 1.1rem 1.4rem;
  border: 1px solid var(--weather-hero-panel-border);
  border-radius: 1.5rem;
  background: var(--weather-hero-panel-bg);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
  animation: floatIn 850ms ease-out both;
}

.hero-panel-tall {
  margin-top: 2.5rem;
}

.hero-panel span {
  display: block;
  margin-bottom: 3.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.82;
}

.hero-panel strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.45;
  font-weight: 600;
}

main > section:not(.hero) {
  width: var(--container);
  margin: 0 auto;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.intro-strip {
  margin-top: 1.5rem;
  padding: 1.4rem 0 0;
}

.intro-strip p {
  margin: 0;
  max-width: 58rem;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.7;
  color: var(--weather-muted-text);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 1.2rem;
  padding: var(--section-gap) 0;
}

.story-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-width: 0;
}

.story-card-image {
  min-height: 38rem;
  display: flex;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(18, 12, 8, 0.04) 20%, rgba(18, 12, 8, 0.58) 100%),
    url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=1200&q=80") center/cover;
  color: #fff7f0;
}

.story-copy {
  max-width: 34rem;
  padding: 2rem;
}

.story-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1;
}

.story-copy p:last-child,
.story-card-copy p {
  font-size: 1rem;
  line-height: 1.8;
}

.story-card-copy {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
    var(--weather-card-bg);
  border: 1px solid var(--weather-card-border);
  box-shadow: var(--weather-card-shadow);
}

.story-card-copy h3,
.section-heading h2,
.editorial-copy h2,
.promo-block h2 {
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 3.6rem);
  line-height: 1.02;
  color: var(--weather-card-heading);
}

.story-card-copy p {
  color: var(--weather-muted-text);
}

.feature-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.feature-list li {
  padding: 0.95rem 1rem;
  border-top: 1px solid var(--line);
  color: var(--weather-card-heading);
}

.collections,
.marketplaces,
.follow-us {
  padding: 1rem 0 var(--section-gap);
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 1.8rem;
}

.section-heading p:last-child {
  margin: 0.9rem 0 0;
  color: var(--weather-muted-text);
  line-height: 1.8;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.collection-card {
  min-height: 22rem;
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-radius: var(--radius-md);
  overflow: hidden;
  color: var(--weather-collection-text);
  background-size: cover;
  background-position: center;
  box-shadow: var(--weather-card-shadow);
  position: relative;
  isolation: isolate;
  transform-origin: center;
  min-width: 0;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.08));
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.collection-card h3 {
  margin: 0.35rem 0 0.5rem;
  font-size: 2rem;
  line-height: 1;
}

.collection-card p {
  margin: 0;
  max-width: 28rem;
  line-height: 1.75;
  color: var(--weather-collection-muted);
}

.collection-note {
  margin-top: 1rem;
  display: inline-block;
  max-width: 28rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--weather-collection-note);
}

.collection-card:hover,
.collection-card:focus-visible,
.collection-card.is-active {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--weather-card-shadow-strong);
}

.collection-card:hover::after,
.collection-card:focus-visible::after,
.collection-card.is-active::after {
  opacity: 1;
}

.collection-tag {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.arrival {
  grid-column: span 7;
  background:
    var(--weather-collection-overlay),
    url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.trending {
  grid-column: span 5;
  background:
    var(--weather-collection-overlay),
    url("https://images.unsplash.com/photo-1503342452485-86ff0a1adf1d?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.western {
  grid-column: span 4;
  background:
    var(--weather-collection-overlay),
    url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.ethnic {
  grid-column: span 4;
  background:
    var(--weather-collection-overlay),
    url("https://images.unsplash.com/photo-1617137968427-85924c800a22?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.best {
  grid-column: span 4;
  background:
    var(--weather-collection-overlay),
    url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.editorial-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  margin: 0 auto 4rem;
  padding: 2rem 0;
  align-items: end;
}

.editorial-copy p:last-child {
  max-width: 38rem;
  color: var(--weather-muted-text);
  line-height: 1.8;
}

.editorial-metrics {
  display: grid;
  gap: 1rem;
}

.editorial-metrics div {
  padding: 1.25rem 1.3rem;
  border-top: 1px solid var(--line);
  min-width: 0;
}

.editorial-metrics strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.editorial-metrics span {
  color: var(--weather-muted-text);
}

.marketplace-grid,
.social-grid {
  display: grid;
  gap: 1rem;
}

.marketplace-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.marketplace-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 10rem;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: var(--weather-card-bg);
  border: 1px solid var(--weather-card-border);
  box-shadow: var(--weather-card-shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.marketplace-card > div,
.social-link > div {
  min-width: 0;
}

.marketplace-card:hover,
.marketplace-card:focus-visible {
  border-color: rgba(140, 95, 60, 0.3);
  background: #fffdf9;
  box-shadow: var(--weather-card-shadow-strong);
  color: var(--weather-hover-light-text);
}

.marketplace-card:hover strong,
.marketplace-card:focus-visible strong,
.marketplace-card:hover span:last-child,
.marketplace-card:focus-visible span:last-child {
  color: var(--weather-hover-light-text);
}

.marketplace-logo,
.social-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
}

.marketplace-logo {
  width: 4.6rem;
  height: 3.2rem;
  padding: 0.45rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(28, 23, 20, 0.08);
}

.marketplace-card strong,
.social-link strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 2rem;
  line-height: 1;
}

.marketplace-card span:last-child,
.social-link span:last-child {
  color: var(--weather-muted-text);
  line-height: 1.65;
}

.marketplace-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.marketplace-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.marketplace-letter {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1;
}


.marketplace-amazon .marketplace-logo,
.marketplace-myntra .marketplace-logo {
  width: 3.8rem;
  height: 3.8rem;
  padding: 0.45rem;
  border-radius: 0.9rem;
}

.marketplace-amazon .marketplace-logo {
  padding: 0.42rem;
  background: #ffffff;
  border-color: rgba(28, 23, 20, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.marketplace-flipkart .marketplace-logo {
  background: linear-gradient(135deg, #135fcb, #2a8cff);
  padding: 0.42rem;
}

.marketplace-myntra .marketplace-logo {
  background: linear-gradient(135deg, #fff6fb, #ffffff);
  border-color: rgba(236, 0, 140, 0.18);
  padding: 0.42rem;
}


.marketplace-website .marketplace-logo {
  width: 3.85rem;
  height: 3.85rem;
  padding: 0.3rem;
  border-radius: 50%;
  background: #101010;
}

.marketplace-website .marketplace-logo img {
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
}

.marketplace-card:hover .marketplace-logo,
.marketplace-card:focus-visible .marketplace-logo {
  transform: scale(1.06) rotate(-2deg);
}

.promo-block {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  margin: 0 auto 4rem;
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  background: var(--weather-promo-overlay), url("https://images.unsplash.com/photo-1521572267360-ee0c2909d518?auto=format&fit=crop&w=1200&q=80") center/cover;
  color: var(--weather-promo-text);
  box-shadow: var(--weather-card-shadow);
}

.promo-block p:last-child {
  align-self: end;
  line-height: 1.8;
  color: var(--weather-promo-muted);
}

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

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 6.8rem;
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius-md);
  background: var(--weather-soft-card-bg);
  border: 1px solid var(--weather-soft-card-border);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  background: #fffdf9;
  border-color: rgba(140, 95, 60, 0.3);
  box-shadow: var(--weather-card-shadow-strong);
  color: var(--weather-hover-light-text);
}

.social-link:hover strong,
.social-link:focus-visible strong,
.social-link:hover span:last-child,
.social-link:focus-visible span:last-child {
  color: var(--weather-hover-light-text);
}

.social-icon {
  background: var(--weather-icon-bg);
  color: var(--weather-icon-color);
}

.social-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
}

.social-link:hover .social-icon,
.social-link:focus-visible .social-icon {
  transform: translateY(-2px) scale(1.08);
  background: rgba(140, 95, 60, 0.16);
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 2.5rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  color: var(--weather-muted-text);
  border-top: 1px solid var(--weather-card-border);
  margin-top: 1rem;
  padding-top: 2rem;
}

.footer-brand,
.footer-legal,
.legal-block {
  min-width: 0;
}

.footer-brand p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--weather-page-text);
}

.footer-brand span {
  display: block;
  margin-top: 0.35rem;
}

.footer-legal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.legal-block {
  padding: 1.1rem 1.2rem;
  border-radius: 1.2rem;
  background: var(--weather-soft-card-bg);
  border: 1px solid var(--weather-soft-card-border);
  box-shadow: var(--weather-card-shadow);
}

.legal-block:hover {
  transform: translateY(-2px);
}

.legal-block h2 {
  margin: 0 0 0.85rem;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--weather-page-text);
}

.legal-block p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--weather-muted-text);
}

.legal-block p + p {
  margin-top: 0.8rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rainDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 26px, 0 0;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal="hero"] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.is-ready .hero:hover .hero-backdrop {
  transform: scale(1.09);
}

body[data-weather-theme="rain"]::after {
  animation: rainDrift 9s linear infinite;
}

@media (min-width: 1440px) {
  :root {
    --container: min(1320px, calc(100vw - 4rem));
  }

  .hero-content {
    max-width: 48rem;
  }

  .hero-panels {
    padding-bottom: 5rem;
  }
}

@media (max-width: 1180px) {
  :root {
    --container: min(1100px, calc(100vw - 1.5rem));
  }

  .site-header {
    padding: 0.9rem 1rem;
  }

  .site-nav {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero-content {
    max-width: 36rem;
    padding-bottom: 3.5rem;
  }

  .hero-panels {
    padding-bottom: 3rem;
  }
}

@media (max-width: 980px) {
  .site-header {
    width: calc(100vw - 1rem);
    padding: 0.9rem 1rem;
    border-radius: 1.25rem;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero-panels,
  .story-grid,
  .editorial-band,
  .promo-block {
    grid-template-columns: 1fr;
  }

  .marketplace-grid,
  .social-grid,
  .footer-legal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panels {
    justify-content: stretch;
    flex-direction: column;
  }

  .hero-panel,
  .hero-panel-tall {
    width: 100%;
    margin-top: 0;
  }

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

  .arrival,
  .trending {
    grid-column: span 2;
  }

  .western,
  .ethnic,
  .best {
    grid-column: span 1;
  }

  .collection-grid {
    display: grid;
    gap: 1rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .brand-copy strong {
    font-size: 1.05rem;
  }

  .brand-copy small {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .story-copy,
  .story-card-copy {
    padding: 1.6rem;
  }

  .marketplace-card strong,
  .social-link strong {
    font-size: 1.8rem;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100vw - 1.25rem);
  }

  .site-header {
    margin-top: 0.6rem;
    padding: 0.8rem 0.9rem;
  }

  .brand-copy small {
    letter-spacing: 0.12em;
  }

  .brand-mark {
    width: 2.45rem;
    height: 2.45rem;
  }

  h1 {
    max-width: 9ch;
  }

  .hero-content {
    padding-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-text,
  .intro-strip p,
  .section-heading p:last-child,
  .story-copy p:last-child,
  .story-card-copy p,
  .editorial-copy p:last-child,
  .promo-block p:last-child {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .story-card-image,
  .collection-card {
    min-height: 22rem;
  }

  .hero-rotator {
    max-width: 100%;
  }

  .story-copy,
  .story-card-copy,
  .promo-block {
    padding: 1.35rem;
  }

  .marketplace-grid,
  .social-grid,
  .footer-legal,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .arrival,
  .trending,
  .western,
  .ethnic,
  .best {
    grid-column: auto;
  }

  .marketplace-card,
  .social-link {
    min-height: unset;
    padding: 1rem 1.05rem;
  }

  .welcome-popup {
    right: 0.6rem;
    left: 0.6rem;
    bottom: 0.7rem;
    width: auto;
  }

  .marketplace-card strong,
  .social-link strong {
    font-size: 1.6rem;
  }

  .site-footer {
    padding-bottom: 1.8rem;
  }

  body::before {
    background:
      var(--weather-page-overlay),
      var(--weather-image) 62% top / cover no-repeat;
  }

  .hero-backdrop {
    background: var(--weather-hero-overlay), var(--weather-image) 64% center / cover;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100vw - 1rem);
    --radius-lg: 24px;
    --radius-md: 18px;
  }

  .site-header {
    width: calc(100vw - 0.75rem);
    margin-top: 0.4rem;
    border-radius: 1rem;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .brand-copy small {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .hero {
    padding-top: 6.4rem;
    padding-bottom: 1.5rem;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 3.7rem);
  }

  .eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
  }

  .hero-rotator-text,
  .marketplace-card strong,
  .social-link strong {
    font-size: 1.35rem;
  }

  .hero-panel {
    padding: 1rem;
  }

  .story-card-image,
  .collection-card {
    min-height: 19rem;
  }

  .story-copy,
  .story-card-copy,
  .promo-block,
  .legal-block {
    padding: 1rem;
  }

  .marketplace-logo {
    width: 4rem;
    height: 2.8rem;
  }

  .social-icon {
    width: 3rem;
    height: 3rem;
  }

  .welcome-popup-message {
    max-width: 100%;
    font-size: 1.2rem;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}




/* BB Collection brand refresh - 2026 storefront polish */
:root {
  --brand-bg: #f7f5f0;
  --brand-surface: #ffffff;
  --brand-ink: #111312;
  --brand-muted: #5f625d;
  --brand-line: rgba(17, 19, 18, 0.12);
  --brand-pine: #10231d;
  --brand-blush: #b95f7a;
  --brand-gold: #c6a15b;
  --brand-shadow: 0 28px 80px rgba(17, 19, 18, 0.14);
  --brand-soft-shadow: 0 18px 50px rgba(17, 19, 18, 0.1);
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1200px, calc(100vw - 2rem));
  --weather-page-text: var(--brand-ink);
  --weather-muted-text: var(--brand-muted);
  --weather-header-bg: rgba(255, 255, 255, 0.84);
  --weather-header-border: rgba(17, 19, 18, 0.1);
  --weather-header-text: var(--brand-ink);
  --weather-card-bg: rgba(255, 255, 255, 0.9);
  --weather-card-border: rgba(17, 19, 18, 0.1);
  --weather-soft-card-bg: rgba(255, 255, 255, 0.74);
  --weather-card-heading: var(--brand-ink);
  --weather-button-light-bg: #ffffff;
  --weather-button-light-text: var(--brand-ink);
  --weather-button-outline-border: rgba(255, 255, 255, 0.46);
  --weather-button-outline-text: #ffffff;
  --weather-hero-copy: #ffffff;
  --weather-hero-muted: rgba(255, 255, 255, 0.82);
  --weather-hero-panel-bg: rgba(255, 255, 255, 0.12);
  --weather-hero-panel-border: rgba(255, 255, 255, 0.2);
}

body,
body[data-weather-theme="sunny"],
body[data-weather-theme="cloudy"],
body[data-weather-theme="rain"],
body[data-weather-theme="night"] {
  --weather-page-text: var(--brand-ink);
  --weather-muted-text: var(--brand-muted);
  --weather-header-bg: rgba(255, 255, 255, 0.86);
  --weather-header-border: rgba(17, 19, 18, 0.1);
  --weather-header-text: var(--brand-ink);
  --weather-card-bg: rgba(255, 255, 255, 0.92);
  --weather-card-border: rgba(17, 19, 18, 0.1);
  --weather-card-heading: var(--brand-ink);
  --weather-soft-card-bg: rgba(255, 255, 255, 0.76);
  --weather-card-shadow: var(--brand-soft-shadow);
  --weather-card-shadow-strong: var(--brand-shadow);
  --weather-hero-overlay:
    linear-gradient(90deg, rgba(9, 13, 12, 0.82) 0%, rgba(9, 13, 12, 0.58) 42%, rgba(9, 13, 12, 0.12) 100%),
    linear-gradient(180deg, rgba(9, 13, 12, 0.08), rgba(9, 13, 12, 0.68));
  --weather-collection-overlay: linear-gradient(180deg, rgba(10, 14, 12, 0.04) 12%, rgba(10, 14, 12, 0.76) 100%);
  --weather-promo-overlay: linear-gradient(135deg, rgba(16, 35, 29, 0.96), rgba(185, 95, 122, 0.78));
}

body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 245, 240, 0.98) 48%, rgba(239, 242, 237, 0.98));
}

body::before {
  opacity: 0.18;
  filter: saturate(0.82) contrast(0.96) blur(1px);
}

body::after {
  background:
    linear-gradient(120deg, rgba(185, 95, 122, 0.08), transparent 32%),
    linear-gradient(240deg, rgba(16, 35, 29, 0.08), transparent 34%);
}

h1,
h2,
h3,
.brand-copy strong,
.marketplace-card strong,
.social-link strong,
.promo-block h2 {
  letter-spacing: 0;
}

.site-header {
  margin-top: 0.75rem;
  padding: 0.72rem 0.85rem 0.72rem 0.78rem;
  border-radius: 18px;
  box-shadow: 0 18px 54px rgba(17, 19, 18, 0.1);
}

.brand-mark {
  width: 2.55rem;
  height: 2.55rem;
  border-color: rgba(17, 19, 18, 0.1);
  box-shadow: none;
}

.brand-copy strong {
  font-size: 1.08rem;
}

.brand-copy small {
  color: var(--brand-muted);
  opacity: 1;
}

.site-nav {
  gap: 0.35rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  color: rgba(17, 19, 18, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
  opacity: 1;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(17, 19, 18, 0.06);
  color: var(--brand-ink);
}

.site-nav .nav-cta {
  background: var(--brand-ink);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(17, 19, 18, 0.16);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--brand-pine);
  color: #ffffff;
}

.hero {
  min-height: 96svh;
  padding-top: 7.5rem;
  padding-bottom: 4.5rem;
  align-items: center;
}

.hero-backdrop {
  background:
    var(--weather-hero-overlay),
    linear-gradient(90deg, rgba(16, 35, 29, 0.92), rgba(185, 95, 122, 0.18)),
    var(--weather-image) center 34% / cover;
}

.hero::after {
  height: 9rem;
  background: linear-gradient(180deg, rgba(247, 245, 240, 0), var(--brand-bg));
}

.hero-content {
  max-width: 48rem;
  padding-bottom: 0;
}

.hero .eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1.05rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  backdrop-filter: blur(14px);
}

h1 {
  max-width: 12ch;
  font-size: 5.8rem;
  line-height: 0.94;
  text-wrap: balance;
}

.hero-text {
  max-width: 38rem;
  margin-top: 1.25rem;
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-rotator {
  margin-top: 1.65rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero-actions {
  margin-top: 1.45rem;
}

.btn {
  min-height: 3.15rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.btn-light {
  background: #ffffff;
  color: var(--brand-ink);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  width: min(27rem, calc(100vw - 2rem));
  margin: 0 calc((100vw - min(1200px, calc(100vw - 2rem))) / 2) 0 auto;
  position: absolute;
  right: 0;
  bottom: 3rem;
}

.hero-panel {
  min-height: 10.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(18px);
}

.hero-panel-tall {
  min-height: 14rem;
}

.intro-strip,
.story-card,
.collection-card,
.marketplace-card,
.social-link {
  border-radius: 20px;
}

.intro-strip {
  margin-top: -1.5rem;
  background: var(--brand-surface);
  border: 1px solid var(--brand-line);
  box-shadow: var(--brand-soft-shadow);
}

.intro-strip p {
  font-size: 1.24rem;
  color: var(--brand-ink);
}

.story-grid {
  gap: 1rem;
}

.story-card {
  border: 1px solid var(--brand-line);
  box-shadow: var(--brand-soft-shadow);
}

.story-card-image {
  min-height: 32rem;
}

.story-card-copy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 245, 240, 0.96));
}

.section-heading {
  max-width: 760px;
}

.section-heading .eyebrow,
.story-copy .eyebrow,
.story-card-copy .eyebrow,
.promo-block .eyebrow {
  color: var(--brand-blush);
  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.section-heading h2,
.story-card h2,
.promo-block h2 {
  font-size: 3.4rem;
  line-height: 1;
  text-wrap: balance;
}

.collection-grid {
  gap: 1rem;
}

.collection-card {
  min-height: 28rem;
  padding: 1.35rem;
  box-shadow: var(--brand-soft-shadow);
  isolation: isolate;
}

.collection-card::after {
  background:
    linear-gradient(180deg, rgba(10, 14, 12, 0.06) 0%, rgba(10, 14, 12, 0.36) 44%, rgba(10, 14, 12, 0.82) 100%);
}

.collection-card h3 {
  font-size: 2.15rem;
  line-height: 1.02;
}

.collection-tag {
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.editorial-band,
.promo-block {
  border-radius: 22px;
  box-shadow: var(--brand-shadow);
}

.marketplaces {
  padding-top: 0.5rem;
}

.marketplace-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.marketplace-card {
  display: grid;
  min-height: 14rem;
  align-content: space-between;
  padding: 1.05rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 19, 18, 0.1);
  box-shadow: 0 18px 42px rgba(17, 19, 18, 0.08);
}

.marketplace-card:hover,
.marketplace-card:focus-visible {
  background: #ffffff;
  border-color: rgba(17, 19, 18, 0.2);
  transform: translateY(-6px);
}

.marketplace-card strong {
  margin-top: 0.75rem;
  font-size: 1.65rem;
}

.marketplace-card span:last-child {
  font-size: 0.9rem;
  line-height: 1.45;
}

.marketplace-logo {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 16px;
}

.marketplace-website .marketplace-logo,
.marketplace-amazon .marketplace-logo,
.marketplace-myntra .marketplace-logo {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 16px;
}

.marketplace-website .marketplace-logo {
  background: var(--brand-ink);
}

.social-grid {
  gap: 0.85rem;
}

.social-link {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 19, 18, 0.1);
  box-shadow: 0 16px 38px rgba(17, 19, 18, 0.07);
}

.welcome-popup {
  border-radius: 18px;
  background: rgba(17, 19, 18, 0.88);
}

@media (max-width: 1020px) {
  .site-header {
    align-items: flex-start;
    border-radius: 20px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  h1 {
    font-size: 4.4rem;
  }

  .hero-panels {
    position: relative;
    inset: auto;
    width: var(--container);
    margin: 2rem auto 0;
  }

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

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 1rem, 42rem);
  }

  .site-header {
    margin-top: 0.5rem;
    padding: 0.65rem;
  }

  .brand-copy small {
    display: none;
  }

  .site-nav {
    width: 100%;
    gap: 0.25rem;
  }

  .site-nav a {
    min-height: 2.15rem;
    padding: 0 0.66rem;
    font-size: 0.78rem;
  }

  .site-nav .nav-cta {
    order: -1;
  }

  .hero {
    min-height: auto;
    padding-top: 9.5rem;
    padding-bottom: 2.25rem;
  }

  .hero-content {
    width: var(--container);
  }

  h1 {
    max-width: 11ch;
    font-size: 3.3rem;
    line-height: 0.98;
  }

  .hero-text,
  .intro-strip p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions,
  .hero-proof {
    width: 100%;
  }

  .hero-proof span {
    flex: 1 1 auto;
    justify-content: center;
  }

  .hero-panels {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .hero-panel-tall {
    min-height: 9rem;
  }

  .section-heading h2,
  .story-card h2,
  .promo-block h2 {
    font-size: 2.25rem;
    line-height: 1.05;
  }

  .collection-card h3 {
    font-size: 1.85rem;
  }

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

  .marketplace-card {
    min-height: 10.5rem;
    grid-template-columns: auto 1fr;
    align-items: center;
    align-content: center;
    gap: 1rem;
  }

  .marketplace-card strong {
    margin-top: 0;
  }
}

/* BB Collection brand refresh QA fixes */
@media (min-width: 1021px) {
  .hero-panels {
    grid-template-columns: 1fr;
    width: 18rem;
    gap: 0.75rem;
    bottom: 2rem;
  }

  .hero-panel,
  .hero-panel-tall {
    min-height: 8.75rem;
  }

  .hero-panel strong {
    font-size: 1.45rem;
    line-height: 1.08;
  }
}

@media (max-width: 720px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    max-height: none;
  }

  .site-nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 0.05rem;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
  }
}

/* BB Collection font and overflow fix */
:root {
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

body {
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
}

.brand-copy strong,
.eyebrow,
h1,
h2,
h3,
.hero-rotator-text,
.hero-panel strong,
.welcome-popup-message,
.marketplace-card strong,
.social-link strong,
.promo-block h2,
.marketplace-letter {
  font-family: var(--font-display);
}

button,
.btn,
.site-nav a,
.hero-proof span,
.collection-tag,
.hero-rotator-label,
.hero-panel span {
  font-family: var(--font-body);
}

.hero-content,
.hero-rotator,
.hero-panel,
.story-card,
.collection-card,
.marketplace-card,
.social-link,
.promo-block,
.welcome-popup {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.hero-rotator,
.hero-panel,
.marketplace-card,
.social-link {
  min-width: 0;
}

h1 {
  font-size: clamp(3.4rem, 6.4vw, 5.7rem);
  line-height: 0.96;
  max-width: 12.5ch;
}

.hero-text {
  max-width: 42rem;
}

.hero-rotator {
  width: min(100%, 34rem);
  max-width: 34rem;
  height: auto;
}

.hero-rotator-text {
  min-height: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.25;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  overflow: visible;
}

.hero-panel span {
  margin-bottom: clamp(0.9rem, 2vw, 1.5rem);
  line-height: 1.25;
}

.hero-panel strong {
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.18;
}

@media (min-width: 1021px) {
  .hero-panels {
    width: min(20rem, 25vw);
  }

  .hero-panel,
  .hero-panel-tall {
    min-height: auto;
    padding: 1rem;
  }
}

.collection-card {
  height: auto;
  min-height: clamp(25rem, 34vw, 31rem);
  overflow: hidden;
}

.collection-card h3 {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.collection-card p {
  font-size: clamp(0.86rem, 1vw, 0.96rem);
  line-height: 1.55;
}

.collection-note {
  line-height: 1.45;
}

.marketplace-card strong,
.social-link strong {
  font-size: clamp(1.35rem, 2vw, 1.62rem);
  line-height: 1.05;
}

.marketplace-card span:last-child,
.social-link span:last-child {
  font-size: 0.88rem;
  line-height: 1.45;
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(2.65rem, 13vw, 3.25rem);
    line-height: 1;
    max-width: 10.5ch;
  }

  .hero-text {
    font-size: 0.96rem;
  }

  .hero-rotator {
    padding: 0.85rem;
  }

  .hero-panel strong,
  .hero-rotator-text {
    font-size: 1.08rem;
  }

  .collection-card {
    min-height: auto;
    padding: 1rem;
  }

  .collection-card h3 {
    font-size: 1.55rem;
  }

  .collection-card p,
  .collection-note {
    font-size: 0.86rem;
  }

  .marketplace-card strong,
  .social-link strong {
    font-size: 1.28rem;
  }
}

/* BB Collection social media icon refresh */
.social-icon {
  position: relative;
  width: 3.7rem;
  height: 3.7rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(17, 19, 18, 0.16);
  overflow: hidden;
}

.social-icon::after {
  content: "";
  position: absolute;
  inset: 0.38rem;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.social-icon svg {
  position: relative;
  z-index: 1;
  width: 2rem;
  height: 2rem;
}

.social-icon-instagram {
  background: radial-gradient(circle at 28% 100%, #feda75 0 18%, #fa7e1e 34%, #d62976 62%, #4f5bd5 100%);
}

.social-icon-facebook {
  background: linear-gradient(135deg, #1877f2, #0c4fb3);
}

.social-icon-youtube {
  background: linear-gradient(135deg, #ff2a2a, #b90000);
}

.social-icon-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-link:hover .social-icon,
.social-link:focus-visible .social-icon {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 18px 38px rgba(17, 19, 18, 0.2);
}

@media (max-width: 720px) {
  .social-icon {
    width: 3.25rem;
    height: 3.25rem;
  }

  .social-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}

/* BB Collection shop icon refresh */
.marketplace-logo {
  position: relative;
  width: 4rem;
  height: 4rem;
  padding: 0.6rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #111312;
  box-shadow: 0 14px 32px rgba(17, 19, 18, 0.14);
  overflow: hidden;
}

.marketplace-logo::after {
  content: "";
  position: absolute;
  inset: 0.35rem;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.marketplace-logo svg,
.marketplace-logo img {
  position: relative;
  z-index: 1;
}

.marketplace-logo-website,
.marketplace-website .marketplace-logo {
  background: #111312;
  padding: 0.28rem;
}

.marketplace-logo-website img,
.marketplace-website .marketplace-logo img {
  object-fit: cover;
  border-radius: 14px;
}

.marketplace-logo-amazon,
.marketplace-amazon .marketplace-logo {
  background: linear-gradient(135deg, #fffaf2, #ffffff);
  border-color: rgba(243, 168, 71, 0.32);
}

.marketplace-logo-flipkart,
.marketplace-flipkart .marketplace-logo {
  background: linear-gradient(135deg, #1d72f3, #0b4cbd);
  border-color: rgba(255, 223, 56, 0.34);
}

.marketplace-logo-myntra,
.marketplace-myntra .marketplace-logo {
  background: linear-gradient(135deg, #fff6fb, #ffffff);
  border-color: rgba(236, 0, 140, 0.24);
}
.marketplace-card:hover .marketplace-logo,
.marketplace-card:focus-visible .marketplace-logo {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 18px 38px rgba(17, 19, 18, 0.2);
}

@media (max-width: 720px) {
  .marketplace-logo,
  .marketplace-website .marketplace-logo,
  .marketplace-amazon .marketplace-logo,
  .marketplace-myntra .marketplace-logo {
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 15px;
  }
}

.footer-shop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 2.75rem;
  margin-top: 0.95rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  background: var(--weather-button-light-bg);
  color: var(--weather-button-light-text);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(18, 12, 8, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, color 220ms ease;
}

.footer-shop-button:hover,
.footer-shop-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(18, 12, 8, 0.22);
}
.video-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0 var(--section-gap);
  text-align: center;
}

.video-heading {
  max-width: min(100%, 760px);
  margin-inline: auto;
  text-align: center;
}

.video-frame {
  position: relative;
  display: block;
  overflow: hidden;
  inline-size: min(100%, 940px);
  max-inline-size: 100%;
  margin-inline: auto;
  align-self: center;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  background: #111312;
  border: 1px solid rgba(17, 19, 18, 0.12);
  box-shadow: var(--brand-shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  margin: 1.15rem auto 0;
  padding: 0 1.35rem;
  border-radius: 999px;
  background: var(--weather-button-light-bg);
  color: var(--weather-button-light-text);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(18, 12, 8, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, color 220ms ease;
}

.video-link-button:hover,
.video-link-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(18, 12, 8, 0.22);
}

.video-showcase .video-link-button {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-self: center;
}

@media (max-width: 640px) {
  .video-frame {
    width: 100%;
    border-radius: 16px;
  }

  .video-link-button {
    width: 100%;
  }
}
