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

:root {
  --cream: #FAF8F5;
  --green-deep: #1C3A2D;
  --green-mid: #2D5240;
  --gold: #B8965A;
  --gold-light: #D4B97A;
  --text: #1A1A18;
  --text-soft: #5C5C56;
  --border: #E4E0D8;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

/* === TOPBAR === */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  font-weight: 500;
}

/* === HERO === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 48px 80px;
  align-items: center;
  min-height: 90vh;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(28,58,45,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(40px, 4.5vw, 68px);
  color: var(--green-deep);
  margin-bottom: 28px;
  font-weight: 700;
  font-style: italic;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
}

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

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
  max-width: 90px;
}

/* === CONCIERGE WIDGET === */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.concierge-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 24px 64px rgba(28, 58, 45, 0.12);
  overflow: hidden;
}

.widget-header {
  background: var(--green-deep);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.widget-avatar {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-deep);
  flex-shrink: 0;
}

.widget-label {
  font-size: 14px;
  font-weight: 500;
  flex: 1;
}

.widget-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
}

.widget-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.msg {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 85%;
}

.guest-msg {
  background: var(--cream);
  color: var(--text);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.ai-msg {
  background: var(--green-deep);
  color: var(--white);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

/* === FEATURES === */
.features {
  padding: 100px 48px;
  background: var(--white);
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header h2 {
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--green-deep);
  margin-bottom: 16px;
}

.features-header p {
  font-size: 17px;
  color: var(--text-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--cream);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(28, 58, 45, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--green-deep);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 20px;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* === HOW IT WORKS === */
.howitworks {
  padding: 100px 48px;
  background: var(--green-deep);
  color: var(--white);
}

.howitworks-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 48px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 24px;
}

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

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.step h4 {
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  color: var(--white);
}

.step p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

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

/* === OUTCOMES === */
.outcomes {
  padding: 100px 48px;
  background: var(--cream);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.outcome-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}

.outcome-metric {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--green-deep);
  display: block;
  margin-bottom: 12px;
}

.outcome-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 48px 120px;
  background: var(--cream);
}

.manifesto-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-pull {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--green-deep);
  line-height: 1.5;
  margin-bottom: 28px;
  font-style: italic;
}

.manifesto-body {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 20px;
}

.manifesto-closing {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* === FOOTER === */
.site-footer {
  padding: 40px 48px 32px;
  background: var(--green-deep);
  color: var(--white);
}

.footer-top {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.footer-brand .footer-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

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

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: 1fr; gap: 20px; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-wrap: wrap; gap: 32px; }
  .step-connector { display: none; }
  .step { flex: 0 0 calc(50% - 16px); }
}

@media (max-width: 768px) {
  .topbar { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; padding: 60px 24px; min-height: auto; }
  .hero-visual { order: -1; }
  .hero-headline { font-size: 38px; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 26px; }
  .concierge-widget { max-width: 320px; margin: 0 auto; }
  .features, .howitworks, .outcomes, .manifesto { padding: 64px 24px; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 32px 24px 24px; }
}

@media (max-width: 480px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .step { flex: 0 0 100%; }
}