:root {
  --bg: #faf8f4;
  --bg-warm: #f5f0e8;
  --fg: #1a1a18;
  --fg-muted: #6b6760;
  --accent: #c4613a;
  --accent-light: #e8876a;
  --ink: #2c2a27;
  --border: #e0dbd3;
  --surface: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 6px;
}

*, *::before, *::after { 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.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 8vw;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}

.hero-orb-1 {
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, #f0c9b4 0%, transparent 70%);
  top: -15%;
  right: -10%;
}

.hero-orb-2 {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, #d4a882 0%, transparent 70%);
  bottom: 5%;
  left: -5%;
}

.hero-orb-3 {
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, #e8c9a8 0%, transparent 70%);
  top: 30%;
  left: 35%;
}

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

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}

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

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 400;
  color: var(--fg-muted);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}

/* MANIFESTO */
.manifesto {
  background: var(--bg-warm);
  padding: 100px 8vw;
  border-top: 1px solid var(--border);
}

.manifesto-inner { max-width: 840px; }

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

.manifesto-body p {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 20px;
}

.manifesto-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.manifesto-stat {
  padding: 36px 32px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* SERVICES */
.services {
  padding: 100px 8vw;
  background: var(--bg);
}

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

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

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 56px;
}

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

.service-card {
  padding: 48px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

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

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-warm);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PROCESS */
.process {
  background: var(--ink);
  padding: 100px 8vw;
}

.process-inner { max-width: 1000px; }

.process .section-label { color: var(--accent-light); }

.process .section-heading { color: #faf8f4; }

.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 64px;
}

.step {
  flex: 1;
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: #faf8f4;
  margin-bottom: 12px;
}

.step-body p {
  font-size: 14px;
  color: rgba(250,248,244,0.6);
  line-height: 1.65;
}

.step-connector {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

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

.closing-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 32px;
}

.closing-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.closing-cta {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 36px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.1s;
}
.closing-cta:hover { background: #b85530; transform: translateY(-2px); }

/* FOOTER */
footer {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  padding: 40px 8vw;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
}

.footer-brand { display: flex; flex-direction: column; gap: 4px; }

.footer-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
}

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

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 60px 6vw; min-height: 80vh; }
  .manifesto { padding: 72px 6vw; }
  .services { padding: 72px 6vw; }
  .process { padding: 72px 6vw; }
  .closing { padding: 80px 6vw; }

  .manifesto-stat-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 2px; }
  .step-connector { width: 1px; height: 24px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 52px; }
  .closing-headline { font-size: 40px; }
  .service-card { padding: 32px 24px; }
  .step { padding: 28px 24px; }
}
