:root {
  --bg: #faf8f4;
  --bg-alt: #f0ece4;
  --fg: #1a1a0e;
  --fg-muted: #6b6657;
  --accent: #c8a96e;
  --accent-dark: #a8893d;
  --accent-light: #e8d5a8;
  --font-display: 'Cormorant Garant', 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(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  border-bottom: 1px solid rgba(200,169,110,0.2);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--fg);
}
.nav-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
}

/* ── HERO ── */
.hero {
  padding: 100px 60px 80px;
  max-width: 900px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.eyebrow-text {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent-dark);
}
.hero-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--fg);
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(200,169,110,0.3);
}
.hero-ornament { margin-top: 8px; }

/* ── SECTION LABEL ── */
.section-label {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ── PILLARS ── */
.pillars {
  background: var(--bg-alt);
  padding: 90px 60px;
  border-top: 1px solid rgba(200,169,110,0.15);
  border-bottom: 1px solid rgba(200,169,110,0.15);
}
.pillars-header { margin-bottom: 60px; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 900px;
}
.pillar { display: flex; flex-direction: column; }
.pillar-icon { margin-bottom: 20px; }
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 10px;
}
.pillar-text {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── COLLECTION ── */
.collection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 60px;
  max-width: 1100px;
  align-items: center;
}
.collection-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--fg);
}
.collection-headline em { font-style: italic; color: var(--accent-dark); }
.collection-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.collection-cuts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.cut-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(200,169,110,0.4);
  color: var(--fg-muted);
  border-radius: 2px;
}
.collection-meta { display: flex; flex-direction: column; gap: 4px; }
.price-note { font-size: 0.95rem; color: var(--fg); }
.metal-note { font-size: 0.8rem; color: var(--fg-muted); }

/* Ring visual */
.ring-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ring-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200,169,110,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.ring-placeholder {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring-caption {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

/* ── CRAFT ── */
.craft {
  background: var(--bg-alt);
  padding: 100px 60px;
  border-top: 1px solid rgba(200,169,110,0.15);
}
.craft-inner {
  max-width: 900px;
}
.craft-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--fg);
}
.craft-headline em { font-style: italic; color: var(--accent-dark); }
.craft-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 56px;
  max-width: 500px;
}
.craft-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step { display: flex; flex-direction: column; }
.step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--accent-light);
  margin-bottom: 12px;
}
.step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 8px;
}
.step p { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.5; }

/* ── CLOSING ── */
.closing {
  padding: 100px 60px 80px;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 32px;
}
.closing-rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 28px;
}
.closing-body {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 60px;
  border-top: 1px solid rgba(200,169,110,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--fg);
}
.footer-tagline { font-size: 0.72rem; color: var(--fg-muted); letter-spacing: 0.05em; }
.footer-links { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--fg-muted); }
.link-sep { color: rgba(200,169,110,0.4); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 50px; }
  .pillars { padding: 60px 24px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 36px; }
  .collection { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; }
  .collection-right { order: -1; }
  .ring-placeholder { width: 200px; height: 200px; }
  .craft { padding: 60px 24px; }
  .craft-steps { grid-template-columns: 1fr 1fr; }
  .closing { padding: 60px 24px 40px; }
  .footer { padding: 32px 24px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .craft-steps { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.8rem; }
}