@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ─────────────────────────────────────────────
   HOUSE OF VRIKA — Design System v5
   Monochrome Editorial · Gold Accent
   Canvas: #dce2e7 · Ink: #0e0e0e · Gold: #a98c5f
   ───────────────────────────────────────────── */

:root {
  --canvas:      #dce2e7;
  --ink:         #0e0e0e;
  --ink-soft:    #141414;
  --gold:        #a98c5f;
  --gold-light:  #e7d6ad;
  --panel-light: #f3f5f6;
  --panel-mid:   #e7eaec;
  --border:      rgba(14,14,14,0.10);
  --text:        #0e0e0e;
  --muted:       #8b9298;
  --muted2:      #9aa1a6;
  --white:       #ffffff;
  --card-ph:     #dfe3e6;

  /* Legacy aliases used by inline styles in secondary pages */
  --bg:          #f3f5f6;
  --bg2:         #e7eaec;
  --bg3:         #dfe3e6;
  --gold-dim:    #9aa1a6;
  --card:        #ffffff;

  --font-display: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }
::selection { background: var(--ink); color: var(--white); }

/* ── UTILITY ── */
.accent { color: var(--gold); }
.nav-logo svg path { stroke: var(--gold); }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px 38px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(14,14,14,0.60);
  transition: background .3s;
}

/* Light nav on non-home pages (when not over dark hero) */
nav.nav-light {
  background: rgba(220,226,231,0.92);
}
nav.nav-light .nav-left a,
nav.nav-light .nav-right a:not(.nav-cta) { color: var(--ink-soft); }
nav.nav-light .nav-wordmark { color: var(--ink); }
nav.nav-light .nav-hamburger { color: var(--ink); }

.nav-left {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-self: start;
}

.nav-brand {
  justify-self: center;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  display: block;
}

.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
  border-radius: 5px;
}

.nav-eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .42em;
  color: var(--gold);
  margin-bottom: 3px;
  text-transform: uppercase;
}

.nav-wordmark {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--ink);
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
}

.nav-left a,
.nav-right a:not(.nav-cta) {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255,255,255,.82);
  text-transform: uppercase;
  transition: opacity .15s;
}
.nav-left a:hover,
.nav-right a:not(.nav-cta):hover { opacity: .5; }

.nav-wordmark { color: var(--white); }
.nav-eyebrow  { color: var(--gold); }

.nav-cta {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 11px 22px;
  border-radius: 100px;
  text-transform: uppercase;
  transition: background .2s, opacity .2s;
}
.nav-cta:hover { background: rgba(255,255,255,.26); color: var(--white); }

.nav-hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.3rem;
  color: rgba(255,255,255,.85);
  background: none;
  border: none;
  padding: 4px;
  line-height: 1;
}

/* Light nav variant for inner pages */
nav.nav-light .nav-left a,
nav.nav-light .nav-right a:not(.nav-cta) { color: var(--ink-soft); }
nav.nav-light .nav-wordmark { color: var(--ink); }
nav.nav-light .nav-cta {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
nav.nav-light .nav-cta:hover { opacity: .82; background: var(--ink); }
nav.nav-light .nav-hamburger { color: var(--ink); }

/* Legacy fallback nav (secondary pages) */
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-text { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; letter-spacing: .3px; color: var(--text); }
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: .76rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted2); transition: color .15s; }
.nav-links a:hover { color: var(--text); }

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--canvas);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 48px;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  transition: opacity .15s;
}
.mobile-nav-overlay a:hover { opacity: .5; }
.mobile-nav-overlay .mobile-nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 1rem;
  margin-top: 8px;
}
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: 1px solid rgba(14,14,14,.18);
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  font-family: inherit;
}

/* ── HERO ── */
.hero {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 92vh;
  background: #151515;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

/* Full-bleed background image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  z-index: 0;
  display: block;
}

/* Gradient overlay — dark top for headline, clear mid to show models, dark bottom for CTAs */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(12,12,12,.70) 0%,
      rgba(12,12,12,.30) 28%,
      rgba(12,12,12,.05) 50%,
      rgba(12,12,12,.05) 65%,
      rgba(12,12,12,.55) 100%);
  z-index: 1;
}

.hero-watermark { display: none; }

.hero-eyebrow {
  position: absolute;
  top: 88px;
  left: 0; right: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .30em;
  color: var(--gold);
  z-index: 3;
  text-transform: uppercase;
  animation: fadeUp .7s both;
}
.hero .hero-eyebrow::before { display: none !important; }

