:root {
  --bg: #1b1014;
  --bg-2: #27161c;
  --card: #2f1c24;
  --line: rgba(243, 193, 92, 0.28);
  --gold: #f3c15c;
  --gold-2: #ffe7a8;
  --rose: #e8a0b0;
  --wine: #8b2e45;
  --ink: #fff7ee;
  --muted: #e3cfc0;
  --cream: #fff4e6;
  --shadow: 0 28px 70px rgba(40, 8, 18, 0.45);
  --radius: 26px;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Outfit", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(1000px 620px at 8% -12%, rgba(243, 193, 92, 0.28), transparent 58%),
    radial-gradient(900px 540px at 100% 0%, rgba(232, 160, 176, 0.22), transparent 52%),
    radial-gradient(800px 500px at 50% 110%, rgba(139, 46, 69, 0.45), transparent 55%),
    linear-gradient(180deg, #24141a 0%, #1b1014 40%, #140c10 100%);
  font-family: var(--font-sans);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

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

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus {
  left: 12px;
  z-index: 20;
  background: var(--gold);
  color: #1b1014;
  padding: 8px 12px;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 6px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(243, 193, 92, 0.25));
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-sub {
  display: block;
  margin-top: 2px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav a { text-decoration: none; }
.nav a:hover { color: var(--gold-2); }

.hero {
  padding: 36px 0 10px;
}
.kicker {
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 16px;
}
.hero h1 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(44px, 7.4vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-2);
}
.lead {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--gold-2);
  background: rgba(243, 193, 92, 0.08);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 36px 0 8px;
}
.stat {
  padding: 20px 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(243, 193, 92, 0.12), rgba(255, 255, 255, 0.03));
}
.stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--gold-2);
}
.stat span {
  color: var(--muted);
  font-size: 13px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 28px 0 8px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 244, 230, 0.08);
  border: 1px solid var(--line);
}
.logo-row img {
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.logo-row .ghost {
  height: 42px;
  max-width: 150px;
}

.section {
  padding: 36px 0 28px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}
.section h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 500;
}
.section-head p {
  margin: 0;
  max-width: 460px;
  color: var(--muted);
  line-height: 1.55;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(243, 193, 92, 0.1), transparent 38%),
    var(--card);
  box-shadow: var(--shadow);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 193, 92, 0.7);
  box-shadow: 0 30px 70px rgba(243, 193, 92, 0.14);
}
.card.featured { grid-column: span 8; min-height: 380px; }
.card.span-4 { grid-column: span 4; }
.card.span-6 { grid-column: span 6; }
.card.span-8 { grid-column: span 8; }

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.num {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 20px;
}
.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.logo-plate {
  display: grid;
  place-items: center;
  width: min(100%, 280px);
  height: 92px;
  margin: 18px 0 14px;
  padding: 12px 16px;
  border-radius: 18px;
  background: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(139, 46, 69, 0.08);
}
.logo-plate.dark {
  background: #1a1014;
}
.logo-plate img {
  max-height: 68px;
  width: auto;
  max-width: 92%;
  object-fit: contain;
}
.card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.12;
}
.card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}
.bullets {
  margin: 12px 0 0;
  padding: 0 0 0 18px;
  color: var(--cream);
  font-size: 14px;
  line-height: 1.55;
}
.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}
.domain {
  color: var(--gold-2);
  font-size: 13px;
  word-break: break-all;
}
.go {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(243, 193, 92, 0.12);
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
.story article, .cta-box {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 244, 230, 0.05);
}
.story h3, .cta-box h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
}
.story p, .cta-box p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}
.cta-box {
  background: linear-gradient(160deg, rgba(243, 193, 92, 0.18), rgba(232, 160, 176, 0.12));
}
.btn {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #2a160c;
  text-decoration: none;
  font-weight: 600;
}

.stores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.store {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}
.store h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
}
.store p, .store a {
  color: var(--muted);
  text-decoration: none;
  line-height: 1.65;
}
.store a:hover { color: var(--gold-2); }

.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .nav, .section-head { display: block; }
  .section-head p { margin-top: 8px; }
  .stats, .story, .stores { grid-template-columns: 1fr 1fr; }
  .card, .card.featured, .card.span-4, .card.span-6, .card.span-8 {
    grid-column: span 12;
    min-height: 280px;
  }
}
@media (max-width: 640px) {
  .stats, .story, .stores { grid-template-columns: 1fr; }
  .hero { padding-top: 18px; }
}
