:root {
  --bg-deep: #0a0604;
  --bg-mid: #1a0f06;
  --bg-soft: #2a1a0d;
  --gold-1: #f5d77a;
  --gold-2: #e3b04a;
  --gold-3: #b9892f;
  --gold-4: #6b4a16;
  --gold-glow: rgba(245, 215, 122, 0.45);
  --text: #f4e3b8;
  --text-muted: #c7ab74;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background:
    url('images/bg-pattern.svg') center top / 2200px auto repeat-y,
    radial-gradient(ellipse at top, #1c0f06 0%, #0a0604 60%, #000 100%);
  background-attachment: fixed, scroll;
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Reusable gold text */
.gold-text {
  background: linear-gradient(180deg, #fff3c2 0%, var(--gold-1) 30%, var(--gold-2) 55%, var(--gold-3) 80%, #8a5e1c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(245, 215, 122, 0.18);
}

h1, h2, h3 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ---------- Buttons (ornate gold-framed) ---------- */
.btn {
  position: relative;
  display: inline-block;
  padding: 12px 44px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #2a1200;
  /* Polished gold gradient with bright highlight band in upper-mid */
  background: linear-gradient(180deg,
    #b78427 0%,
    #d9a635 6%,
    #f5d77a 16%,
    #ffeaa3 30%,
    #fff8d4 46%,
    #ffeaa3 58%,
    #f5d77a 72%,
    #d9a635 86%,
    #8a5e1c 100%);
  border: 1.5px solid #fff3c2;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(110, 70, 10, 0.4),
    0 0 0 1px #1a0a04,
    0 0 0 2px var(--gold-3),
    0 5px 20px rgba(245, 180, 80, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  text-shadow: 0 1px 0 rgba(255, 248, 220, 0.6);
}
.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -1px 0 rgba(110, 70, 10, 0.4),
    0 0 0 1px #1a0a04,
    0 0 0 2px var(--gold-2),
    0 8px 30px rgba(245, 180, 80, 0.6);
}
.btn:active { transform: translateY(1px); }

.btn-large {
  padding: 16px 72px;
  font-size: 26px;
  letter-spacing: 0.1em;
}

/* ---------- Decorative frame corners ---------- */
.ornate-frame {
  position: relative;
  border: 1px solid var(--gold-3);
  border-radius: 4px;
  box-shadow:
    inset 0 0 0 1px rgba(245, 215, 122, 0.15),
    inset 0 0 60px rgba(245, 215, 122, 0.06),
    0 0 0 6px rgba(0, 0, 0, 0.6),
    0 0 0 7px rgba(245, 215, 122, 0.18);
}
.ornate-frame::before, .ornate-frame::after {
  content: "";
  position: absolute;
  width: 60px; height: 60px;
  background:
    radial-gradient(circle at 0 0, var(--gold-1) 0, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.ornate-frame::before { top: -2px; left: -2px; }
.ornate-frame::after  { bottom: -2px; right: -2px; transform: scaleX(-1) scaleY(-1); }

.divider-flourish {
  text-align: center;
  color: var(--gold-2);
  font-size: 22px;
  margin: 24px 0;
  letter-spacing: 1.2em;
  text-shadow: 0 0 12px var(--gold-glow);
}

/* ---------- HERO BANNER ---------- */
.hero-banner {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  background: #f0f0f0;
  border-bottom: 1px solid var(--gold-4);
}
.hero-banner-link {
  display: block;
  line-height: 0;
}
.hero-banner picture,
.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Section divider ---------- */
.section-divider {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 10px auto;
  filter: drop-shadow(0 0 6px rgba(245, 180, 80, 0.2));
}

/* ---------- CTA wings ---------- */
.cta-banner {
  position: relative;
  overflow: hidden;
}
.cta-banner > .container {
  position: relative;
  z-index: 2;
}
.cta-wings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1400px;
  height: auto;
  z-index: 1;
  opacity: 0.85;
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(245, 180, 80, 0.25));
}

/* ---------- Section title ---------- */
.section { padding: 50px 0; position: relative; }

.section-title {
  text-align: center;
  margin-bottom: 14px;
}
.section-title h2 {
  display: inline-block;
  font-size: clamp(28px, 3.4vw, 44px);
  padding: 14px 50px;
  border: 1px solid var(--gold-3);
  border-radius: 3px;
  box-shadow:
    inset 0 0 0 1px rgba(245, 215, 122, 0.18),
    0 0 0 6px rgba(0, 0, 0, 0.5),
    0 0 0 7px rgba(245, 215, 122, 0.25),
    0 4px 30px rgba(245, 180, 80, 0.15);
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 20px;
  margin-bottom: 28px;
}
.section-sub .myle {
  font-family: 'Cinzel', serif;
  color: var(--gold-1);
  font-weight: 700;
}

.section-cta { text-align: center; margin-top: 28px; }

/* ---------- Product grid ---------- */
.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 36px;
}

.product-card {
  position: relative;
  padding: 26px 28px 22px;
  background:
    linear-gradient(180deg, rgba(50, 30, 12, 0.7) 0%, rgba(20, 12, 6, 0.95) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(245, 180, 80, 0.22) 0%, transparent 60%);
  border: 1px solid var(--gold-3);
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(245, 215, 122, 0.18),
    0 8px 40px rgba(0, 0, 0, 0.6);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 240, 200, 0.06) 30%, rgba(255, 240, 200, 0.18) 50%, transparent 70%);
  pointer-events: none;
}

.product-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.product-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.05em;
  line-height: 1.05;
}
.product-title small {
  display: block;
  font-size: 30px;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  margin-top: 4px;
}

