:root {
  --bg: #050505;
  --panel: #0d0d0d;
  --panel-2: #151515;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f5f5;
  --muted: #b5b5b5;
  --gold: #f4c53d;
  --white: #ffffff;
  --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(255,255,255,0.06), transparent 25%),
    linear-gradient(180deg, #080808 0%, #030303 100%);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 14px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  align-items: flex-start;
}

.brand .eyebrow {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.34em;
  line-height: 1;
}

.brand-wordmark {
  width: min(180px, 28vw);
  max-width: 180px;
  height: 37px;
  object-fit: contain;
  object-position: left center;
  display: block;
  margin-left: -4px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.32));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  color: #d8d8d8;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.cta-button,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.22s ease;
}

.cta-button {
  background: var(--white);
  color: #000;
  padding: 12px 18px;
}

.cta-button:hover,
.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(255,255,255,.1);
}

.hero {
  padding: 44px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.93;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-copy h1 span {
  color: var(--gold);
}

.hero-copy p {
  margin: 20px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.primary-btn {
  background: var(--white);
  color: #000;
  padding: 15px 22px;
}

.secondary-btn {
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: 15px 22px;
  background: rgba(255, 255, 255, 0.02);
}

.secondary-btn:hover {
  border-color: rgba(255,255,255,.3);
}

.hero-highlights {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-highlights div,
.collection-panel,
.product-card,
.structure-grid article,
.hero-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
}

.hero-highlights div {
  border-radius: 20px;
  padding: 16px;
}

.hero-highlights strong {
  display: block;
  font-size: 1rem;
}

.hero-highlights span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.4;
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 16px;
  align-items: stretch;
}

.hero-card {
  border-radius: 28px;
  overflow: hidden;
}

.hero-main-card {
  position: relative;
  min-height: 680px;
}

.hero-main-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.92) 72%);
}

.hero-card-content h3 {
  margin: 10px 0 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.hero-card-content p {
  margin: 0;
  color: #d8d8d8;
  line-height: 1.6;
}

.tag,
.product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-mini-stack {
  display: grid;
  gap: 16px;
}

.hero-card.mini {
  min-height: 330px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}

.hero-card.mini img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-card.mini.dark {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
}

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090909;
}

.strip-inner {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.strip-inner span::before {
  content: '★';
  color: var(--gold);
  margin-right: 10px;
}

.featured,
.collection,
.structure,
.mock-footer-gallery {
  padding: 82px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 22px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading h2,
.collection-panel h2,
.banner-callout h2,
.footer-gallery-copy h2 {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.section-heading p,
.collection-panel p,
.banner-callout p,
.footer-gallery-copy p,
.structure-grid article p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 22px;
}

.product-card {
  border-radius: 26px;
  overflow: hidden;
}

.product-card.featured-large {
  grid-row: span 2;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 9 / 13;
  background: #000;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
}

.product-badge.alt {
  background: #ffffff;
}

.product-badge.alt-gold {
  background: linear-gradient(180deg, #f7d97a, #dca923);
}

.product-info {
  padding: 20px;
}

.product-info h3,
.structure-grid article h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.product-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-meta strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
}

.product-meta span {
  color: #d7d7d7;
  font-size: .95rem;
}

.collection-grid,
.footer-gallery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.collection-panel {
  border-radius: 28px;
  padding: 28px;
}

.dark-panel ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 14px;
}

.dark-panel li {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  color: #e4e4e4;
  line-height: 1.6;
}

.brand-assets {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.brand-assets figure {
  margin: 0;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  display: grid;
  place-items: center;
  min-height: 260px;
}

.brand-assets img {
  width: 100%;
  max-height: 185px;
  object-fit: contain;
}

.brand-assets figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: .95rem;
  text-align: center;
}

.banner-callout {
  padding: 40px 0;
}

.banner-callout-inner {
  border: 1px solid rgba(244, 197, 61, 0.18);
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(244,197,61,.09));
  border-radius: 28px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 22px;
  align-items: center;
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.structure-grid article {
  border-radius: 24px;
  padding: 24px;
}

.footer-gallery-visual {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.footer-gallery-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050505;
}

.site-footer-inner {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.site-footer p {
  color: var(--muted);
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #dedede;
}


@media (max-width: 1200px) {
  .brand-wordmark {
    width: min(150px, 26vw);
    max-width: 150px;
    height: 31px;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .section-heading,
  .collection-grid,
  .banner-callout-inner,
  .footer-gallery-inner,
  .hero-visual {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-card.featured-large {
    grid-row: auto;
  }

  .structure-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .desktop-nav,
  .cta-button {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-main-card {
    min-height: 520px;
  }

  .hero-highlights,
  .product-grid,
  .brand-assets,
  .structure-grid {
    grid-template-columns: 1fr;
  }

  .brand-assets figure {
    min-height: 220px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .topbar-inner {
    min-height: 74px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 1.6rem;
  }

  .hero-copy p,
  .section-heading p,
  .collection-panel p,
  .banner-callout p,
  .footer-gallery-copy p,
  .structure-grid article p,
  .product-info p {
    font-size: 0.97rem;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .featured,
  .collection,
  .structure,
  .mock-footer-gallery {
    padding: 64px 0;
  }

  .product-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .banner-callout-inner,
  .collection-panel,
  .structure-grid article {
    padding: 22px;
  }
}


@media (max-width: 768px) {
  .brand-wordmark {
    width: min(190px, 56vw);
  }
}
