/* ═══════════════════════════════════════════
   CHAMERO™ — Designs from the Shadows
   Premium Dark-Mode Landing Page Stylesheet
   ═══════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root,
[data-theme="dark"] {
  --clr-bg:          #0a0a0b;
  --rgb-bg:          10, 10, 11;
  --clr-bg-2:        #111113;
  --clr-bg-3:        #18181c;
  --clr-surface:     #1c1c21;
  --clr-border:      rgba(255,255,255,0.07);
  --clr-border-hi:   rgba(255,255,255,0.14);
  --clr-text:        #f0ede8;
  --clr-text-muted:  rgba(240,237,232,0.45);
  --clr-text-faint:  rgba(240,237,232,0.18);
  --rgb-text:        240, 237, 232;
  --clr-accent:      #b8a58a;       /* warm champagne gold */
  --clr-accent-2:    #d4c4a8;       /* lighter gold */
  --clr-red:         #8b3a3a;       /* deep blood red */
  --clr-nav-bg:      rgba(10,10,11, 0.85);

  --logo-filter:       invert(1) brightness(10) contrast(1) drop-shadow(0 0 8px rgba(255,255,255,0.35)) drop-shadow(0 0 20px rgba(255,255,255,0.12));
  --logo-filter-hover: invert(1) brightness(10) contrast(1) drop-shadow(0 0 16px rgba(255,255,255,0.75)) drop-shadow(0 0 40px rgba(255,255,255,0.3));
  --logo-opacity:      1;

  --hero-img-filter:   brightness(0.45) contrast(1.1) saturate(0.6);
  --hero-overlay:      linear-gradient(to top, var(--clr-bg) 0%, transparent 45%), linear-gradient(to bottom, rgba(var(--rgb-bg), 0.55) 0%, transparent 30%), radial-gradient(ellipse at center bottom, rgba(var(--rgb-bg), 0.4) 0%, transparent 70%);
  --hero-card-bg:      transparent;
  --hero-card-blur:    blur(0);
  --hero-card-border:  transparent;
  --hero-card-shadow:  none;
  --hero-card-padding: 0 24px;
  --hero-card-radius:  0;
  
  --card-shadow:       none;
  --card-shadow-hover: 0 24px 64px rgba(0,0,0,0.5);

  --ff-display:  'Cormorant Garamond', Georgia, serif;
  --ff-body:     'Inter', system-ui, sans-serif;
  --ff-label:    'Space Grotesk', system-ui, sans-serif;

  --nav-h:       96px;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

[data-theme="light"] {
  --clr-bg:          #f7f5f0;
  --rgb-bg:          247, 245, 240;
  --clr-bg-2:        #ffffff;
  --clr-bg-3:        #eaeaeb;
  --clr-surface:     #f0ede8;
  --clr-border:      rgba(0,0,0,0.08);
  --clr-border-hi:   rgba(0,0,0,0.15);
  --clr-text:        #1a1a1c;
  --clr-text-muted:  rgba(26,26,28,0.55);
  --clr-text-faint:  rgba(26,26,28,0.25);
  --rgb-text:        26, 26, 28;
  --clr-nav-bg:      rgba(247,245,240, 0.85);

  --logo-filter:       drop-shadow(0 0 8px rgba(0,0,0,0.05));
  --logo-filter-hover: drop-shadow(0 0 16px rgba(0,0,0,0.15));
  --logo-opacity:      0.85;

  --hero-img-filter:   brightness(0.7) contrast(1.1) saturate(0.85);
  --hero-overlay:      linear-gradient(to top, var(--clr-bg) 0%, transparent 15%), radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 60%);
  --hero-card-bg:      rgba(247, 245, 240, 0.75);
  --hero-card-blur:    blur(16px) saturate(180%);
  --hero-card-border:  rgba(255, 255, 255, 0.5);
  --hero-card-shadow:  0 32px 80px rgba(0,0,0,0.15);
  --hero-card-padding: 48px 64px;
  --hero-card-radius:  8px;
  
  --card-shadow:       0 8px 24px rgba(0,0,0,0.04);
  --card-shadow-hover: 0 24px 48px rgba(0,0,0,0.12);
}



/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── NOISE OVERLAY ── */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ── SHARED UTILITY ── */
.section-label {
  font-family: var(--ff-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: var(--clr-nav-bg);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom-color: var(--clr-border);
}

.nav__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  padding: 4px 0;
}

.nav__logo a {
  display: flex;
  align-items: center;
  outline: none;
}

.nav__logo-img {
  height: 90px;
  width: auto;
  filter: var(--logo-filter);
  opacity: var(--logo-opacity);
  transition: filter 0.3s, opacity 0.3s, transform 0.35s var(--ease-out);
  object-fit: contain;
}