.price-block {
  text-align: right;
  line-height: 1;
}
.price-label {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold-1);
}
.price {
  font-family: 'Cinzel', serif;
  font-size: 38px;
  font-weight: 900;
  margin: 4px 0 6px;
}
.msrp {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.product-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.flavors-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--gold-1);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.flavor-list {
  list-style: none;
  columns: 2;
  column-gap: 18px;
}
.flavor-list li {
  font-size: 15px;
  padding: 4px 0 4px 18px;
  position: relative;
  color: var(--text);
  break-inside: avoid;
}
.flavor-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bullet, var(--gold-2));
  box-shadow: 0 0 6px var(--bullet, var(--gold-2));
}
.flavor-list li.bullet-jetblack::before {
  background: radial-gradient(circle at 30% 30%, #4a4a4a 0%, #0a0a0a 70%);
  border: 1px solid var(--gold-2);
  box-shadow: 0 0 5px rgba(245, 180, 80, 0.55);
}

.kit-includes {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(245, 180, 80, 0.25);
  font-size: 14px;
  color: var(--text);
  letter-spacing: 0.02em;
}
.kit-includes strong {
  color: var(--gold-1);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.08em;
  margin-right: 6px;
}

/* Wide product card spans the full grid row */
.product-card-wide {
  grid-column: 1 / -1;
}
.product-card-wide .product-body {
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}
.product-card-wide .flavor-list {
  columns: 3;
  column-gap: 24px;
}
.product-card-wide .product-image {
  aspect-ratio: auto;
  min-height: 320px;
}

/* Product preview */
.product-image {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  background:
    radial-gradient(circle at 30% 30%, rgba(245, 180, 80, 0.25) 0%, transparent 65%),
    linear-gradient(180deg, #2a1a0d 0%, #0a0604 100%);
  border: 1px solid rgba(245, 215, 122, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 16px;
}
.product-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.6));
}

.product-foot {
  margin-top: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.step {
  display: flex;
  align-items: center;
  gap: 18px;
}
.step-num {
  font-family: 'Cinzel', serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}
.step-text {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--text);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  text-align: center;
  padding: 70px 0;
  background:
    radial-gradient(ellipse at center, rgba(245, 180, 80, 0.12) 0%, transparent 70%);
  border-top: 1px solid rgba(245, 215, 122, 0.2);
  border-bottom: 1px solid rgba(245, 215, 122, 0.2);
}
.cta-banner h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  margin-bottom: 28px;
}

/* ---------- Footer ---------- */
footer {
  background: linear-gradient(180deg, #0a0604 0%, #000 100%);
  padding: 40px 0 26px;
  border-top: 1px solid var(--gold-4);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1.3fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(245, 215, 122, 0.18);
}
.footer-col {
  min-width: 0;
}
.footer-brand {
  line-height: 0.95;
}
.footer-brand .smoking {
  font-family: 'Great Vibes', cursive;
  font-size: 44px;
  color: var(--gold-1);
  text-shadow: 0 0 14px var(--gold-glow);
}
.footer-brand .distro {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.22em;
  margin-top: -2px;
}

.footer-brand .brand-sub {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 14px;
}

.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--gold-1);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(245, 215, 122, 0.18);
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-list li {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--text);
}

.footer-col .email {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.02em;
  display: inline-block;
  word-break: break-all;
  transition: color 0.15s ease;
}
.footer-col .email:hover { color: var(--gold-1); }

.tagline {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.age-warning {
  background: #1a0303;
  border-bottom: 1px solid #4a0a0a;
  color: #f4c0a0;
  font-size: 13px;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.03em;
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .products { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; text-align: left; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand .brand-sub { margin-top: 10px; }
  .product-body { grid-template-columns: 1fr; }
  .product-image { max-width: 280px; margin: 0 auto; }
  .product-card-wide .product-body { grid-template-columns: 1fr; }
  .product-card-wide .flavor-list { columns: 2; }
  .product-card-wide .product-image { min-height: 0; }
}
