/* Veinwork — Wire-Wrapped Crystal Jewelry */
:root {
  --bg: #0f1a12;
  --bg-alt: #131f17;
  --fg: #e8e4d9;
  --fg-muted: #a09a8c;
  --accent: #c9a84c;
  --accent-dim: rgba(201, 168, 76, 0.15);
  --green-deep: #1a3a2a;
  --green-mid: #2d5a3d;
  --border: rgba(201, 168, 76, 0.18);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 8vw;
  gap: 4vw;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(45, 90, 61, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(26, 58, 42, 0.4) 0%, transparent 50%),
    var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(201,168,76,0.04) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}

.hero-lede {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 420px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.stat { display: flex; flex-direction: column; gap: 0.2rem; }

.stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-crystal-display {
  position: relative;
  width: 280px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crystal-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

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

.crystal-icon {
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.crystal-icon svg { width: 120px; height: 160px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* SECTION COMMONS */
.section-inner { padding: 7rem 8vw; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 3.5rem;
}

/* PROCESS */
.process { background: var(--bg-alt); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.process-step { position: relative; }

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.8rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* SIGNATURE */
.signature { background: var(--bg); }

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.signature-item { text-align: left; }

.signature-visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.signature-visual svg { width: 80px; height: 120px; }

.signature-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.6rem;
}

.signature-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.signature-custom {
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem 2.5rem;
  background: var(--bg-alt);
}

.custom-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.custom-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.custom-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.4rem;
}

.custom-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* PHILOSOPHY */
.philosophy {
  background: var(--green-deep);
  padding: 7rem 8vw;
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(201,168,76,0.03) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.philosophy-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.philosophy-text {
  font-size: 0.9rem;
  color: rgba(232, 228, 217, 0.7);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* CLOSING */
.closing {
  background: var(--bg);
  padding: 8rem 8vw;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* FOOTER */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 3rem 8vw;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 0.4rem; }

.footer-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer-meta { text-align: right; }

.footer-location {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 6rem 6vw 4rem; text-align: left; }
  .hero-visual { display: none; }
  .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .signature-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { flex-direction: column; }
  .footer-meta { text-align: left; }
  .section-inner { padding: 5rem 6vw; }
  .philosophy { padding: 5rem 6vw; }
  .closing { padding: 5rem 6vw; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1.5rem; }
  .hero-headline { font-size: 2.8rem; }
  .closing-headline { font-size: 2.2rem; }
}