
:root {
  --bg: #080808;
  --bg-soft: #121212;
  --card: #131313;
  --ivory: #f1e7d2;
  --sand: #dcc29a;
  --gold: #c8a05a;
  --gold-soft: #9e7d45;
  --text: #f5efe5;
  --muted: #c2b7a5;
  --line: rgba(231, 198, 138, 0.18);
  --shadow: 0 22px 60px rgba(0,0,0,.35);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, #090909 0%, #0d0d0d 45%, #121212 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}
.eyebrow {
  margin: 0 0 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: .72rem;
}
h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.02em;
}
p { line-height: 1.7; color: var(--muted); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,7,7,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
}
.brand-title {
  font-family: Georgia, serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ivory);
  font-size: clamp(1rem, 2.4vw, 1.65rem);
}
.site-nav {
  position: fixed;
  inset: 74px 0 auto 0;
  background: rgba(8,8,8,.98);
  padding: 18px 20px 24px;
  display: none;
  flex-direction: column;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}
.site-nav a { color: var(--muted); }
.site-nav.open { display: flex; }
.menu-toggle {
  justify-self: end;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ivory);
  padding: 10px 14px;
  border-radius: 999px;
}
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 50px 0 70px;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 22%, rgba(200,160,90,.16), transparent 26%), linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 34px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 8vw, 5.2rem);
  line-height: .95;
  margin-bottom: 18px;
}
.hero-text {
  max-width: 58ch;
  font-size: 1.02rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  transition: .25s ease;
  border: 1px solid var(--line);
}
.btn-primary {
  background: linear-gradient(180deg, #d3ab67, #a98342);
  color: #100d08;
  font-weight: 700;
}
.btn-secondary { color: var(--text); }
.btn:hover { transform: translateY(-2px); }
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  color: var(--sand);
}
.cube-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 12px;
  perspective: 1300px;
}
.cube-tile {
  aspect-ratio: 1;
}
.cube-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .9s ease;
}
.cube-tile.flip .cube-inner,
.cube-tile:hover .cube-inner {
  transform: rotateY(180deg);
}
.cube-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.08);
  background: #141414;
}
.cube-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cube-back {
  transform: rotateY(180deg);
}
.story-section,
.collection-section,
.signup-section,
.banner-section,
.featured-strip {
  padding: 70px 0;
}
.story-grid {
  display: grid;
  gap: 24px;
}
.story-art, .story-copy, .message-panel,
.featured-strip .strip-grid,
.banner-card,
.signup-card {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.story-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-copy,
.message-panel {
  padding: 26px;
}
.story-copy h2,
.section-head h2,
.banner-card h2,
.signup-card h2,
.featured-strip h2 {
  font-size: clamp(1.9rem, 5vw, 3.3rem);
  margin-bottom: 14px;
}
.message-panel {
  display: grid;
  gap: 16px;
}
.message-card {
  padding: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
}
.message-card strong {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  color: var(--ivory);
  line-height: 1.2;
}
.strip-grid {
  padding: 24px;
  display: grid;
  gap: 24px;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.mini-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
}
.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-btn {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}
.filter-btn.active {
  background: linear-gradient(180deg, #d3ab67, #a98342);
  color: #100d08;
  border-color: transparent;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.product-card {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.035));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, opacity .2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,160,90,.4);
}
.product-card.hidden { display: none; }
.product-image-wrap {
  aspect-ratio: 1 / 1;
  background: #111;
}
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-meta {
  padding: 14px;
}
.product-meta h3 {
  font-size: 1.02rem;
  margin: 6px 0 8px;
}
.product-meta p {
  color: var(--sand);
  margin: 0;
}
.banner-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  align-items: center;
}
.banner-card img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.06);
}
.signup-card {
  padding: 30px;
  text-align: center;
}
.signup-form {
  max-width: 620px;
  margin: 22px auto 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.signup-form input {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
}
.signup-form button {
  border: 0;
  background: linear-gradient(180deg, #d3ab67, #a98342);
  color: #100d08;
  border-radius: 14px;
  width: 56px;
}
.fine-print { font-size: .9rem; }
.site-footer {
  padding: 28px 0 60px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  gap: 18px;
}
.footer-grid h3 { font-size: 1.15rem; margin-bottom: 8px; }
.footer-grid a { color: var(--muted); display: block; margin-bottom: 8px; }

@media (min-width: 768px) {
  .container { width: min(1280px, calc(100% - 48px)); }
  .hero-section { padding: 74px 0 90px; }
  .hero-grid { grid-template-columns: 1.02fr .98fr; }
  .story-grid { grid-template-columns: 1.05fr 1fr; }
  .message-panel { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .strip-grid { grid-template-columns: .9fr 1.1fr; align-items: center; }
  .products-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .banner-card { grid-template-columns: .8fr 1.2fr; }
  .footer-grid { grid-template-columns: 1.4fr .8fr .8fr; }
}

@media (min-width: 1024px) {
  .nav-wrap { grid-template-columns: auto auto 1fr; }
  .menu-toggle { display: none; }
  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 24px;
    padding: 0;
    background: transparent;
    border: 0;
  }
  .hero-copy { padding-right: 18px; }
  .cube-gallery { gap: 14px; }
  .story-grid { grid-template-columns: .95fr 1.1fr .9fr; align-items: stretch; }
  .message-panel { grid-column: auto; grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
}

@media (min-width: 1320px) {
  .products-grid { grid-template-columns: repeat(5, minmax(0,1fr)); }
}

/* Background music control */
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}
.music-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
  color: var(--ivory);
  cursor: pointer;
}
.music-toggle[aria-pressed="true"] {
  border-color: rgba(200,160,90,.55);
  background: rgba(200,160,90,.10);
}
.music-icon {
  color: var(--gold);
  font-size: 1.05rem;
  line-height: 1;
}
.music-label {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 520px) {
  .music-label { display: none; }
  .music-toggle { width: 44px; padding: 0; justify-content: center; }
}
@media (min-width: 1024px) {
  .nav-wrap { grid-template-columns: auto auto 1fr auto; }
  .header-actions { order: 4; }
}
