:root {
  --bg: #0a0a0a;
  --text: #f2ede4;
  --muted: #9a9289;
  --gold: #c9a84c;
  --gold-dim: rgba(201,168,76,0.15);
  --surface: #1a1a1a;
  --border: #2e2e2e;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 48px;
  background: linear-gradient(180deg, rgba(10,10,10,0.92) 0%, transparent 100%);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 300;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--text); text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.cart-link {
  position: relative;
  display: flex; align-items: center; gap: 6px;
}
.cart-badge {
  background: var(--gold);
  color: var(--bg);
  font-size: 9px; font-weight: 500;
  width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: -8px; right: -10px;
}
.cart-badge.hidden { display: none; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
  position: relative; overflow: hidden;
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: 2px; margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 13px; letter-spacing: 0.5px; color: var(--muted);
  max-width: 400px; margin: 0 auto 44px; line-height: 1.9;
}
.hero-line {
  width: 1px; height: 60px;
  background: var(--gold-dim);
  margin: 0 auto;
}

/* ── PAGE HERO (non-homepage) ── */
.page-hero {
  padding: 180px 0 80px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 300; line-height: 1.1;
  letter-spacing: 2px; margin-bottom: 20px;
}
.page-hero p {
  font-size: 14px; color: var(--muted);
  line-height: 1.9; max-width: 420px;
  margin: 0 auto;
}

/* ── BLUR FADE IN ── */
@keyframes blur-fade-in {
  from { opacity: 0; filter: blur(8px); transform: translateY(10px); }
  to   { opacity: 1; filter: blur(0);  transform: translateY(0); }
}
.bf { opacity: 0; animation: blur-fade-in 0.9s cubic-bezier(0.22,1,0.36,1) forwards; }
.bf-d1 { animation-delay: 0.1s; }
.bf-d2 { animation-delay: 0.25s; }
.bf-d3 { animation-delay: 0.42s; }
.bf-d4 { animation-delay: 0.58s; }
.bf-d5 { animation-delay: 0.75s; }

/* scroll-triggered */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SECTIONS ── */
section { padding: 100px 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.section-label {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300; line-height: 1.2; margin-bottom: 24px;
}
.section-body {
  font-size: 14px; color: var(--muted);
  line-height: 1.9; max-width: 480px;
}
.divider { width: 40px; height: 1px; background: var(--gold); margin: 0 0 36px; }

/* ── TWO COL ── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

/* ── PHILOSOPHY CARDS ── */
.phil-cards {
  display: grid;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-dim);
  overflow: hidden;
}
.phil-card-top {
  background: var(--bg);
  padding: 40px 32px; text-align: center;
}
.phil-card-bottom {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--gold-dim);
}
.phil-card {
  background: var(--bg);
  padding: 36px 28px; text-align: center;
}
.phil-card .icon { font-size: 22px; margin-bottom: 18px; opacity: 0.7; }
.phil-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400; margin-bottom: 10px;
}
.phil-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-dim);
  overflow: hidden;
  margin-top: 60px;
}
.product-card {
  background: var(--bg);
  padding: 48px 36px;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: background 0.3s;
}
a.product-card:hover { background: var(--surface); }
.product-tag {
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300;
  letter-spacing: 1px; margin-bottom: 14px;
  color: var(--text);
}
.product-desc {
  font-size: 13px; color: var(--muted);
  line-height: 1.8; margin-bottom: 24px; flex: 1;
}
.product-price {
  font-size: 13px; color: var(--gold);
  letter-spacing: 1px;
}
.product-link {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text);
  margin-top: 16px;
}

/* ── WAITLIST ── */
.waitlist-form {
  display: flex; gap: 0; max-width: 460px; margin: 44px auto 0;
}
.waitlist-form input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--border); border-right: none;
  color: var(--text); padding: 14px 20px;
  font-size: 12px; letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
  outline: none;
}
.waitlist-form input::placeholder { color: var(--muted); }
.waitlist-form input:focus { border-color: var(--gold-dim); }
.waitlist-form button {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text); padding: 14px 28px;
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.waitlist-form button:hover { border-color: var(--gold); color: var(--gold); }

/* ── CTA LINK ── */
.cta-link {
  display: inline-block;
  font-size: 12px; letter-spacing: 2px;
  color: var(--text); text-decoration: none;
  transition: color 0.2s;
}
.cta-link:hover { color: var(--gold); }

/* ── BUTTON ── */
.btn {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text); padding: 16px 40px;
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn:hover { border-color: var(--gold); color: var(--gold); }
.btn:disabled, .btn.disabled {
  opacity: 0.4; cursor: not-allowed;
}
.btn:disabled:hover, .btn.disabled:hover {
  border-color: var(--border); color: var(--text);
}