.hero-title {
  position: absolute;
  top: 116px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 128px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .88;
  text-transform: uppercase;
  color: var(--white);
  z-index: 3;
  animation: fadeUp .65s both;
  animation-delay: .1s;
}

/* Gold accent for "YOUR" within hero title */
.hero-title .accent { color: var(--gold); }

.hero-model { display: none; }
.hero-sub   { display: none; }

.hero-btns {
  position: absolute;
  bottom: 88px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 14px;
  z-index: 3;
  animation: fadeUp .65s both;
  animation-delay: .22s;
}

/* Buttons adapted for dark hero background */
.hero .btn-gold {
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  padding: 16px 34px;
}
.hero .btn-gold:hover { opacity: .9; color: var(--ink); }

.hero .btn-outline {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.38);
  color: var(--white);
  font-size: 13px;
  padding: 15px 30px;
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,.24);
  color: var(--white);
}

.hero-corner {
  position: absolute;
  bottom: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  color: rgba(255,255,255,.45);
  z-index: 3;
  text-transform: uppercase;
}
.hero-corner-l { left: 38px; }
.hero-corner-r { right: 38px; }

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  background: var(--ink);
  padding: 16px 0;
  border-radius: 18px;
}

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

.marquee-track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #f3f5f6;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 28px;
}

.marquee-track .mdot {
  color: var(--gold) !important;
  padding: 0 !important;
  letter-spacing: 0 !important;
}

.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

/* ── SECTIONS (panels on canvas) ── */
section {
  padding: 80px 5%;
  border-radius: 30px;
  overflow: hidden;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
  text-align: center;
  letter-spacing: -.025em;
}

.section-sub {
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 48px;
  font-size: 0.92rem;
  text-align: center;
  line-height: 1.65;
}

/* ── EDITORIAL SECTION ── */
.editorial-section {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: var(--panel-mid);
  padding: 96px 56px;
  min-height: 560px;
}

.editorial-ghost {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(150px, 24vw, 360px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: rgba(14,14,14,.055);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  line-height: 1;
}

.editorial-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 440px;
}

.editorial-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.editorial-col-end { justify-content: flex-end; gap: 30px; }
.editorial-col-start { justify-content: flex-start; gap: 30px; }

.editorial-img-tall {
  width: 100%;
  height: 420px;
  border-radius: 18px;
  background: #d3d8db;
  overflow: hidden;
}

.editorial-img-sm {
  height: 240px;
  width: 74%;
  border-radius: 16px;
  background: #c8cfd4;
  overflow: hidden;
}

.editorial-img-sm-r { align-self: flex-end; }

.editorial-caption {
  font-size: 15px;
  line-height: 1.5;
  color: #7d858b;
  max-width: 240px;
}

.editorial-caption-r { text-align: right; align-self: flex-end; }

/* ── CAMPAIGN SECTION ── */
.campaign-section {
  background: var(--panel-mid);
  border-radius: 30px;
  padding: 78px 56px;
}

.campaign-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 44px;
}

.campaign-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--gold);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.campaign-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 60px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.campaign-sub {
  font-size: 14px;
  line-height: 1.6;
  color: #8b9298;
  max-width: 300px;
  justify-self: end;
  align-self: end;
}

.campaign-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.campaign-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
  background: #cdd3d7;
  display: flex;
  align-items: flex-end;
}

.campaign-card:nth-child(2) { background: #bfc6cb; }

.campaign-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14,14,14,.65) 100%);
  z-index: 1;
}

.campaign-card-label {
  position: absolute;
  top: 26px; right: 26px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  z-index: 2;
}

.campaign-card-content {
  position: relative;
  z-index: 2;
  padding: 0 34px 34px;
  width: 100%;
}

.campaign-card-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.94);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.campaign-card-btn {
  background: var(--white);
  color: var(--ink);
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 100px;
  cursor: pointer;
  display: inline-block;
  transition: transform .2s;
  text-decoration: none;
}
.campaign-card-btn:hover { transform: translateY(-2px); color: var(--ink); }

