:root {
  --bg: #FFFBF5;
  --bg-warm: #FFF5E8;
  --fg: #1A1612;
  --fg-muted: #6B5E52;
  --accent: #D4762C;
  --accent-light: #F2A254;
  --accent-glow: rgba(212, 118, 44, 0.15);
  --surface: #FFFFFF;
  --surface-border: rgba(26, 22, 18, 0.06);
  --radius: 16px;
  --radius-sm: 10px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--surface-border);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  text-decoration: none;
}

.nav-brand span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color .2s;
}

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

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  background: var(--accent);
  color: #fff !important;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}

.btn-nav-cta:hover { background: #bf6826 !important; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
  background: linear-gradient(175deg, var(--bg-warm) 0%, var(--bg) 60%);
  overflow: hidden;
}

.hero-inner {
  max-width: 720px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero h1 .accent {
  color: var(--accent);
}

.lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .1s;
  font-family: 'Syne', sans-serif;
}

.btn-primary:hover { background: #bf6826; transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--surface-border);
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}

.btn-secondary:hover { border-color: var(--accent); background: var(--bg-warm); }

.hero-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ===== PROMISE ===== */
.promise {
  padding: 100px 24px;
  background: var(--bg);
}

.promise-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.promise-label {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 48px;
  text-align: center;
}

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

.promise-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 22, 18, 0.06);
}

.promise-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 20px;
}

.promise-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.promise-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 24px;
  background: var(--bg-warm);
}

.services-inner {
  max-width: 800px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 64px;
}

.services-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.services-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: flex;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(26, 22, 18, 0.08);
  align-items: flex-start;
}

.service-item:first-child {
  border-top: 1px solid rgba(26, 22, 18, 0.08);
}

.service-number {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 36px;
  padding-top: 4px;
}

.service-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* ===== PRICING SECTION (landing) ===== */
.pricing {
  padding: 100px 24px;
  background: var(--bg);
}

.pricing-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}

.pricing-inner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.pricing-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

.pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--surface-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.pricing-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-size: 15px;
}

.pricing-table-wrap thead th {
  background: var(--fg);
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-table-wrap tbody tr {
  border-bottom: 1px solid var(--surface-border);
  transition: background .15s;
}

.pricing-table-wrap tbody tr:last-child { border-bottom: none; }
.pricing-table-wrap tbody tr:hover { background: var(--bg-warm); }

.pricing-table-wrap tbody td {
  padding: 14px 20px;
  white-space: nowrap;
}

.pricing-table-wrap tbody td:first-child {
  font-weight: 500;
  color: var(--fg-muted);
}

.price-cell { font-weight: 600; color: var(--fg); }

.pricing-frequency-note {
  margin-bottom: 20px;
  padding: 10px 18px;
  background: var(--bg-warm);
  border: 1px solid rgba(212, 118, 44, 0.15);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--fg-muted);
  display: inline-block;
}

.pricing-first-visit-note {
  margin-top: 24px;
  padding: 14px 20px;
  background: rgba(212, 118, 44, 0.07);
  border: 1px solid rgba(212, 118, 44, 0.18);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.pricing-first-visit-note strong { color: var(--accent); }

.pricing-cta-row {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-disclaimer {
  font-size: 14px;
  color: var(--fg-muted);
  flex: 1;
}

/* ===== AREAS ===== */
.areas {
  padding: 100px 24px;
  background: var(--bg-warm);
}

.areas-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.areas-inner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-align: center;
}

.areas-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}

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

.area-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.area-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.area-stat {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.area-detail {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 24px;
  background: var(--fg);
  color: var(--bg);
  text-align: center;
}

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

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 251, 245, 0.7);
  margin-bottom: 40px;
}

.closing .btn-primary { font-size: 1.05rem; padding: 16px 36px; }

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 24px;
  background: var(--fg);
  border-top: 1px solid rgba(255, 251, 245, 0.08);
  text-align: center;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 251, 245, 0.5);
  margin-bottom: 6px;
}

.footer-email {
  font-size: 0.85rem;
  color: var(--accent-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 80px 20px 60px; }
  .promise-grid, .areas-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-item { flex-direction: column; gap: 8px; }
  .promise, .services, .areas, .pricing { padding: 72px 20px; }
  .closing { padding: 80px 20px; }
  .services-header { margin-bottom: 40px; }
  .nav-links { display: none; }
}
