:root {
  --bg: #FAF7F2;
  --fg: #1C1917;
  --accent: #B85C38;
  --accent-warm: #E8C5A0;
  --muted: #78716C;
  --surface: #F0EBE3;
  --border: #D6CFC4;
  --ring-dim: rgba(184, 92, 56, 0.15);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Header ─────────────────────────────────── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.header-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 99px;
}

.book-now-btn {
  padding: 8px 18px;
  background: var(--accent);
  color: white;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
}

.book-now-btn:hover { background: var(--accent-hover); }

/* ── Hero ─────────────────────────────────── */
.hero {
  padding: 80px 48px 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

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

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 48px;
  font-weight: 300;
}

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

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* ── Hero Visual ─────────────────────────── */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.ring-stack {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
}

.ring-1 { width: 280px; height: 280px; opacity: 0.25; }
.ring-2 { width: 200px; height: 200px; opacity: 0.4; }
.ring-3 { width: 120px; height: 120px; opacity: 0.65; }

.agent-dot {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.agent-inner {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 50%;
}

.agent-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
  animation: pulse 2.5s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(2.2); opacity: 0; }
}

.visual-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}

/* ── Section shared ─────────────────────── */
.section-header {
  margin-bottom: 56px;
}

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.15;
}

/* ── How It Works ───────────────────────── */
.howitworks {
  padding: 96px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.step { padding: 0; }

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 20px;
}

.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.step-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}

.connector-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

/* ── Capabilities ───────────────────────── */
.capabilities {
  padding: 96px 48px;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.cap-card {
  padding: 40px;
  background: var(--bg);
  transition: background 0.2s;
}

.cap-card:hover { background: var(--surface); }

.cap-icon {
  color: var(--accent);
  margin-bottom: 20px;
  width: 24px;
}

.cap-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

.cap-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── Proof ──────────────────────────────── */
.proof {
  padding: 80px 48px;
  background: var(--fg);
  color: var(--bg);
}

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

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 0.6;
  margin-bottom: 24px;
}

.proof-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 36px;
  color: var(--bg);
}

.proof-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.proof-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.05em;
}

.proof-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.proof-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bg);
}

.proof-context {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.5);
}

/* ── Closing ────────────────────────────── */
.closing {
  padding: 120px 48px;
  text-align: center;
  background: var(--bg);
}

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

.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
}

.closing p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Footer ────────────────────────────── */
.site-footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-links {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 900px) {
  .site-header { padding: 20px 24px; }
  .hero { padding: 56px 24px 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-sub { max-width: 100%; }
  .howitworks, .capabilities { padding: 64px 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .cap-grid { grid-template-columns: 1fr; }
  .proof { padding: 64px 24px; }
  .closing { padding: 80px 24px; }
  .site-footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 1.5rem; }
  .cap-card { padding: 28px; }
}