:root {
  --black: #030303;
  --black-soft: #0a0a0a;
  --panel: rgba(255, 255, 255, .055);
  --panel-strong: rgba(255, 255, 255, .10);
  --gold: #d79a28;
  --gold-light: #ffd375;
  --pink: #ed1a93;
  --pink-light: #ff6fca;
  --text: #fff4df;
  --muted: rgba(255, 244, 223, .72);
  --line: rgba(255, 211, 117, .24);
  --max: 1220px;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 26px 74px rgba(0, 0, 0, .52);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(237, 26, 147, .22), transparent 27%),
    radial-gradient(circle at 86% 4%, rgba(255, 211, 117, .18), transparent 30%),
    radial-gradient(circle at 50% 94%, rgba(215, 154, 40, .13), transparent 28%),
    linear-gradient(180deg, #020202 0%, #060606 52%, #090406 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.90) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(255,211,117,.86) 0 1px, transparent 1.5px);
  background-size: 104px 104px, 158px 158px;
  background-position: 8px 9px, 42px 22px;
  opacity: .16;
  mask-image: linear-gradient(90deg, #000 0 18%, transparent 38% 68%, #000 92% 100%);
}

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

.container {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  transform: translateY(-140%);
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  color: #170b00;
  background: var(--gold-light);
  font-weight: 900;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(0, 0, 0, .66);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 211, 117, .16);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .035em;
}

.logo-my,
.pink { color: var(--pink); }
.logo-baer,
.gold { color: var(--gold-light); }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.3vw, 32px);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 12px;
  font-weight: 900;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 211, 117, .44);
  text-transform: uppercase;
  letter-spacing: .085em;
  font-size: 12px;
  font-weight: 900;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.header-cta,
.btn.primary {
  color: #160b00;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 18px 46px rgba(215, 154, 40, .20);
}

.btn.ghost {
  color: var(--text);
  background: rgba(255,255,255,.045);
  border-color: rgba(237, 26, 147, .42);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(215, 154, 40, .25);
}

.hero {
  padding: clamp(54px, 8vw, 108px) 0 clamp(64px, 8vw, 118px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--pink-light);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 900;
}

.eyebrow::before,
.section-kicker::before {
  content: "✦";
  color: var(--gold-light);
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: uppercase;
  line-height: .86;
  letter-spacing: .045em;
}

.title-row { display: block; }

.title-row:first-child {
  font-size: clamp(58px, 9.2vw, 120px);
  margin-bottom: 12px;
}

.title-row.world {
  font-size: clamp(50px, 7.9vw, 104px);
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.66;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-stage {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr .58fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.11);
  background: var(--panel);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-card::after,
.product-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 10%, rgba(255,255,255,.12), transparent 24%),
    linear-gradient(180deg, transparent 42%, rgba(0,0,0,.74));
}

.hero-card img,
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.hero-card:hover img,
.product-card:hover img { transform: scale(1.045); }

.hero-main { grid-row: 1 / 3; }
.hero-small-one { grid-column: 2; grid-row: 1; }
.hero-small-two { grid-column: 2; grid-row: 2; }

.intro,
.collection,
.seo-copy {
  padding: clamp(64px, 8.5vw, 112px) 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 70px);
  align-items: start;
}

h2 {
  max-width: 760px;
  color: var(--gold-light);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(36px, 5.3vw, 72px);
  line-height: .96;
  letter-spacing: .048em;
  text-transform: uppercase;
}

.intro-text,
.copy-panel p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 17px;
}

.intro-text p:last-child,
.copy-panel p:last-of-type { margin-bottom: 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 30px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.filter {
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  padding: 11px 15px;
  color: var(--muted);
  background: rgba(255,255,255,.045);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 11px;
  font-weight: 900;
}

.filter.active,
.filter:hover {
  color: #170b00;
  border-color: rgba(255,211,117,.70);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(310px, 38vw);
  gap: 18px;
}

.product-card {
  min-width: 0;
  min-height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 52px rgba(0,0,0,.40);
  transition: transform .25s ease, border-color .25s ease, opacity .22s ease;
}

.product-card.is-hidden { display: none; }

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,211,117,.46);
}

.product-card a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product-card.span-2 { grid-column: span 2; grid-row: span 2; }
.product-card.wide { grid-column: span 2; }
.product-card.tall { grid-row: span 2; }

.card-content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
}

.card-content span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--gold-light);
  border: 1px solid rgba(255,211,117,.40);
  background: rgba(0,0,0,.48);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 900;
}

.card-content h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(19px, 2.1vw, 28px);
  line-height: 1.08;
}

.card-content p {
  margin-bottom: 0;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.45;
}

.copy-panel {
  padding: clamp(32px, 5vw, 68px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 211, 117, .22);
  background:
    radial-gradient(circle at 10% 22%, rgba(237, 26, 147, .18), transparent 32%),
    radial-gradient(circle at 90% 8%, rgba(255, 211, 117, .18), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}

.copy-panel h2 { max-width: 960px; }
.copy-panel p { max-width: 920px; }
.copy-panel .btn { margin-top: 26px; }

.site-footer {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer p { margin: 0; }
.site-footer a:hover { color: var(--gold-light); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: 620px; }
  .bento-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-card.span-2 { grid-column: span 2; grid-row: span 2; }
}

@media (max-width: 820px) {
  .header-inner { min-height: 68px; }
  .main-nav { display: none; }
  .header-cta { min-height: 42px; padding-inline: 15px; }
  .hero-stage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    min-height: unset;
  }
  .hero-main { grid-column: 1 / 3; grid-row: auto; }
  .hero-small-one,
  .hero-small-two { grid-column: auto; grid-row: auto; }
  .hero-card img { aspect-ratio: 1055 / 1491; }
  .intro-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .filters { justify-content: flex-start; margin-top: 20px; }
  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(300px, 64vw);
  }
  .product-card.span-2,
  .product-card.wide { grid-column: span 2; }
  .product-card.tall { grid-row: span 1; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .hero { padding-top: 42px; }
  .title-row:first-child { font-size: clamp(48px, 16vw, 74px); }
  .title-row.world { font-size: clamp(42px, 13vw, 62px); }
  .hero-actions .btn { width: 100%; }
  .hero-stage { gap: 12px; }
  .hero-small-one,
  .hero-small-two { border-radius: 18px; }
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 15px;
  }
  .product-card,
  .product-card.span-2,
  .product-card.wide,
  .product-card.tall {
    grid-column: auto;
    grid-row: auto;
  }
  .product-card img { aspect-ratio: 1055 / 1491; }
  .product-card a { height: auto; }
  .card-content { padding: 15px; }
  .copy-panel { border-radius: 24px; }
  .footer-inner { display: block; }
  .site-footer nav { margin-top: 14px; }
}

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