/* Base */
:root {
  --bg: #F7F3EC;
  --surface: #FFFFFF;
  --fg: #1C3D2A;
  --fg-mid: #3D5E47;
  --fg-light: #6B8C78;
  --accent: #D4943A;
  --accent-dark: #B87B2A;
  --border: #E2D9CC;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  font-size: 18px;
  color: var(--accent);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-light);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-mid);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-link:hover {
  color: var(--fg);
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  background: var(--accent);
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}

.nav-cta:hover {
  background: var(--accent-dark);
}

.btn-primary {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  background: var(--accent);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.hero-cta-row {
  margin-bottom: 28px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 88vh;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 48px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-mid);
  max-width: 440px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 13px;
  color: var(--fg-light);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
  background: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
}

.hero-orb-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #2a5a3a 0%, transparent 70%);
  top: -60px;
  right: -60px;
  opacity: 0.8;
}

.hero-orb-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #D4943A 0%, transparent 70%);
  bottom: 40px;
  left: -40px;
  opacity: 0.6;
}

.hero-plate {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(212, 148, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-plate-inner {
  text-align: center;
  padding: 20px;
}

.hero-plate-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: #F7F3EC;
  line-height: 1.35;
}

.hero-badge {
  position: absolute;
  bottom: 60px;
  right: 40px;
  background: var(--accent);
  color: var(--fg);
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
  z-index: 3;
}

.hero-badge-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.hero-badge-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  line-height: 1.4;
}

/* Proof Section */
.proof {
  background: var(--fg);
  color: #F7F3EC;
  padding: 72px 48px;
}

.proof-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 56px;
}

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

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

.proof-divider {
  width: 1px;
  background: rgba(247, 243, 236, 0.15);
}

.proof-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.proof-label {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(247, 243, 236, 0.7);
  font-weight: 300;
}

.proof-quote {
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.proof-quote blockquote {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  line-height: 1.55;
  color: #F7F3EC;
  margin-bottom: 12px;
}

.proof-quote cite {
  font-size: 13px;
  color: rgba(247, 243, 236, 0.5);
  font-style: normal;
  font-weight: 400;
}

/* Features */
.features {
  padding: 96px 48px;
  background: var(--bg);
}

.features-header {
  margin-bottom: 64px;
  max-width: 560px;
}

.features-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.features-sub {
  font-size: 17px;
  color: var(--fg-mid);
  line-height: 1.6;
  font-weight: 300;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature-card {
  background: var(--surface);
  padding: 48px 40px;
}

.feature-icon {
  margin-bottom: 24px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-mid);
  font-weight: 300;
}

/* Process */
.process {
  padding: 96px 48px;
  background: var(--surface);
}

.process-header {
  margin-bottom: 64px;
  max-width: 480px;
}

.process-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.process-sub {
  font-size: 17px;
  color: var(--fg-mid);
  line-height: 1.6;
  font-weight: 300;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.process-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--border);
  letter-spacing: -0.03em;
  line-height: 1;
  min-width: 72px;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.process-step-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-mid);
  font-weight: 300;
  max-width: 600px;
}

/* Closing */
.closing {
  background: var(--fg);
  color: #F7F3EC;
  padding: 112px 48px;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-ornament {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 32px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: #F7F3EC;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 32px;
}

.closing-body {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(247, 243, 236, 0.72);
  font-weight: 300;
  margin-bottom: 20px;
}

.closing-body:last-child {
  margin-bottom: 0;
}

/* Footer */
.footer {
  background: #152E20;
  color: rgba(247, 243, 236, 0.5);
  padding: 48px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-mark {
  font-size: 16px;
  color: var(--accent);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #F7F3EC;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(247, 243, 236, 0.5);
  margin-bottom: 8px;
}

.footer-note {
  font-size: 13px;
  color: rgba(247, 243, 236, 0.3);
  font-weight: 300;
}

/* Responsive */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content { padding: 56px 24px 40px; }
  .hero-visual {
    min-height: 320px;
    order: -1;
  }
  .hero-headline { font-size: 44px; }
  .proof { padding: 56px 24px; }
  .proof-stats {
    flex-direction: column;
    gap: 32px;
  }
  .proof-divider { display: none; }
  .proof-stat { padding: 0; }
  .proof-num { font-size: 44px; }
  .features { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 36px 24px; }
  .process { padding: 64px 24px; }
  .process-step { gap: 24px; }
  .process-num { font-size: 40px; min-width: 48px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 36px 24px; }
}