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

:root {
  --bg: #111110;
  --bg-warm: #F5F4F0;
  --amber: #FF9500;
  --amber-dim: rgba(255, 149, 0, 0.10);
  --text: #F5F4F0;
  --text-dark: #111110;
  --text-muted: rgba(245, 244, 240, 0.55);
  --text-warm: #2A2A28;
  --text-warm-muted: #6B6B68;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

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

/* === CONTAINER === */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,149,0,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-geo {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  background: radial-gradient(circle at 60% 40%, rgba(255,149,0,0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-geo::before {
  content: '';
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(255,149,0,0.25);
  border-radius: 50%;
}

.hero-geo::after {
  content: '';
  position: absolute;
  inset: 120px;
  border: 1px solid rgba(255,149,0,0.15);
  border-radius: 50%;
}

.hero .container { position: relative; z-index: 1; }

.hero-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1px solid rgba(255,149,0,0.4);
  background: var(--amber-dim);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--text);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 48px;
}

.hero-cta-bar {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-line {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,149,0,0.7);
  letter-spacing: 0.04em;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: var(--amber);
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}

.btn-hero-cta:hover { background: #FFAD33; }

/* === PROOF STRIP === */
.proof {
  background: #0D0D0C;
  padding: 64px 0;
  border-top: 1px solid rgba(255,149,0,0.15);
  border-bottom: 1px solid rgba(255,149,0,0.15);
}

.proof-stats {
  display: flex;
  align-items: center;
}

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

.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 220px;
}

.stat-divider {
  width: 1px;
  height: 64px;
  background: rgba(255,149,0,0.2);
  flex-shrink: 0;
}

/* === SERVICES === */
.services {
  background: var(--bg-warm);
  padding: 100px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #D8D7D2;
}

.service-card {
  background: #FAFAF8;
  padding: 44px 40px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.service-card:hover {
  border-left-color: var(--amber);
  background: #F5F4EE;
}

.service-icon { margin-bottom: 20px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-warm-muted);
  margin-bottom: 24px;
}

.service-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--amber);
}

.service-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-warm-muted);
  font-family: var(--font-body);
}

/* === MANIFESTO === */
.manifesto {
  background: var(--bg);
  padding: 100px 0;
  position: relative;
}

.manifesto-stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--amber);
}

.manifesto-inner {
  padding-left: 64px;
}

.manifesto-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  border: none;
  padding: 0;
}

.manifesto-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 620px;
}

/* === CLOSING === */
.closing {
  background: #0A0A09;
  padding: 100px 0;
  border-top: 1px solid rgba(255,149,0,0.1);
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 56px;
}

.closing-stats {
  display: flex;
  gap: 48px;
}

.c-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.c-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.c-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === FOOTER === */
.footer {
  background: var(--bg);
  padding: 48px 0;
  border-top: 1px solid rgba(255,149,0,0.1);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-location {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(245,244,240,0.3);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .proof-stats { flex-direction: column; gap: 36px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .manifesto-inner { padding-left: 28px; }
  .closing-stats { flex-direction: column; gap: 24px; }
  .footer-inner { flex-direction: column; gap: 24px; }
}

@media (max-width: 480px) {
  .hero { min-height: 80vh; }
  .hero-geo { display: none; }
}