.nav__logo-img:hover {
  filter: var(--logo-filter-hover);
  opacity: 1;
  transform: scale(1.05);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-family: var(--ff-label);
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  transition: color 0.25s;
}

.nav__link:hover { color: var(--clr-text); }

.nav__link--cta {
  color: var(--clr-accent);
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(184,165,138,0.35);
  border-radius: 2px;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}

.nav__link--cta:hover {
  color: var(--clr-bg);
  background: var(--clr-accent);
  border-color: var(--clr-accent);
}

.theme-toggle-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* Theme Toggle Button */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--clr-text-muted);
  background: rgba(var(--rgb-bg), 0.5);
  border: 1px solid var(--clr-border);
  transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.25s;
}

.theme-toggle:hover {
  color: var(--clr-text);
  border-color: var(--clr-border-hi);
  transform: scale(1.05);
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun { display: block; }

[data-theme="light"] .theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

/* Tooltip */
.theme-tooltip {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--clr-text);
  color: var(--clr-bg);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  z-index: 1000;
  transform: translateY(-8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.theme-tooltip::before {
  content: '';
  position: absolute;
  top: -4px;
  right: 14px;
  width: 8px;
  height: 8px;
  background: var(--clr-text);
  transform: rotate(45deg);
}

.theme-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  filter: var(--hero-img-filter);
  transform: scale(1.04);
  animation: heroZoom 14s var(--ease-out) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--hero-card-padding);
  background: var(--hero-card-bg);
  backdrop-filter: var(--hero-card-blur);
  -webkit-backdrop-filter: var(--hero-card-blur);
  border: 1px solid var(--hero-card-border);
  border-radius: var(--hero-card-radius);
  box-shadow: var(--hero-card-shadow);
  animation: heroFadeUp 1.2s 0.3s var(--ease-out) both;
}

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

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero__eyebrow-text {
  font-family: var(--ff-label);
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--clr-accent);
}

.hero__line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--clr-accent);
  opacity: 0.5;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
}

.hero__title-brand {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--clr-text);
  text-shadow: 0 4px 60px rgba(0,0,0,0.6);
}

.hero__title-sub {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.5vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  margin-top: 0.4em;
}

.hero__tagline {
  font-family: var(--ff-label);
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__tagline::before,
.hero__tagline::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scrollHint 2s 2s ease-in-out infinite both;
}

@keyframes scrollHint {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.8; transform: translateX(-50%) translateY(6px); }
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--clr-accent), transparent);
}

.hero__scroll-label {
  font-family: var(--ff-label);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
}

/* Corner decorations */
.hero__corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 2;
}

.hero__corner--tl { top: calc(var(--nav-h) + 20px); left: 24px; border-top: 1px solid var(--clr-accent); border-left: 1px solid var(--clr-accent); opacity: 0.4; }
.hero__corner--tr { top: calc(var(--nav-h) + 20px); right: 24px; border-top: 1px solid var(--clr-accent); border-right: 1px solid var(--clr-accent); opacity: 0.4; }
.hero__corner--bl { bottom: 20px; left: 24px; border-bottom: 1px solid var(--clr-accent); border-left: 1px solid var(--clr-accent); opacity: 0.4; }
.hero__corner--br { bottom: 20px; right: 24px; border-bottom: 1px solid var(--clr-accent); border-right: 1px solid var(--clr-accent); opacity: 0.4; }

/* ═══════════════════════════════════════════
   MARQUEE BAND
   ═══════════════════════════════════════════ */
.marquee-band {
  width: 100%;
  overflow: hidden;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--ff-label);
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  padding: 0 1.5rem;
}

.marquee-track .dot {
  color: var(--clr-accent);
  padding: 0;
  opacity: 0.7;
}

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

/* ═══════════════════════════════════════════
   PRODUCTS SECTION
   ═══════════════════════════════════════════ */
.products {
  padding: 120px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.products__header {
  text-align: center;
  margin-bottom: 64px;
}

.products__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--clr-text);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.products__sub {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
  max-width: 420px;
  margin: 0 auto;
}

/* Product Grid */
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Product Card */
.product-card {
  position: relative;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s var(--ease-out), box-shadow 0.35s;
  box-shadow: var(--card-shadow);
}

.product-card:hover {
  border-color: var(--clr-border-hi);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover), 0 0 0 1px rgba(184,165,138,0.08);
}

.product-card--featured {
  grid-row: span 1;
  border-color: rgba(184,165,138,0.18);
}

.product-card--featured:hover {
  border-color: rgba(184,165,138,0.35);
}

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--clr-bg-3);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  filter: brightness(0.9) saturate(0.85);
}

.product-card:hover .product-card__img {
  transform: scale(1.04);
  filter: brightness(0.75) saturate(0.75);
}

