/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #111118;
  --bg-2: #18181F;
  --fg: #F0EBE1;
  --fg-dim: #A09888;
  --accent: #C9A96E;
  --accent-dim: #8A7045;
  --border: rgba(201,169,110,0.18);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 85% 50%, rgba(201,169,110,0.06) 0%, transparent 70%),
    var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(201,169,110,0.02) 80px,
    rgba(201,169,110,0.02) 81px
  );
  pointer-events: none;
}

.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-text { max-width: 520px; }

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.85;
  color: var(--fg);
  margin-bottom: 12px;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

.hero-body {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.8;
  max-width: 400px;
  font-weight: 300;
}

/* Hero Visual — Geometric Gem */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-gem {
  position: relative;
  width: 380px;
  height: 380px;
}

.gem-facet {
  position: absolute;
  border: 1px solid rgba(201,169,110,0.4);
}

.facet-1 {
  width: 260px; height: 260px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: linear-gradient(135deg, rgba(201,169,110,0.04) 0%, rgba(201,169,110,0.01) 100%);
  animation: facet-spin 20s linear infinite;
}

.facet-2 {
  width: 180px; height: 180px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(22.5deg);
  border-color: rgba(201,169,110,0.25);
  background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, transparent 100%);
  animation: facet-spin 14s linear infinite reverse;
}

.facet-3 {
  width: 100px; height: 100px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  border-color: rgba(201,169,110,0.15);
  background: rgba(201,169,110,0.05);
  animation: facet-spin 8s linear infinite;
}

.gem-shimmer {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 20px; height: 20px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow:
    0 0 20px rgba(201,169,110,0.8),
    0 0 60px rgba(201,169,110,0.4),
    0 0 120px rgba(201,169,110,0.2);
  animation: shimmer-pulse 3s ease-in-out infinite;
}

@keyframes facet-spin {
  from { transform: translate(-50%, -50%) rotate(45deg); }
  to { transform: translate(-50%, -50%) rotate(405deg); }
}

@keyframes shimmer-pulse {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* === MANIFESTO === */
.manifesto {
  background: var(--bg-2);
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.manifesto-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 40px;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: var(--fg);
  max-width: 800px;
  margin-bottom: 48px;
  border: none;
  padding: 0;
}

.manifesto-body {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.9;
  max-width: 640px;
  font-weight: 300;
  margin-bottom: 80px;
}

.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 60px;
}

.pillar { padding: 0; }

.pillar-icon {
  margin-bottom: 20px;
  width: 28px;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--fg);
}

.pillar p {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.7;
  font-weight: 300;
}

/* === CATEGORIES === */
.categories {
  padding: 120px 48px;
  background: var(--bg);
}

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

.section-header {
  margin-bottom: 64px;
}

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-dim);
  display: block;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--fg);
}

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

.category-card {
  background: var(--bg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.category-card:hover::before { opacity: 1; }

.cat-visual {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

/* Chain shape */
.cat-shape-chain {
  width: 80px; height: 80px;
  border: 1.5px solid var(--accent-dim);
  border-radius: 50%;
  position: relative;
}
.cat-shape-chain::before {
  content: '';
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 20px;
  border: 1.5px solid var(--accent-dim);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}

/* Ring shape */
.cat-shape-ring {
  width: 70px; height: 70px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: relative;
}
.cat-shape-ring::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  border: 1px solid var(--accent-dim);
  border-radius: 50%;
}

/* Bracelet shape */
.cat-shape-bracelet {
  width: 100px; height: 30px;
  border: 1.5px solid var(--accent-dim);
  border-radius: 30px;
}

.cat-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--fg);
}

.cat-info p {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}

.cat-price {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.category-note {
  margin-top: 40px;
  text-align: center;
}

.category-note p {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--fg-dim);
}

/* === PROCESS === */
.process {
  padding: 120px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

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

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 64px;
  margin-top: 60px;
}

.step {
  flex: 1;
  padding: 0 40px 0 0;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 28px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.6;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--fg);
}

.step p {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.75;
  font-weight: 300;
}

.process-sub {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  max-width: 600px;
}

.process-sub p {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--fg-dim);
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  padding: 100px 48px;
  background: var(--bg);
}

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

.closing-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
  margin-bottom: 48px;
}

.closing-rule:last-child { margin-bottom: 0; margin-top: 48px; }

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--fg);
  letter-spacing: 0.01em;
}

/* === FOOTER === */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 48px 40px;
}

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

.footer-brand { margin-bottom: 60px; }

.footer-logo {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--fg);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 12px;
  color: var(--fg-dim);
  font-weight: 300;
  letter-spacing: 0.06em;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--fg-dim);
  text-decoration: none;
  margin-bottom: 12px;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--fg); }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 11px;
  color: var(--fg-dim);
  font-weight: 300;
  opacity: 0.6;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 32px;
    gap: 40px;
  }

  .hero-visual { display: none; }

  .hero-headline { font-size: 80px; }

  .manifesto-pillars {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    gap: 40px;
  }

  .step-connector { display: none; }

  .step { padding: 0; }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero, .manifesto, .categories, .process, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-links { grid-template-columns: 1fr; }

  .section-header { margin-bottom: 40px; }
}
