:root {
  --bg: #0c0c0c;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --accent: #c8924a;
  --accent-dim: rgba(200, 146, 74, 0.15);
  --text: #f0ece4;
  --text-muted: rgba(240, 236, 228, 0.55);
  --text-dim: rgba(240, 236, 228, 0.3);
  --border: rgba(240, 236, 228, 0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1100px;
  --pad-x: clamp(24px, 5vw, 64px);
}

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

html { scroll-behavior: smooth; }

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

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text);
}
.nav-tagline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 80px var(--pad-x);
  overflow: hidden;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 40%, rgba(200, 146, 74, 0.07) 0%, transparent 70%),
              radial-gradient(ellipse 50% 80% at 10% 80%, rgba(200, 146, 74, 0.04) 0%, transparent 60%);
}
.hero-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 79px, var(--border) 79px, var(--border) 80px);
  opacity: 0.4;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  border: 1px solid var(--accent-dim);
  padding: 6px 14px;
  border-radius: 2px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-pillars {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}
.pillar-icon { color: var(--accent); display: flex; }
.pillar-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}
.hero-accent-shape {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  border: 1px solid var(--border);
  border-radius: 50%;
  opacity: 0.4;
}
.hero-accent-shape::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid var(--border);
  border-radius: 50%;
  opacity: 0.6;
}
.hero-accent-shape::after {
  content: '';
  position: absolute;
  inset: 65px;
  border: 1px solid rgba(200, 146, 74, 0.2);
  border-radius: 50%;
}

/* Section shared */
.section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}

/* Services */
.services {
  padding: 100px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.services-header { margin-bottom: 64px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
}
.service-card {
  background: var(--surface);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: rgba(200, 146, 74, 0.3); }
.service-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.service-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Showcase */
.showcase {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.showcase-inner {
  padding: 100px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.showcase-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 56px;
}
.showcase-headline em { font-style: italic; color: var(--accent); }
.showcase-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.stat {}
.stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.showcase-visual { margin-top: 40px; }
.showcase-frame {
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.frame-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.frame-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.frame-label {
  font-size: 11px;
  color: var(--text-dim);
  margin-left: 8px;
  font-family: monospace;
}
.frame-content {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}
.frame-scene {
  text-align: center;
}
.scene-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.scene-sub {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.frame-play {
  position: absolute;
  z-index: 2;
}
.frame-scene.scene-2 {
  position: absolute;
  bottom: 24px;
  right: 24px;
  text-align: right;
}

/* Pricing */
.pricing {
  padding: 100px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.pricing-header { margin-bottom: 64px; text-align: center; }
.pricing-sub {
  max-width: 500px;
  margin: 16px auto 0;
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 300;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s;
}
.price-card:hover { border-color: rgba(240, 236, 228, 0.2); }
.price-card--featured {
  border-color: rgba(200, 146, 74, 0.4);
  background: linear-gradient(180deg, rgba(200, 146, 74, 0.05) 0%, var(--surface) 100%);
}
.price-card--featured:hover { border-color: rgba(200, 146, 74, 0.6); }
.price-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0c0c0c;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 4px 4px;
}
.price-tier {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.price-period {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
}
.price-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 300;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  font-weight: 300;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}
.price-card--featured .price-features li::before { opacity: 1; }
.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 300;
}

/* Closing */
.closing {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.closing-inner {
  padding: 100px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}
.closing-headline em { font-style: italic; color: var(--accent); }
.closing-sub {
  max-width: 520px;
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 48px;
}
.cta-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--text-muted);
}

/* Footer */
.footer {
  padding: 48px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}
.footer-rule {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 24px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
  .hero { min-height: 70vh; padding: 60px var(--pad-x); }
  .hero-accent-shape { display: none; }
  .hero-pillars { gap: 12px; }
  .pillar-divider { display: none; }
  .showcase-stats { gap: 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .price-amount { font-size: 36px; }
  .closing-headline { font-size: 32px; }
}