:root {
  --bg: #050505;
  --panel: #0d0d0d;
  --panel-soft: rgba(255, 255, 255, 0.03);
  --line: rgba(201, 164, 92, 0.18);
  --gold: #c9a45c;
  --gold-soft: #e5c97a;
  --text: #f7f4ef;
  --muted: #b8b0a1;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(201, 164, 92, 0.18), transparent 28%),
    linear-gradient(180deg, #040404 0%, #080808 42%, #040404 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

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

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

.site-shell {
  width: min(1480px, calc(100% - 32px));
  margin: 0 auto;
}

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

.utility-row,
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
}

.utility-row {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.nav-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 260px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav-right {
  justify-content: flex-end;
}

.nav-pill {
  border: 1px solid rgba(201, 164, 92, 0.35);
  border-radius: 999px;
  padding: 12px 20px;
}

.brand-lockup {
  display: flex;
  justify-content: center;
  flex: 1;
  padding: 8px 24px;
}

.brand-lockup img {
  width: min(520px, 100%);
  max-height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(201, 164, 92, 0.22));
}

.hero,
.collections-section,
.shop-section,
.house-panels,
.policy-grid {
  margin-top: 26px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(201, 164, 92, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.panel h2,
.dialog-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(58px, 8vw, 108px);
}

.hero-text,
.hero-card p,
.panel p,
.policy-card p,
.faq-list,
.contact-list,
#dialog-description {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text);
}

.button-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: transparent;
  color: #100d08;
}

.button-disabled {
  opacity: 0.72;
  pointer-events: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}

.hero-stats li,
.panel,
.policy-card,
.hero-card,
.collection-chip,
.product-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel-soft);
}

.hero-stats li {
  padding: 20px;
}

.hero-stats strong {
  display: block;
  font-size: 34px;
  margin-bottom: 6px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-stage {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-card {
  max-width: 440px;
  padding: 28px;
  background:
    radial-gradient(circle at top, rgba(201, 164, 92, 0.22), transparent 48%),
    rgba(255, 255, 255, 0.03);
}

.hero-card h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 8px 0 14px;
}

.section-heading,
.shop-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-heading h2,
.panel h2 {
  font-size: clamp(40px, 5vw, 68px);
}

.collection-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.collection-chip {
  min-width: 180px;
  padding: 18px 20px;
  cursor: pointer;
  transition: 180ms ease;
}

.collection-chip.active,
.collection-chip:hover {
  border-color: rgba(201, 164, 92, 0.52);
  background: rgba(201, 164, 92, 0.1);
}

.collection-chip strong,
.product-meta h3,
.dialog-price {
  font-family: "Cormorant Garamond", serif;
}

.collection-chip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
}

.collection-chip span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shop-tools {
  display: flex;
  gap: 14px;
}

.shop-select {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shop-select select {
  background: transparent;
  color: var(--text);
  border: 0;
  font: inherit;
  outline: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  overflow: hidden;
  cursor: pointer;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-image {
  aspect-ratio: 1 / 0.8;
  background:
    radial-gradient(circle at top, rgba(201, 164, 92, 0.18), transparent 55%),
    #111;
  padding: 24px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.product-meta {
  padding: 24px;
}

.meta-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.meta-top small {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.product-meta h3 {
  margin: 8px 0 0;
  font-size: 44px;
  line-height: 0.9;
}

.price {
  color: var(--gold-soft);
  font-size: 24px;
  font-weight: 700;
}

.product-meta p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.color-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 20px;
}

.color-tags span {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card-actions {
  display: flex;
  gap: 12px;
}

.card-actions .button {
  flex: 1;
  min-height: 46px;
  font-size: 11px;
}

.house-panels,
.policy-grid {
  display: grid;
  gap: 20px;
}

.house-panels {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel,
.policy-card {
  padding: 28px;
}

.faq-list,
.contact-list {
  padding-left: 18px;
}

.contact-list li,
.faq-list li {
  margin-bottom: 10px;
}

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

.site-footer {
  margin: 26px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  text-align: center;
}

.footer-logo {
  width: min(360px, 72vw);
  margin: 0 auto 18px;
}

.site-footer p {
  max-width: 780px;
  margin: 0 auto 16px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.product-dialog {
  width: min(1100px, calc(100vw - 24px));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #090909;
  color: var(--text);
}

.product-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 32px;
  cursor: pointer;
}

.dialog-body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  padding: 28px;
}

.dialog-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dialog-gallery > img {
  aspect-ratio: 1 / 0.8;
  object-fit: contain;
  background: #121212;
  border-radius: 24px;
  padding: 26px;
}

.dialog-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.dialog-thumbs button {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: #111;
  cursor: pointer;
}

.dialog-thumbs img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 8px;
}

.dialog-copy {
  padding-right: 12px;
}

.dialog-copy h2 {
  font-size: 62px;
  margin-top: 6px;
}

.dialog-price {
  margin: 12px 0;
  color: var(--gold-soft);
  font-size: 34px;
}

.feature-list {
  color: var(--muted);
  line-height: 1.8;
  padding-left: 18px;
}

@media (max-width: 1200px) {
  .product-grid,
  .house-panels,
  .policy-grid,
  .hero {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    align-items: start;
  }
}

@media (max-width: 900px) {
  .utility-row {
    display: none;
  }

  .nav-row {
    flex-direction: column;
    padding: 18px;
  }

  .main-nav,
  .nav-right {
    min-width: 0;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero,
  .product-grid,
  .house-panels,
  .policy-grid,
  .dialog-body {
    grid-template-columns: 1fr;
  }

  .hero,
  .panel,
  .policy-card,
  .product-meta,
  .hero-card {
    padding: 22px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 74px);
  }

  .product-meta h3 {
    font-size: 34px;
  }

  .dialog-copy h2 {
    font-size: 44px;
  }

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