:root {
  --bg: #FAF8F5;
  --bg-warm: #F3EDE6;
  --fg: #2C2825;
  --fg-muted: #6B6560;
  --accent: #B8977A;
  --accent-deep: #8C7259;
  --border: #E8E0D8;
  --card-bg: #FFFFFF;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 80px 80px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 60px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.eyebrow-line {
  width: 28px;
  height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}
.terrain-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0.25;
}
.ring-1 { width: 200px; height: 200px; animation: pulse 6s ease-in-out infinite; }
.ring-2 { width: 300px; height: 300px; animation: pulse 6s ease-in-out infinite 1s; }
.ring-3 { width: 400px; height: 400px; animation: pulse 6s ease-in-out infinite 2s; }
.terrain-center {
  position: relative;
  z-index: 1;
}
@keyframes pulse {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.03); }
}

/* Why */
.why {
  background: var(--bg-warm);
  padding: 100px 80px;
}
.why-inner { max-width: 1100px; margin: 0 auto; }
.why-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.why-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 60px;
  letter-spacing: -0.02em;
  max-width: 560px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}
.why-icon {
  margin-bottom: 20px;
}
.why-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Journey */
.journey {
  padding: 100px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.journey-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.journey-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}
.journey-path {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 80px;
}
.path-node {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.node-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.node-dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}
.path-line {
  width: 2px;
  height: 48px;
  background: var(--border);
  margin-left: 9px;
}
.node-content {
  padding-bottom: 12px;
}
.node-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.node-content p {
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 480px;
}
.journey-different { margin-top: 20px; }
.diff-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.diff-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.diff-item {
  display: flex;
  gap: 20px;
}
.diff-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.diff-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.diff-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Closing */
.closing {
  background: var(--fg);
  color: #FAF8F5;
  padding: 100px 80px;
}
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: #FAF8F5;
  margin-bottom: 40px;
  opacity: 0.9;
}
.closing-body {
  font-size: 16px;
  color: rgba(250,248,245,0.65);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 80px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 300px;
  text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 32px 60px;
    gap: 48px;
  }
  .hero-visual { display: none; }
  .why { padding: 80px 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .journey { padding: 80px 32px; }
  .diff-items { grid-template-columns: 1fr; }
  .closing { padding: 80px 32px; }
  .footer { padding: 32px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-note { text-align: center; max-width: 100%; }
}