:root {
  --bg: #FEFCF3;
  --bg-alt: #F5EFE0;
  --text: #1C1917;
  --text-muted: #78716C;
  --accent: #D97706;
  --accent-light: #FEF3C7;
  --border: #E7E0D4;
  --card-bg: #FFF;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
}

/* NAV */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.nav-tagline {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
}
.nav-cta {
  margin-left: auto;
  padding: 8px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: #B45309; }

/* HERO */
.hero {
  padding: 80px 0 72px;
}
.hero-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 340px;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 32px;
  max-width: 380px;
}
.hero-card-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
}
.hero-card-attr {
  font-size: 13px;
  color: var(--text-muted);
}

/* SECTION LABEL */
.section-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 32px;
}

/* PROBLEM */
.problem {
  background: var(--text);
  padding: 96px 0;
}
.problem-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.problem .section-label { color: #A8A29E; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
.problem-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.problem-icon {
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  font-family: monospace;
}
.problem-item p {
  font-size: 16px;
  color: #D6D3D1;
  line-height: 1.6;
}
.problem-statement {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  color: #F5F5F4;
  border-top: 1px solid #444;
  padding-top: 48px;
  max-width: 700px;
}

/* HOW */
.how { padding: 96px 0; }
.how-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.how-step:first-child { border-top: 1px solid var(--border); }
.how-step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  padding-top: 4px;
}
.how-step-body h3 {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 10px;
}
.how-step-body p {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 300;
}

/* WHO */
.who { background: var(--bg-alt); padding: 96px 0; }
.who-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.who-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}
.who-card h3 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
}
.who-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.who-note {
  font-size: 13px;
  color: var(--text-muted);
  border-left: 3px solid var(--border);
  padding-left: 16px;
  max-width: 540px;
}

/* WHAT */
.what { padding: 96px 0; }
.what-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.what-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px 32px; }
.what-item {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.what-item h4 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.what-item p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
}

/* MANIFESTO */
.manifesto {
  background: var(--accent);
  padding: 96px 24px;
  text-align: center;
}
.manifesto-inner { max-width: 760px; margin: 0 auto; }
.manifesto-statement {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 600;
  color: #FFF;
  line-height: 1.3;
  margin-bottom: 20px;
}
.manifesto-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}

/* FOOTER */
.footer {
  background: var(--text);
  padding: 56px 0;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-brand { margin-bottom: 16px; }
.footer-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #F5F5F4;
  display: block;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 14px;
  color: #A8A29E;
}
.footer-note {
  font-size: 13px;
  color: #78716C;
  border-top: 1px solid #292524;
  padding-top: 24px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-card { max-width: 100%; }
  .problem-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .what-grid { grid-template-columns: 1fr 1fr; }
  .how-step { grid-template-columns: 56px 1fr; gap: 16px; }
  .hero { padding: 56px 0 48px; }
  .problem, .how, .who, .what { padding: 64px 0; }
}
/* BOOKING PAGE */
.book-page {
  min-height: calc(100vh - 73px);
  display: flex;
  flex-direction: column;
}
.book-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 24px 80px;
  width: 100%;
  flex: 1;
}
.book-header {
  max-width: 600px;
  margin-bottom: 56px;
}
.book-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.book-headline {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.book-desc {
  font-size: 17px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.book-pricing {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}
.pricing-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 16px;
}
.pricing-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-unit {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 32px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.pricing-features li {
  font-size: 15px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 300;
}
.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-note {
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-weight: 300;
  line-height: 1.6;
}
.book-cta-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 12px;
}
.book-cta-btn:hover { background: #B45309; }
.book-secondary-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.book-secondary-btn:hover {
  border-color: var(--text-muted);
  color: var(--text);
}
.book-schedule h2,
.book-form-section h2 {
  font-size: 26px;
  margin-bottom: 8px;
}
.book-schedule > p,
.book-form-section > p {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.6;
}
.calendly-embed {
  border-radius: 12px;
  overflow: hidden;
  min-height: 700px;
}
.calendly-inline-widget {
  min-width: 100%;
  min-height: 700px;
}
.book-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 400;
}
.book-divider::before,
.book-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.book-form-section {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
  box-sizing: border-box;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  width: 100%;
  padding: 15px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: #B45309; }
.form-success {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .what-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .book-pricing, .book-form-section { padding: 28px; }
}