:root {
  --bg: #0f1c2e;
  --bg-alt: #0a1220;
  --fg: #f0ece4;
  --fg-muted: #8a9ab5;
  --accent: #c9a84c;
  --accent-dim: #a08840;
  --surface: #15233d;
  --surface-2: #1c2e4f;
  --border: rgba(201,168,76,0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15,28,46,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 64px 80px;
  gap: 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 600px; }
.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.hero-meta-divider { color: var(--accent); }

/* Hero visual — cinematic frame */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  overflow: hidden;
}
.hero-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
  z-index: 2;
}
.hero-frame-inner {
  position: absolute;
  inset: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
}
.frame-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.5;
}
.frame-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}
.frame-line {
  height: 1px;
  background: var(--border);
  margin: 20px auto;
  width: 80%;
}
.frame-text {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* ── STATS ── */
.stats {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 64px;
}
.stats-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.stat { padding: 0 40px 0 0; }
.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0 40px 0 0;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-plus, .stat-unit {
  font-size: 32px;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 6px;
}
.stat-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: 100px 64px;
  background: var(--bg);
}
.philosophy-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.philosophy-quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 24px;
}
.philosophy-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: 32px;
}
.philosophy-attr {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── SERVICES ── */
.services {
  padding: 100px 64px;
  background: var(--bg-alt);
}
.services-header {
  max-width: 640px;
  margin-bottom: 64px;
}
.services-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.services-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
}
.services-lead {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--accent-dim); }
.service-card-featured {
  border-color: var(--accent-dim);
  position: relative;
}
.service-card-featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: var(--bg);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
}
.service-icon {
  color: var(--accent);
  margin-bottom: 24px;
}
.service-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.service-price {
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}
.service-per {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}
.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── PROCESS ── */
.process {
  padding: 100px 64px;
  background: var(--bg);
}
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-header { margin-bottom: 72px; }
.process-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.process-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--fg);
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step { padding-right: 32px; }
.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 28px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 16px;
}
.step-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 64px 100px;
  background: var(--bg-alt);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.1;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}
.closing-rule {
  width: 64px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto;
}

/* ── FOOTER ── */
.footer {
  padding: 48px 64px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-built {
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 64px;
    text-align: center;
  }
  .hero-meta { justify-content: center; }
  .hero-visual { display: none; }
  .stats { padding: 48px 24px; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .philosophy { padding: 64px 24px; }
  .philosophy-text { font-size: 18px; }
  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .process { padding: 64px 24px; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .step-connector { display: none; }
  .step { padding-right: 0; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .stat-number { font-size: 40px; }
  .stat { padding: 0; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}