:root {
  --bg: #0c0a07;
  --surface: #161310;
  --surface-raised: #1e1a14;
  --gold: #c8933a;
  --gold-light: #e4b76a;
  --gold-dim: rgba(200, 147, 58, 0.15);
  --text: #f2ede5;
  --text-muted: #9b9086;
  --border: rgba(200, 147, 58, 0.12);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.8rem;
  font-style: italic;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* Glows */
.hero-glow {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(200,147,58,0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  width: 28vw;
  height: 28vw;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(228,183,106,0.12) 0%, transparent 70%);
  border: 1px solid var(--border);
  top: 10%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.hero-orb--sm {
  width: 12vw;
  height: 12vw;
  top: 20%;
  right: 30%;
  background: radial-gradient(circle at 40% 40%, rgba(200,147,58,0.07) 0%, transparent 70%);
}

/* ── PROVENANCE ── */
.provenance {
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}

.provenance-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.provenance-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.provenance h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.provenance-body p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.provenance-body strong { color: var(--gold-light); font-weight: 500; }

.provenance-stats {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 1rem;
  border-left: 1px solid var(--border);
  padding-left: 3rem;
}

.stat { }

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ── ASSORTMENT ── */
.assortment {
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}

.assortment-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.assortment-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.assortment h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 3.5rem;
  font-style: italic;
}

.assortment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.wax-card {
  background: var(--bg);
  padding: 2rem 1.8rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wax-card-top { margin-bottom: 1.6rem; }

.wax-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold-dim);
  color: var(--gold-light);
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.wax-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.wax-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.wax-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.wax-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}

.wax-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── REACH ── */
.reach {
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}

.reach-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.reach-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.reach h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.reach p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.reach-locations {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.location {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.location strong {
  display: block;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.location span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.reach-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.reach-map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
}

.map-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 80%;
}

.map-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.map-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.map-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.4;
}

/* ── CLOSING ── */
.closing {
  padding: 8rem 2rem;
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── FOOTER ── */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.6;
}

.footer-contact a {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--gold-light); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .provenance-inner,
  .reach-inner { grid-template-columns: 1fr; gap: 3rem; }
  .provenance-stats { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 2rem; flex-direction: row; flex-wrap: wrap; gap: 2rem; }
  .assortment-grid { grid-template-columns: repeat(2, 1fr); }
  .reach-visual { display: none; }
}

@media (max-width: 600px) {
  .hero { min-height: 80vh; padding: 4rem 1.5rem 3rem; }
  .assortment-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}