:root {
  --ink: #17100b;
  --pitch: #050403;
  --paper: #fff4df;
  --panel: #1d1510;
  --ember: #c34220;
  --ember-dark: #5f1710;
  --gold: #d49b37;
  --gold-bright: #f2c66d;
  --moss: #2f5c40;
  --plum: #412740;
  --line: rgba(212, 155, 55, 0.22);
  --muted: #7d6b58;
  --shadow: 0 20px 54px rgba(5, 4, 3, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #120d09;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(5, 4, 3, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0;
  color: var(--gold-bright);
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  border-radius: 50%;
  background: #100b08 url("images/warlocks-cauldron-coin.png") center / cover no-repeat;
  color: transparent;
  border: 1px solid rgba(242, 198, 109, 0.55);
  font-family: Georgia, serif;
  font-weight: 900;
  font-size: 0;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(5, 4, 3, 0.72), 0 8px 20px rgba(0, 0, 0, 0.34);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 244, 223, 0.78);
  font-weight: 800;
  font-size: 0.92rem;
}

.nav a {
  text-decoration: none;
}

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

.hero {
  min-height: 82vh;
  display: grid;
  align-content: center;
  gap: clamp(28px, 5vw, 54px);
  padding: clamp(28px, 5vw, 72px) clamp(18px, 4vw, 64px) clamp(44px, 7vw, 92px);
  background:
    radial-gradient(circle at 85% 28%, rgba(195, 66, 32, 0.22), transparent 34%),
    linear-gradient(180deg, #050403 0%, #120d09 52%, #26150d 100%);
  color: #fff7ea;
  overflow: hidden;
}

.hero-banner {
  width: min(100%, 1360px);
  margin: 0 auto;
  border: 1px solid rgba(242, 198, 109, 0.32);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.52);
  background: #050403;
}

.hero-copy {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.hero h1,
.page-hero h1,
.product-hero h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero p,
.page-hero p,
.product-hero p {
  max-width: 680px;
  color: rgba(255, 247, 234, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #1a1008;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.button:hover {
  transform: translateY(-1px);
}

.button.secondary {
  background: rgba(255, 244, 223, 0.04);
  color: #fff7ea;
  border-color: rgba(242, 198, 109, 0.44);
}

.section {
  padding: clamp(48px, 7vw, 86px) clamp(18px, 4vw, 64px);
  background: var(--paper);
}

.section.alt {
  background: #ead7b7;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 28px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.section-head p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}

.product-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-width: 0;
  background: #fff7e8;
  border: 1px solid rgba(23, 16, 11, 0.14);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(24, 21, 18, 0.08);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: #211610;
}

.product-card-body {
  padding: 16px;
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--ember);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-card h3 {
  min-height: 3.1em;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.18;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f0d8a7;
  color: #3d2d22;
  font-size: 0.78rem;
  font-weight: 900;
}

.story-band {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
}

.story-band h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.story-band p {
  margin: 0 0 16px;
  color: var(--muted);
}

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

.stat {
  padding: 20px;
  border-radius: 8px;
  background: #fff7e8;
  border: 1px solid rgba(23, 16, 11, 0.14);
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.stat span {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}

.feed-story {
  max-width: 1180px;
  margin: clamp(28px, 5vw, 54px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feed-card {
  min-width: 0;
  padding: 20px;
  border-radius: 8px;
  background: #17100b;
  color: #fff4df;
  border: 1px solid rgba(212, 155, 55, 0.28);
  box-shadow: 0 12px 28px rgba(23, 16, 11, 0.16);
}

.feed-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.18;
}

.feed-card p:last-child {
  margin: 0;
  color: rgba(255, 244, 223, 0.76);
  font-size: 0.94rem;
}

.contact-band {
  background:
    radial-gradient(circle at 20% 0%, rgba(195, 66, 32, 0.18), transparent 30%),
    #090604;
  color: #fff7ea;
}

.contact-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.contact-inner h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.contact-list {
  display: grid;
  gap: 10px;
  color: rgba(255, 247, 234, 0.84);
}

.contact-list a {
  color: #fff7ea;
}

.page-hero,
.product-hero {
  padding: clamp(44px, 7vw, 92px) clamp(18px, 4vw, 64px);
  background:
    linear-gradient(125deg, rgba(5, 4, 3, 0.9), rgba(95, 23, 16, 0.82) 58%, rgba(65, 39, 64, 0.74)),
    url("images/warlocks-cauldron-banner.png") center / cover no-repeat;
  color: #fff7ea;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
}

.product-hero img {
  width: min(100%, 380px);
  margin-left: auto;
  border-radius: 8px;
  border: 1px solid rgba(242, 198, 109, 0.28);
  box-shadow: var(--shadow);
  background: #090604;
}

.detail-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(22px, 5vw, 64px);
}

.spec-list {
  display: grid;
  gap: 10px;
}

.spec {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.spec span {
  color: var(--muted);
}

.copy-block h2,
.copy-block h3 {
  margin: 0 0 12px;
  line-height: 1.1;
}

.copy-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.copy-block p {
  color: var(--muted);
  margin: 0 0 18px;
}

.ingredient-list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.site-footer {
  padding: 24px clamp(18px, 4vw, 64px);
  background: #050403;
  color: rgba(255, 247, 234, 0.7);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer a {
  color: #fff7ea;
}

@media (max-width: 1040px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feed-story {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header,
  .section-head,
  .contact-inner,
  .story-band,
  .detail-grid,
  .product-hero,
  .hero {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
  }

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

  .hero {
    min-height: 70vh;
    padding-bottom: clamp(44px, 7vw, 92px);
  }

  .product-hero img {
    margin: 0;
    width: min(100%, 300px);
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .feed-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .brand span:last-child {
    max-width: 190px;
    line-height: 1.1;
  }

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

  .product-card {
    display: grid;
    grid-template-columns: 120px 1fr;
  }

  .product-card img {
    height: 100%;
  }

  .product-card h3 {
    min-height: 0;
  }
}
