:root {
  --bg: #f5f0e8;
  --bg-alt: #ede8df;
  --fg: #1a1a1a;
  --fg-muted: #5a5a5a;
  --accent: #1a3a2a;
  --accent-light: #2d5a42;
  --amber: #d4a847;
  --amber-light: #e8c56e;
  --white: #ffffff;
  --border: rgba(26,58,42,0.15);
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── NAVBAR ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--fg);
  text-decoration: none;
}

.site-nav-logo em {
  font-style: italic;
  color: var(--accent);
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav-links a {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav-links a:hover {
  color: var(--fg);
}

.site-nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.2s !important;
}

.site-nav-cta:hover {
  background: var(--accent-light);
  color: var(--white) !important;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg-shape {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(26,58,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
  opacity: 0.6;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 20px;
}

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

.hero-sub {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-desc {
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 4px;
  line-height: 1.4;
  max-width: 90px;
}

.hero-stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Workflow Diagram */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.workflow-diagram {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wd-node {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 10px;
  background: var(--bg);
}

.wd-node.wd-ai {
  border-left: 3px solid var(--amber);
  background: rgba(212,168,71,0.06);
}

.wd-node.wd-action {
  border-left: 3px solid var(--accent);
}

.wd-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.wd-ai .wd-icon { color: var(--amber); }

.wd-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

.wd-desc {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}

.wd-arrow {
  display: flex;
  justify-content: center;
  padding: 4px 0;
}

.hero-proof-note {
  text-align: center;
  font-size: 12px;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── SECTION SHARED ── */
.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0.6;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  max-width: 700px;
  margin-bottom: 48px;
}

/* ── HOW ── */
.how {
  background: var(--accent);
  padding: 100px 0;
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.how .section-label,
.how .section-headline {
  color: var(--bg);
}

.how .section-headline {
  opacity: 0.9;
}

.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--amber);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 10px;
}

.step-body {
  font-size: 14px;
  color: rgba(245,240,232,0.65);
  line-height: 1.65;
}

.how-quote {
  margin-top: 64px;
  border-left: 3px solid var(--amber);
  padding-left: 28px;
}

.how-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  color: var(--bg);
  opacity: 0.85;
  line-height: 1.5;
}

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

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.service-card.sc-featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 4px 24px rgba(26,58,42,0.08);
}

.sc-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
  padding: 4px 10px;
  background: rgba(26,58,42,0.06);
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}

.sc-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}

.sc-price {
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.sc-period {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-muted);
}

.sc-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.sc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}

.sc-features li {
  font-size: 13px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}

.sc-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

.sc-note {
  font-size: 12px;
  color: var(--fg-muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  line-height: 1.5;
}

.services-guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 32px;
}

.sg-icon {
  flex-shrink: 0;
}

.sg-text {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.6;
}

/* ── OUTCOMES ── */
.outcomes {
  padding: 100px 0;
  background: var(--bg);
}

.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.outcome {
  padding: 32px;
  background: var(--bg-alt);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.outcome-hours {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.oh-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.oh-label {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 500;
}

.outcome-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.outcome-body {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.outcome-tools {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.outcomes-meta {
  max-width: 640px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── CLOSING ── */
.closing {
  position: relative;
  padding: 100px 0;
  background: var(--accent);
  overflow: hidden;
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.closing-content {
  max-width: 640px;
}

.closing-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--bg);
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 16px;
  color: rgba(245,240,232,0.7);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-cta-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 24px;
}

.closing-step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cstep {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  color: var(--bg);
}

.cstep-n {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
  flex-shrink: 0;
}

.closing-bg-text {
  position: absolute;
  right: -60px;
  bottom: -60px;
  font-family: var(--font-serif);
  font-size: 200px;
  font-weight: 400;
  color: rgba(245,240,232,0.03);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

/* ── FOOTER ── */
.footer {
  padding: 64px 0 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.footer-brand {
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 8px;
}

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

.footer-links {
  display: flex;
  gap: 80px;
  margin-bottom: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-head {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .step-row {
    grid-template-columns: 1fr 1fr;
  }

  .service-cards,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .site-nav-inner { padding: 12px 24px; }
  .site-nav-links { gap: 16px; }
  .site-nav-links a:not(.site-nav-cta) { display: none; }

  .hero {
    padding: 80px 0 48px;
    min-height: auto;
  }

  .hero-inner,
  .how-inner,
  .services-inner,
  .outcomes-inner,
  .closing-inner,
  .footer-inner {
    padding: 0 24px;
  }

  .hero-stat-row {
    flex-wrap: wrap;
    gap: 24px;
  }

  .step-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .how,
  .services,
  .outcomes,
  .closing {
    padding: 64px 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 24px;
  }
}