:root {
  --bg: #F5EFE0;
  --fg: #0F3B47;
  --fg-muted: #5A7A84;
  --accent: #D47B1A;
  --accent-light: rgba(212, 123, 26, 0.12);
  --surface: #FFFFFF;
  --border: rgba(15, 59, 71, 0.12);
  --card-shadow: 0 2px 24px rgba(15, 59, 71, 0.07), 0 1px 4px rgba(15, 59, 71, 0.04);
  --radius: 12px;
  --radius-sm: 8px;
}

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

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

/* ── SITE NAV ── */
.site-nav {
  background: var(--fg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.15s;
}
.site-nav-brand:hover { opacity: 1; }
.site-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.site-nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
@media (max-width: 640px) {
  .site-nav-inner { padding: 0 20px; }
  .site-nav-brand { font-size: 13px; }
  .site-nav-links { gap: 0; }
  .site-nav-link { padding: 5px 8px; font-size: 12px; }
}

/* ── HERO ── */
.hero {
  background: var(--fg);
  color: #fff;
  padding: 80px 0 72px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.eyebrow-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D47B1A;
  background: rgba(212, 123, 26, 0.15);
  border: 1px solid rgba(212, 123, 26, 0.3);
  padding: 4px 10px;
  border-radius: 20px;
}
.eyebrow-sep { color: rgba(255,255,255,0.25); }
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.meta-dot { color: rgba(255,255,255,0.2); }

/* Hero CTA */
.hero-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: 0.01em;
  margin-top: 8px;
}
.hero-book-btn:hover { background: #bc6a16; transform: translateY(-1px); }
.hero-book-btn:active { transform: translateY(0); }

/* Hero cards */
.hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hcard {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.hcard-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.metric-val {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #D47B1A;
  margin-bottom: 2px;
}
.metric-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}

/* Schedule */
.sched-rows { display: flex; flex-direction: column; gap: 10px; }
.sched-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 12px;
  align-items: center;
  font-size: 13px;
}
.sched-time { color: rgba(255,255,255,0.45); font-weight: 500; font-size: 12px; }
.sched-addr { color: rgba(255,255,255,0.85); }
.hcard-st-confirmed {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 10px;
  background: rgba(39, 174, 96, 0.2);
  color: #27ae60;
  white-space: nowrap;
}
.hcard-st-pending {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 10px;
  background: rgba(212, 123, 26, 0.2);
  color: #D47B1A;
  white-space: nowrap;
}

/* Lead */
.lead-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.lead-name { display: block; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); margin-bottom: 2px; }
.lead-svc { display: block; font-size: 12px; color: rgba(255,255,255,0.45); }
.lead-action {
  font-size: 11px;
  font-weight: 600;
  color: #D47B1A;
  background: rgba(212, 123, 26, 0.15);
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

/* ── WHAT IS ── */
.what-is { padding: 96px 0; }
.what-is-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.what-is-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  max-width: 680px;
  margin-bottom: 28px;
}
.what-is-body {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 56px;
}
.what-is-body p + p { margin-top: 16px; }
.what-is-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.wstats-item {
  background: var(--surface);
  padding: 32px 28px;
  text-align: center;
}
.wstats-val {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.wstats-lbl {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ── CAPABILITIES ── */
.capabilities {
  background: var(--surface);
  padding: 96px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cap-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.cap-col {
  background: var(--bg);
  padding: 48px 44px;
}
.cap-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.cap-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cap-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
}
.cap-col p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* ── STANDARDS ── */
.standards { padding: 96px 0; }
.standards-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.standards-left {}
.standards-quote {
  margin-top: 28px;
  padding: 32px 36px;
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--card-shadow);
}
.standards-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 16px;
}
.standards-quote footer {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.std-list { display: flex; flex-direction: column; gap: 20px; }
.std-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.std-check {
  width: 32px;
  height: 32px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.std-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.std-item p { font-size: 14px; color: var(--fg-muted); line-height: 1.55; }

/* ── CLOSING ── */
.closing {
  background: var(--fg);
  color: #fff;
  padding: 96px 0;
}
.closing-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.closing-content { max-width: 720px; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
  color: #fff;
}
.closing-body {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
}

/* ── FOOTER ── */
.footer { padding: 40px 0; background: var(--bg); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--fg); }
.footer-tagline { font-size: 13px; color: var(--fg-muted); margin-left: 8px; }
.footer-meta { font-size: 13px; color: var(--fg-muted); }
.footer-sep { margin: 0 8px; color: var(--border); }
.footer-note { font-size: 12px; color: var(--fg-muted); letter-spacing: 0.04em; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card-stack { display: none; }
  .what-is-stats { grid-template-columns: repeat(2, 1fr); }
  .cap-grid { grid-template-columns: 1fr; }
  .standards-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .hero { padding: 56px 0 52px; }
  .hero-headline { font-size: 36px; }
  .what-is { padding: 64px 0; }
  .what-is-stats { grid-template-columns: 1fr 1fr; }
  .cap-col { padding: 36px 28px; }
  .standards { padding: 64px 0; }
  .closing { padding: 64px 0; }
  .closing-headline { font-size: 28px; }
}