/* Overlay */
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--rgb-bg), 0.55);
  backdrop-filter: blur(1px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.35s;
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

/* Always-visible subtle overlay badge at bottom */
.product-card__img-wrap::after {
  content: 'AVAILABLE SOON';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(var(--rgb-bg), 0.92) 0%, transparent 100%);
  font-family: var(--ff-label);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-align: center;
  color: rgba(240,237,232,0.55);
  text-transform: uppercase;
}

/* Override for Available Now */
.product-card--available-now .product-card__img-wrap::after {
  content: 'AVAILABLE NOW';
}


.product-card__lock {
  width: 36px;
  height: 36px;
  color: var(--clr-accent);
  opacity: 0.9;
  filter: drop-shadow(0 0 12px rgba(184,165,138,0.5));
}

.product-card__badge {
  font-family: var(--ff-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-text);
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(184,165,138,0.4);
  border-radius: 2px;
}

.product-card__info {
  padding: 16px 18px 18px;
  border-top: 1px solid var(--clr-border);
}

.product-card__name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-text);
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.product-card__type {
  font-family: var(--ff-label);
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

/* ═══════════════════════════════════════════
   BRAND FEATURETTE — Editorial Gallery
   ═══════════════════════════════════════════ */
.brand {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 100px 40px 80px;
}

/* Header */
.brand__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

.brand__title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--clr-text);
  margin-bottom: 0.75rem;
}

.brand__subtitle {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--clr-text-muted);
  letter-spacing: 0.06em;
}

/* Gallery wrapper */
.brand__gallery {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Hero image */
.brand__hero-img {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--clr-border);
  aspect-ratio: 16/7;
  background: var(--clr-bg-3);
}

.brand__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.7s var(--ease-out), filter 0.4s;
  filter: brightness(0.88) saturate(0.8);
}

.brand__hero-img:hover img {
  transform: scale(1.02);
  filter: brightness(0.96) saturate(0.9);
}

/* 3-column detail strip */
.brand__detail-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.brand__detail-img {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--clr-border);
  aspect-ratio: 1/1;
  background: var(--clr-bg-3);
  transition: border-color 0.3s;
}

.brand__detail-img:hover {
  border-color: rgba(184,165,138,0.3);
}

.brand__detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  filter: brightness(0.85) saturate(0.75);
}

.brand__detail-img:hover img {
  transform: scale(1.04);
  filter: brightness(0.96) saturate(0.9);
}

/* Captions */
.brand__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(var(--rgb-bg), 0.92) 0%, transparent 100%);
}

.brand__caption-num {
  font-family: var(--ff-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.brand__caption-text {
  font-family: var(--ff-label);
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Copy row below gallery */
.brand__copy-row {
  max-width: 1200px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 60px;
  border-top: 1px solid var(--clr-border);
}

.brand__copy-block {}

.brand__desc {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  max-width: 440px;
}

.brand__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.brand__feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--ff-label);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  transition: color 0.25s;
}

.brand__feature:hover { color: var(--clr-text); }

.brand__feature-icon {
  color: var(--clr-accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .brand__detail-strip { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .brand__copy-row { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .brand { padding: 64px 20px 60px; }
  .brand__detail-strip { grid-template-columns: 1fr 1fr; }
  .brand__hero-img { aspect-ratio: 4/3; }
}

/* ═══════════════════════════════════════════
   GET NOTIFIED
   ═══════════════════════════════════════════ */
.notify {
  position: relative;
  padding: 140px 40px;
  text-align: center;
  overflow: hidden;
  background: var(--clr-bg);
}

.notify__bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(750px, 95vw);
  height: min(750px, 95vw);
  opacity: 0.4;
  pointer-events: none;
  filter: invert(1);
  mix-blend-mode: overlay;
  z-index: 10;
}

.notify__bg-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.notify__inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
}

.notify__title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--clr-text);
  margin-bottom: 1.2rem;
}

.notify__sub {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.notify__tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 2.5rem;
}

.notify__tier {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: border-color 0.3s, transform 0.3s;
}

.notify__tier:hover {
  border-color: rgba(184,165,138,0.4);
  transform: translateY(-2px);
}

.notify__tier-label {
  font-family: var(--ff-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.notify__tier-discount {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-accent);
}

@media (max-width: 500px) {
  .notify__tiers { grid-template-columns: 1fr 1fr; }
}

.notify__form { width: 100%; }

.notify__input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 1.2rem;
}

.notify__input {
  width: 100%;
  padding: 16px 20px;
  background: var(--clr-surface);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  border: 1px solid var(--clr-border-hi);
  border-radius: 3px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.notify__input:focus {
  border-color: rgba(184,165,138,0.5);
  box-shadow: 0 0 0 3px rgba(184,165,138,0.08);
}

.notify__input::placeholder {
  color: var(--clr-text-muted);
  font-size: 0.85rem;
}

.notify__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.5rem;
  padding: 15px 24px;
  background: var(--clr-accent);
  color: var(--clr-bg);
  font-family: var(--ff-label);
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.25s, gap 0.25s;
  white-space: nowrap;
}

