:root {
  --bg: #0c0a0e;
  --bg-elevated: #161319;
  --bg-card: #1c1820;
  --fg: #f0ece4;
  --fg-muted: #9b9494;
  --accent: #c9a84c;
  --accent-soft: rgba(201, 168, 76, 0.15);
  --accent-glow: rgba(201, 168, 76, 0.4);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --radius: 12px;
}

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

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

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

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.hero-bg-accent {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.35;
}

.hero-label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Showcase cards */
.hero-showcase {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.showcase-card {
  width: 160px;
  height: 200px;
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.sc-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
  z-index: 1;
}

.sc-visual {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-soft);
  position: relative;
}

.sc-glow {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent);
  animation: pulse 3s ease-in-out infinite;
}

.sc-1 .sc-glow { animation-delay: 0s; }
.sc-2 .sc-glow { animation-delay: 1s; }
.sc-3 .sc-glow { animation-delay: 2s; }

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

/* ========== SERVICES ========== */
.services {
  background: var(--bg-elevated);
  padding: var(--space-xl) var(--space-md);
}

.services-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.service-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: var(--space-md);
  transition: border-color 0.3s ease;
}

.service-item:hover {
  border-color: var(--accent);
}

.service-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.service-item p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ========== PROCESS / PRICING ========== */
.process {
  padding: var(--space-xl) var(--space-md);
}

.process-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.process-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.process-text p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.process-text strong {
  color: var(--accent);
}

.process-stats {
  display: flex;
  gap: var(--space-md);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

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

.process-tiers {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.tier {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: var(--space-sm) var(--space-md);
  transition: border-color 0.3s ease;
}

.tier:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.tier-featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card), rgba(201, 168, 76, 0.08));
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.tier-price {
  display: block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.tier p {
  color: var(--fg-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ========== CLOSING ========== */
.closing {
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.2;
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}

.closing h2 em {
  font-style: italic;
  color: var(--accent);
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .process-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .hero-showcase {
    gap: var(--space-xs);
  }

  .showcase-card {
    width: 130px;
    height: 170px;
  }

  .process-stats {
    gap: var(--space-sm);
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .hero {
    padding: var(--space-lg) var(--space-sm);
  }

  .showcase-card {
    width: 100px;
    height: 140px;
  }

  .process-stats {
    flex-direction: column;
    gap: var(--space-xs);
  }
}