:root {
  --bg: #0a0f0a;
  --bg-surface: #101810;
  --fg: #f5f0e8;
  --fg-muted: #a8a295;
  --accent: #c9a96e;
  --accent-dim: rgba(201, 169, 110, 0.12);
  --green-deep: #1a3a2a;
  --green-mid: #2d5c3f;
  --border: rgba(201, 169, 110, 0.18);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 15, 10, 0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 2rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, #1a3a2a 0%, #0a0f0a 70%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 92, 63, 0.5) 0%, transparent 70%);
  top: -100px;
  right: -50px;
}
.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  bottom: 100px;
  left: 200px;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-ledge {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.7;
}
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  width: 260px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--green-mid));
}
.tip-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
}
.tip-band {
  width: 140px;
  height: 22px;
  background: linear-gradient(135deg, #c9a96e 0%, #a07840 100%);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(201, 169, 110, 0.3);
}
.tip-band-md { width: 120px; height: 18px; opacity: 0.85; }
.tip-band-hd { width: 100px; height: 14px; opacity: 0.7; }
.hero-card-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.hero-card-sub {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
}

/* SECTION COMMONS */
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 400;
}
.section-headline {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 3rem;
}

/* PROVENANCE */
.provenance {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.provenance-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
}
.prov-col-left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 0.5rem;
}
.prov-stat {}
.prov-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.prov-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 0.3rem;
}
.prov-headline {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: var(--fg);
  margin-bottom: 1.5rem;
  max-width: 500px;
}
.prov-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 560px;
}

/* PRODUCTS */
.products { padding: 6rem 2rem; }
.products-inner { max-width: 1200px; margin: 0 auto; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.product-card {
  background: var(--bg-surface);
  padding: 2.5rem;
  position: relative;
  transition: background 0.25s;
}
.product-card:hover { background: #141e14; }
.product-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
}
.product-icon svg { width: 100%; height: 100%; }
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.product-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.product-grades, .product-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.grade, .tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-muted);
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 600;
}

/* ENDORSEMENTS */
.endorsements {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 6rem 2rem;
}
.endorsements-inner { max-width: 1200px; margin: 0 auto; }
.endo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.endo-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
}
.endo-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  border-left: 2px solid var(--accent);
}
.endo-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
}
.endo-title {
  display: block;
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.2rem;
}
.endo-retailers { text-align: center; }
.retailer-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.retailer-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.retailer {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 400;
}
.retailer-dot { color: var(--fg-muted); }

/* CLOSING */
.closing { padding: 8rem 2rem; }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 3rem;
}
.closing-headline {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}
.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.cta-link {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg);
  background: var(--accent);
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.cta-link:hover { opacity: 0.85; }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid var(--accent);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(201,169,110,0.1);
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-copy, .footer-sub {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .hero-card { width: 200px; padding: 1.5rem 1rem; }
  .provenance-inner { grid-template-columns: 1fr; gap: 3rem; }
  .prov-col-left { flex-direction: row; flex-wrap: wrap; gap: 1.5rem; }
  .prov-num { font-size: 2.8rem; }
  .product-grid { grid-template-columns: 1fr; }
  .endo-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { min-height: auto; padding: 3rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
  .products, .endorsements { padding: 4rem 1.5rem; }
  .provenance { padding: 4rem 1.5rem; }
}