.notify__btn:hover {
  background: var(--clr-accent-2);
  gap: 0.75rem;
}

.notify__btn-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.notify__btn:hover .notify__btn-arrow { transform: translateX(3px); }

.notify__hint {
  font-family: var(--ff-label);
  font-size: 0.77rem;
  letter-spacing: 0.12em;
  color: var(--clr-text-faint);
  text-align: center;
}

/* Success state / Step 2 */
.notify__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(184,165,138,0.3);
  border-radius: 3px;
  background: rgba(184,165,138,0.05);
  animation: fadeUp 0.5s var(--ease-out) both;
}

.notify__success[hidden] { display: none; }

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

.notify__success-icon {
  width: 28px;
  height: 28px;
  color: var(--clr-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.notify__success-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-text);
  margin: 0;
}

.notify__success-text {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  max-width: 400px;
  margin: 0;
}

.notify__social-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 300px;
  margin-top: 0.5rem;
}

.notify__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  border: 1px solid rgba(var(--rgb-text), 0.1);
  border-radius: 3px;
  background: rgba(var(--rgb-text), 0.03);
  color: var(--clr-text);
  font-family: var(--ff-label);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.3s, border-color 0.3s;
  text-decoration: none;
}

.notify__social-btn svg {
  width: 18px;
  height: 18px;
}

.notify__social-btn:hover {
  background: rgba(184,165,138,0.1);
  border-color: rgba(184,165,138,0.3);
}

.notify__input--area {
  resize: vertical;
  min-height: 80px;
}

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

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  padding: 64px 40px 40px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer__logo {
  height: 52px;
  width: auto;
  filter: var(--logo-filter);
  object-fit: contain;
  opacity: var(--logo-opacity);
}

.footer__tagline {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
  font-style: italic;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.footer__social-link:hover {
  border-color: var(--clr-accent);
  background: rgba(184,165,138,0.08);
  transform: translateY(-2px);
}

.footer__social-icon {
  width: 16px;
  height: 16px;
  color: var(--clr-text-muted);
  transition: color 0.25s;
}

.footer__social-link:hover .footer__social-icon { color: var(--clr-accent); }

.footer__bottom {
  width: 100%;
  padding-top: 2rem;
  border-top: 1px solid var(--clr-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy,
.footer__legal {
  font-family: var(--ff-label);
  font-size: 0.77rem;
  letter-spacing: 0.12em;
  color: var(--clr-text-faint);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 600px;
  }

  .brand__visual { order: -1; }
  .brand__img-frame { max-height: 480px; }
}

@media (max-width: 768px) {
  .nav__inner { padding: 0 15px; }
  .nav__links { gap: 0.75rem; }
  .nav__link { font-size: 0.7rem; letter-spacing: 0.05em; white-space: nowrap; }
  .nav__link--cta { padding: 0.4rem 0.75rem; }
  .nav__logo-img { height: 60px; }

  .products { padding: 80px 20px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .brand { padding: 80px 20px; }

  .notify { padding: 100px 20px; }
  .notify__input-wrap { flex-direction: column; }
  .notify__btn { width: 100%; justify-content: center; }

  .footer { padding: 48px 20px 32px; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .nav__links { gap: 0.4rem; }
  .nav__link { font-size: 0.65rem; letter-spacing: 0.02em; }
  .nav__link--cta { padding: 0.3rem 0.5rem; }
  .nav__logo-img { height: 50px; }
  .theme-toggle { width: 28px; height: 28px; }
  .theme-toggle svg { width: 14px; height: 14px; }

  .products__grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}


/* --- Reduce Gap Between Product Sections --- */
#products-event {
  padding-bottom: 60px;
}
#products-music {
  padding-top: 40px;
}

@media (max-width: 1024px) {
  #products-event {
    padding-bottom: 40px;
  }
  #products-music {
    padding-top: 40px;
  }
}


/* --- Section Separator --- */
.section-separator {
  width: 80%;
  max-width: 1200px;
  height: 1px;
  background-color: var(--clr-border, rgba(255, 255, 255, 0.1));
  margin: 0 auto;
}

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(8px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox__content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.active .lightbox__content img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 10000;
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
  padding: 8px;
}

.lightbox__close:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Indicate items are clickable */
#products-grid-event .product-card__img-wrap {
  cursor: zoom-in;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, transform 0.2s;
}
.lightbox__nav:hover {
  background: rgba(0,0,0,0.8);
  transform: translateY(-50%) scale(1.1);
}
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }
@media (max-width: 768px) {
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }
}