/* ── CONTACT LINK ── */
.contact-link {
  display: inline-block;
  border: 1px solid var(--gold-dim);
  color: var(--text); padding: 14px 36px;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  transition: border-color 0.2s;
}
.contact-link:hover { border-color: var(--gold); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--gold-dim);
  padding: 48px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 300;
  letter-spacing: 4px; text-transform: uppercase;
  text-decoration: none; color: var(--text);
}
.footer-logo span { color: var(--gold); }
.footer-right {
  display: flex; align-items: center; gap: 24px;
}
.footer-email {
  font-size: 11px; color: var(--muted); letter-spacing: 1px;
  text-decoration: none; transition: color 0.2s;
}
.footer-email:hover { color: var(--text); }
.footer-copy { font-size: 11px; color: var(--muted); letter-spacing: 1px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 120px 48px 0;
  font-size: 11px; letter-spacing: 1px; color: var(--muted);
}
.breadcrumb a {
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { color: var(--text); }

/* ── PRODUCT PAGE ── */
.product-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
  padding: 60px 0 100px;
}
.product-image {
  aspect-ratio: 1; background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: var(--gold); opacity: 0.3;
}
.product-details .product-category {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.product-details h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; margin-bottom: 12px;
}
.product-details .price {
  font-size: 14px; color: var(--gold);
  letter-spacing: 1px; margin-bottom: 28px;
}
.product-details .description {
  font-size: 14px; color: var(--muted);
  line-height: 1.9; margin-bottom: 20px;
}
.product-details .drop-info {
  font-size: 12px; color: var(--text);
  letter-spacing: 1px; margin-bottom: 32px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.add-to-cart-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold); padding: 16px 48px;
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, color 0.2s;
}
.add-to-cart-btn:hover {
  background: var(--gold); color: var(--bg);
}

/* ── ACCORDION ── */
.accordion { margin-top: 40px; }
.accordion-item {
  border-top: 1px solid var(--border);
}
.accordion-item:last-child {
  border-bottom: 1px solid var(--border);
}
.accordion-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text);
  background: none; border: none; width: 100%;
  font-family: 'Inter', sans-serif;
}
.accordion-header:hover { color: var(--gold); }
.accordion-icon {
  font-size: 14px; transition: transform 0.3s;
}
.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}
.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-body-inner {
  padding: 0 0 20px;
  font-size: 13px; color: var(--muted); line-height: 1.8;
}
.accordion-item.open .accordion-body {
  max-height: 200px;
}
.back-link {
  display: inline-block; margin-top: 40px;
  font-size: 12px; letter-spacing: 1px;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.back-link:hover { color: var(--text); }

/* ── CART PAGE ── */
.cart-empty {
  text-align: center; padding: 40px 0;
}
.cart-empty p {
  font-size: 14px; color: var(--muted); margin-bottom: 24px;
}
.cart-items { margin-top: 40px; }
.cart-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 300; margin-bottom: 4px;
}
.cart-item-info p {
  font-size: 12px; color: var(--muted);
}
.cart-item-actions {
  display: flex; align-items: center; gap: 24px;
}
.cart-item-price {
  font-size: 13px; color: var(--gold); letter-spacing: 1px;
}
.cart-remove {
  background: none; border: none;
  color: var(--muted); font-size: 11px;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.cart-remove:hover { color: var(--text); }
.cart-summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 32px 0; margin-top: 8px;
  border-top: 1px solid var(--gold-dim);
}
.cart-subtotal-label {
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
}
.cart-subtotal-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300;
  color: var(--gold);
}
.cart-actions {
  display: flex; justify-content: flex-end;
  gap: 16px; margin-top: 24px;
}
.tooltip-wrap { position: relative; display: inline-block; }
.tooltip-wrap .tooltip {
  display: none;
  position: absolute; bottom: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--surface); border: 1px solid var(--border);
  color: var(--muted); font-size: 10px;
  letter-spacing: 1px; padding: 8px 14px;
  white-space: nowrap; margin-bottom: 8px;
}
.tooltip-wrap:hover .tooltip { display: block; }

/* ── PHILOSOPHY PAGE ── */
.philosophy-text {
  max-width: 640px; margin: 0 auto;
  padding: 0 48px;
}
.philosophy-text p {
  font-size: 15px; color: var(--muted);
  line-height: 2; margin-bottom: 28px;
}
.philosophy-pillars {
  margin-top: 80px;
}
.pillar {
  padding: 60px 0;
  border-top: 1px solid var(--gold-dim);
}
.pillar:last-child {
  border-bottom: 1px solid var(--gold-dim);
}
.pillar .icon {
  font-size: 20px; color: var(--gold); opacity: 0.6;
  margin-bottom: 20px;
}
.pillar h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300; margin-bottom: 16px;
}
.pillar p {
  font-size: 14px; color: var(--muted);
  line-height: 1.9; max-width: 540px;
}

/* ── RESPONSIVE ── */
@media(max-width:768px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .container { padding: 0 24px; }
  section { padding: 70px 0; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .product-grid { grid-template-columns: 1fr; }
  .phil-card-bottom { grid-template-columns: 1fr; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; }
  .footer-right { flex-direction: column; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form input { border-right: 1px solid var(--border); border-bottom: none; }
  .product-layout { grid-template-columns: 1fr; gap: 40px; }
  .breadcrumb { padding: 100px 24px 0; }
  .page-hero { padding: 140px 24px 60px; }
  .philosophy-text { padding: 0 24px; }
  .cart-item { flex-direction: column; gap: 16px; align-items: flex-start; }
  .cart-actions { flex-direction: column; }
}