/* ── POSTER SECTION ── */
.poster-section {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: var(--panel-mid);
  padding: 70px 40px;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.poster-ghost-top {
  position: absolute;
  top: 72px; left: 0; right: 0;
  text-align: center;
  font-size: clamp(80px, 13vw, 200px);
  font-weight: 700;
  color: rgba(14,14,14,.05);
  white-space: nowrap;
  letter-spacing: -.02em;
  pointer-events: none;
  line-height: 1;
}

.poster-ghost-bottom {
  position: absolute;
  bottom: 72px; left: 0; right: 0;
  text-align: center;
  font-size: clamp(80px, 13vw, 200px);
  font-weight: 700;
  color: rgba(14,14,14,.05);
  white-space: nowrap;
  letter-spacing: -.02em;
  pointer-events: none;
  line-height: 1;
}

.poster-card {
  position: relative;
  z-index: 2;
  width: 480px;
  max-width: 92%;
  border-radius: 24px;
  overflow: hidden;
  height: 640px;
  background: #c3cacf;
  box-shadow: 0 40px 90px -40px rgba(14,30,40,.5);
  display: flex;
  flex-direction: column;
}

.poster-card-header {
  padding: 30px;
  text-align: center;
  background: linear-gradient(180deg, rgba(20,28,33,.55), transparent);
  position: relative;
  z-index: 2;
}

.poster-card-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .36em;
  color: #e7d6ad;
  text-transform: uppercase;
}

.poster-card-brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 4px;
}

.poster-card-tagline {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 16px;
  line-height: 1.05;
  letter-spacing: -.01em;
}

.poster-card-cta {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--ink);
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  display: inline-block;
  transition: transform .2s;
  font-family: inherit;
}
.poster-card-cta:hover { transform: translateX(-50%) translateY(-2px); color: var(--ink); }

/* ── CATEGORY STRIP ── */
.cat-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  justify-content: center;
  flex-wrap: wrap;
  scrollbar-width: none;
}
.cat-strip::-webkit-scrollbar { display: none; }

.cat-pill {
  border: 1px solid rgba(14,14,14,.18);
  background: transparent;
  padding: 11px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  border-radius: 100px;
  transition: all .18s ease;
}
.cat-pill:hover,
.cat-pill.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* ── PRICE BUCKETS ── */
.price-buckets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 32px 0 0;
}

.price-chip {
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(14,14,14,.12);
  border-radius: 16px;
  padding: 24px 18px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 700;
  color: var(--text);
  transition: all .18s ease;
  display: block;
  line-height: 1;
  backdrop-filter: blur(4px);
}

.price-chip small {
  display: block;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  transition: color .16s;
}

.price-chip:nth-child(4n+1) { border-top: 3px solid var(--gold); }
.price-chip:nth-child(4n+2) { border-top: 3px solid var(--ink); }
.price-chip:nth-child(4n+3) { border-top: 3px solid var(--muted2); }
.price-chip:nth-child(4n+4) { border-top: 3px solid #6b7278; }

.price-chip:hover,
.price-chip.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.price-chip:hover small,
.price-chip.active small { color: rgba(255,255,255,.7); }

/* ── PRODUCT GRIDS ── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ── PRODUCT CARD (frosted-glass info bar) ── */
.product-card {
  border-radius: 20px;
  aspect-ratio: 3 / 4.1;
  background: var(--card-ph);
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px -20px rgba(14,14,14,.28);
}

/* Image fills the card */
.product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  background: var(--card-ph);
  overflow: hidden;
}

.img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem;
  letter-spacing: 5px;
  color: rgba(14,14,14,.18);
  font-weight: 600;
}

.product-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.product-card:hover .product-img img { transform: scale(1.04); }

/* Badge — monochrome white pill */
.product-badge {
  position: absolute; top: 13px; left: 13px; z-index: 4;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 13px;
  letter-spacing: .04em;
  border-radius: 100px;
}
.badge-new, .badge-deal, .badge-best-seller {
  background: rgba(255,255,255,.92) !important;
  color: var(--ink) !important;
}

/* Hover overlay */
.product-hover-overlay {
  position: absolute; inset: 0;
  background: rgba(14,14,14,.42);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 3;
}
.product-card:hover .product-hover-overlay { opacity: 1; }

.overlay-btn {
  background: var(--white);
  color: var(--ink);
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 100px;
  transform: translateY(8px);
  transition: transform .2s ease;
}
.product-card:hover .overlay-btn { transform: translateY(0); }

/* Frosted glass info bar */
.product-body {
  position: absolute;
  bottom: 11px; left: 11px; right: 11px;
  z-index: 3;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-info { flex: 1; min-width: 0; }

.product-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 2px;
  display: none; /* name + price is enough in the bar */
}

.product-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 0;
}

.product-price-wrap { display: flex; align-items: baseline; gap: 5px; }

.price { font-size: 12px; font-weight: 600; color: var(--muted); line-height: 1; }
.price-old { font-size: 11px; color: var(--muted2); text-decoration: line-through; }

.product-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn-gold {
  background: var(--ink);
  color: var(--white);
  padding: 16px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  transition: opacity .2s;
  display: inline-block;
  cursor: pointer;
  border: none;
  border-radius: 100px;
  line-height: 1;
}
.btn-gold:hover { opacity: .85; color: var(--white); }

.btn-outline {
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(14,14,14,.2);
  color: var(--ink);
  padding: 15px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  transition: background .2s;
  display: inline-block;
  cursor: pointer;
  border-radius: 100px;
  line-height: 1;
}
.btn-outline:hover { background: var(--white); color: var(--ink); }

.btn-buy {
  background: var(--ink);
  border: none;
  color: var(--white);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity .15s;
  display: inline-block;
  border-radius: 100px;
  cursor: pointer;
}
.btn-buy:hover { opacity: .82; color: var(--white); }

/* Circular arrow button on product cards */
.btn-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(14,14,14,.14);
  background: var(--white);
  font-size: 17px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: all .2s;
  text-decoration: none;
  flex-shrink: 0;
}
.btn-arrow:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.btn-share {
  border: 1px solid rgba(14,14,14,.14);
  background: rgba(255,255,255,.8);
  color: var(--muted);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all .15s ease;
  flex-shrink: 0; padding: 0;
}
.btn-share:hover { border-color: var(--ink); color: var(--ink); }

/* ── BLOG CARDS ── */
.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px -14px rgba(14,14,14,.22);
}
.blog-img {
  width: 100%; aspect-ratio: 4/3;
  background: #dfe3e6;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-body { padding: 20px 18px 24px; }
.blog-meta {
  display: flex; gap: 10px; align-items: center;
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.blog-cat {
  background: var(--ink); color: var(--white);
  padding: 3px 10px; font-size: 10px; letter-spacing: .06em; font-weight: 600; border-radius: 100px;
}
.blog-title {
  font-family: var(--font-display); font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700; line-height: 1.25; color: var(--text);
  margin-bottom: 10px; letter-spacing: -.015em;
}
.blog-excerpt { font-size: .84rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.read-more {
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); transition: letter-spacing .15s;
}
.read-more:hover { letter-spacing: .16em; }

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--ink);
  padding: 88px 5%;
  text-align: center;
  border-radius: 30px;
}
.newsletter .section-eyebrow { color: rgba(255,255,255,.45); }
.newsletter h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800; color: var(--white); line-height: 1;
  text-transform: uppercase; margin-bottom: 14px; letter-spacing: -.025em;
}
.newsletter p { color: rgba(255,255,255,.6); margin-bottom: 36px; font-size: .95rem; }
.email-form {
  display: flex; gap: 8px; justify-content: center;
  max-width: 440px; margin: 0 auto;
}
.email-form input {
  flex: 1; background: transparent;
  border: 1px solid rgba(255,255,255,.22); color: var(--white);
  padding: 14px 18px; font-size: .88rem; outline: none;
  font-family: var(--font-body); border-radius: 100px;
}
.email-form input::placeholder { color: rgba(255,255,255,.4); }
.email-form button {
  background: var(--gold); color: var(--ink); border: none;
  padding: 14px 22px; font-weight: 700; font-size: .82rem;
  cursor: pointer; border-radius: 100px; transition: opacity .15s; font-family: inherit;
}
.email-form button:hover { opacity: .85; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: var(--white);
  border-radius: 30px;
  padding: 64px 56px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-brand p { color: #8b9298; font-size: 14px; line-height: 1.6; max-width: 280px; margin-top: 14px; }
.footer-col h4 {
  font-size: 12px; font-weight: 600; letter-spacing: .12em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 18px;
}
.footer-col a, .footer-col span {
  display: block; font-size: 14px; color: #cfd3d6; margin-bottom: 11px;
  transition: color .15s; cursor: pointer;
}
.footer-col a:hover, .footer-col span:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 12px; color: #73797e; letter-spacing: .03em;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; border-radius: 50%;
  transition: border-color .15s, background .15s;
}
.footer-socials a:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.06); }

.footer-newsletter-row { display: flex; gap: 8px; margin-bottom: 18px; }
.footer-newsletter-row input {
  flex: 1; background: transparent;
  border: 1px solid rgba(255,255,255,.22); border-radius: 100px;
  padding: 12px 16px; color: var(--white); font-family: inherit; font-size: 13px; outline: none;
}
.footer-newsletter-row input::placeholder { color: rgba(255,255,255,.38); }
.footer-newsletter-row button {
  background: var(--gold); color: var(--ink); border: none;
  border-radius: 100px; padding: 0 20px; font-weight: 700; font-size: 15px;
  cursor: pointer; transition: opacity .15s; font-family: inherit;
}
.footer-newsletter-row button:hover { opacity: .85; }

/* ── SEARCH ── */
.search-wrap { max-width: 520px; margin: 0 auto 40px; position: relative; }
.search-wrap input {
  width: 100%; background: rgba(255,255,255,.7);
  border: 1px solid rgba(14,14,14,.12); color: var(--text);
  padding: 15px 52px 15px 20px; font-size: .88rem; outline: none;
  font-family: var(--font-body); border-radius: 100px;
  transition: border-color .15s, background .15s;
}
.search-wrap input::placeholder { color: var(--muted); }
.search-wrap input:focus { border-color: var(--ink); background: rgba(255,255,255,.9); }
.search-icon { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: .9rem; }

/* ── PAGE HEADER ── */
.page-header {
  padding: 108px 5% 70px;
  text-align: center;
  background: var(--panel-light);
  border-radius: 30px;
}
.page-header .section-eyebrow { margin-bottom: 12px; }
.page-header h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800; color: var(--text); text-transform: uppercase;
  line-height: 1; margin-bottom: 16px; letter-spacing: -.025em;
}
.page-header p { color: var(--muted); max-width: 440px; margin: 0 auto; font-size: .92rem; line-height: 1.65; }

/* ── SHARED HIGHLIGHT ── */
@keyframes sharedGlow {
  0%, 100% { box-shadow: 0 0 0 2px var(--gold); }
  50%       { box-shadow: 0 0 24px 6px rgba(169,140,95,.3); }
}
.shared-highlight { box-shadow: 0 0 0 2px var(--gold); animation: sharedGlow .85s ease-in-out 2; position: relative; z-index: 1; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease-out, transform .5s ease-out;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.grid-4 > .reveal:nth-child(4n+2),
.grid-3 > .reveal:nth-child(3n+2) { transition-delay: .07s; }
.grid-4 > .reveal:nth-child(4n+3),
.grid-3 > .reveal:nth-child(3n+3) { transition-delay: .14s; }
.grid-4 > .reveal:nth-child(4n+4) { transition-delay: .20s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-grid > :nth-child(4),
  .footer-grid > :nth-child(5) { grid-column: span 1; }
  .price-buckets { grid-template-columns: repeat(2, 1fr); }
  nav { padding: 14px 24px; }
  .editorial-inner { grid-template-columns: 1fr; min-height: auto; }
  .editorial-ghost { font-size: clamp(80px, 12vw, 180px); }
}

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .campaign-cards { grid-template-columns: 1fr; }
  .campaign-card { height: 380px; }
  .campaign-header { grid-template-columns: 1fr; }
  .campaign-sub { justify-self: start; }
  .editorial-section { padding: 60px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 700px) {
  .hero { min-height: 82vh; border-radius: 20px; }
  .hero-title { font-size: clamp(42px, 12vw, 80px); top: 100px; }
  .hero-eyebrow { top: 76px; font-size: 11px; letter-spacing: .22em; }
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; bottom: 60px; }
  .hero .btn-gold, .hero .btn-outline { width: 220px; text-align: center; justify-content: center; }
  .hero-corner { display: none; }
  .poster-section { min-height: 480px; padding: 48px 24px; }
  .poster-card { height: 440px; }
  .poster-ghost-top, .poster-ghost-bottom { font-size: clamp(48px, 12vw, 100px); }
  nav { padding: 12px 20px; gap: 10px; }
  .nav-wordmark { font-size: 18px; }
}

@media (max-width: 600px) {
  section { padding: 56px 5%; border-radius: 20px; }
  .page-header { border-radius: 20px; padding: 80px 5% 52px; }
  .marquee-wrap, footer, .newsletter, .editorial-section, .campaign-section, .poster-section { border-radius: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  footer { padding: 48px 28px 28px; }
  .price-buckets { grid-template-columns: repeat(2, 1fr); }
  .price-chip { padding: 18px 14px; }
  .campaign-section { padding: 48px 24px; }
  .email-form { flex-direction: column; gap: 10px; }
  /* Mobile nav */
  .nav-left { display: none; }
  .nav-right a:not(.nav-hamburger) { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 420px) {
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(32px, 14vw, 56px); }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero .hero-eyebrow, .hero .hero-title, .hero .hero-btns { animation: none !important; }
  .marquee-track { animation: none !important; }
  .product-card, .blog-card { transition: none !important; }
  .product-img img, .blog-img img { transition: none !important; }
  .product-card:hover, .blog-card:hover { transform: none !important; box-shadow: none !important; }
}
