:root {
  --bg: #FAFAF7;
  --fg: #1A1A1A;
  --fg-muted: #6B6B60;
  --fg-light: #9C9C90;
  --green-deep: #1B4D3E;
  --green-mid: #2D7A5F;
  --green-light: #E8F0EC;
  --gold: #C8A96E;
  --gold-light: #F5EFE3;
  --cream: #F7F4EE;
  --white: #FFFFFF;
  --border: #E5E5DC;
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--green-deep);
  letter-spacing: -0.01em;
}

.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  background: var(--green-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* HERO */
.hero {
  position: relative;
  padding: 160px 24px 100px;
  overflow: hidden;
  background: linear-gradient(170deg, var(--cream) 0%, var(--bg) 50%, var(--green-light) 100%);
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-deep);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--green-deep);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: fit-content;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--fg-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  font-weight: 500;
}

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

.hero-gradient {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* SECTIONS */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  margin-bottom: 48px;
}

/* SERVICES */
.services {
  padding: 100px 0;
  background: var(--white);
}

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

.service-card {
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--green-mid);
  transform: translateY(-2px);
}

.service-featured {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}

.service-featured p { color: rgba(255,255,255,0.7); }
.service-featured .service-icon { color: var(--gold); }

.service-icon {
  font-size: 24px;
  margin-bottom: 16px;
  display: block;
  color: var(--green-deep);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 0;
  background: var(--bg);
}

.steps {
  display: grid;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  padding-top: 4px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.6;
}

/* WHY US */
.why-us {
  padding: 100px 0;
  background: var(--green-deep);
  color: var(--white);
}

.why-us .section-label { color: var(--gold); }
.why-us .section-title { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  padding: 36px 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: background 0.2s;
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gold-light);
  letter-spacing: -0.01em;
}

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

/* AREAS */
.areas {
  padding: 100px 0;
  background: var(--white);
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-tag {
  padding: 10px 22px;
  background: var(--green-light);
  color: var(--green-deep);
  border-radius: 28px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}

.area-tag:hover { border-color: var(--green-mid); }

.area-tag-muted {
  background: var(--bg);
  color: var(--fg-muted);
  font-style: italic;
}

/* CLOSING */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--cream) 100%);
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--green-deep);
  margin-bottom: 24px;
}

.closing-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

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

.footer-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--green-deep);
}

.footer-location {
  display: block;
  font-size: 13px;
  color: var(--fg-light);
  margin-top: 2px;
}

.footer-email {
  font-size: 13px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 24px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .step {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  .step-number { font-size: 28px; }

  .hero { padding: 130px 24px 80px; }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .areas-list { justify-content: center; }

  .closing { padding: 80px 24px; }
}

@media (max-width: 480px) {
  .services-grid { gap: 12px; }
  .service-card { padding: 24px 20px; }
  .nav-tag { display: none; }
}

/* ============================================================
   NAV UPDATES — links + mobile menu
   ============================================================ */

.nav-brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--green-deep);
  background: var(--green-light);
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  background: var(--green-deep);
  border: 1.5px solid var(--green-deep);
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.nav-mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
}

/* ============================================================
   HERO ACTIONS
   ============================================================ */

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: var(--green-deep);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1.5px solid var(--green-deep);
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}

.hero-btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

.hero-btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  background: var(--white);
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, transform 0.15s;
}

.hero-btn-secondary:hover {
  border-color: var(--green-mid);
  transform: translateY(-2px);
}

/* ============================================================
   CLOSING ACTIONS
   ============================================================ */

.closing-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER NAV
   ============================================================ */

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--green-deep); }

@media (max-width: 768px) {
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

/* ============================================================
   PAGE SHELLS — shared across quote, booking, services, contact
   ============================================================ */

.page-main {
  padding-top: 72px; /* accounts for fixed nav */
  min-height: 100vh;
}

.page-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.page-header {
  max-width: 680px;
  margin-bottom: 60px;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--green-deep);
  margin-bottom: 16px;
  margin-top: 8px;
}

.page-title em {
  font-style: italic;
  color: var(--gold);
}

.page-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 560px;
}

/* ============================================================
   QUOTE CALCULATOR
   ============================================================ */

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.quote-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.quote-step {
  padding: 36px 40px;
  border-bottom: 1px solid var(--border);
}

.quote-step:last-child { border-bottom: none; }

.step-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: -0.01em;
}

/* Service type selector */
.service-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.svc-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, background 0.15s;
}

.svc-btn:hover {
  border-color: var(--green-mid);
  background: var(--green-light);
}

.svc-btn.active {
  border-color: var(--green-deep);
  background: var(--green-light);
}

.svc-icon {
  font-size: 18px;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.svc-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
}

.svc-desc {
  font-size: 11px;
  color: var(--fg-muted);
  line-height: 1.3;
}

/* Size selector */
.size-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.size-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.size-btn:hover {
  border-color: var(--green-mid);
  background: var(--green-light);
}

.size-btn.active {
  border-color: var(--green-deep);
  background: var(--green-light);
}

.size-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-deep);
}

.size-sqft {
  font-size: 12px;
  color: var(--fg-muted);
}

/* Frequency selector */
.freq-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.freq-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 12px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.freq-btn:hover {
  border-color: var(--green-mid);
  background: var(--green-light);
}

.freq-btn.active {
  border-color: var(--green-deep);
  background: var(--green-light);
}

.freq-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-deep);
}

.freq-save {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-light);
  padding: 2px 8px;
  border-radius: 12px;
}

/* Quote result panel */
.quote-result-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 96px;
}

.quote-result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
}

.price-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
}

.price-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--green-light);
  border-top-color: var(--green-deep);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.price-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.price-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.price-currency {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--green-deep);
  margin-top: 8px;
}

.price-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-savings {
  margin-bottom: 8px;
}

.savings-badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(200, 169, 110, 0.3);
}

.price-breakdown {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.price-note {
  font-size: 12px;
  color: var(--fg-light);
  line-height: 1.5;
  margin-bottom: 20px;
}

.btn-book-now {
  display: block;
  padding: 15px 24px;
  background: var(--green-deep);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}

.btn-book-now:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: var(--green-light);
  border-radius: var(--radius);
  border: 1px solid rgba(45, 122, 95, 0.2);
}

.guarantee-icon {
  font-size: 20px;
  color: var(--green-deep);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.guarantee-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.guarantee-text strong {
  font-size: 14px;
  color: var(--green-deep);
}

.guarantee-text span {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}

.includes-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.includes-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 14px;
}

.includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.includes-list li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.includes-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-size: 11px;
  font-weight: 700;
  top: 1px;
}

/* ============================================================
   BOOKING FORM
   ============================================================ */

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

.booking-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.form-section {
  padding: 32px 40px;
  border-bottom: 1px solid var(--border);
}

.form-section:last-of-type { border-bottom: none; }

.form-section-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row:last-child { margin-bottom: 0; }

.form-row.two-col {
  flex-direction: row;
  gap: 16px;
}

.form-row.three-col {
  flex-direction: row;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.form-group.col-grow { flex: 2; }
.form-group.col-narrow { flex: 1; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}

.label-optional {
  font-weight: 400;
  color: var(--fg-muted);
  font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg);
  transition: border-color 0.15s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Frequency radio group */
.freq-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.freq-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  transition: border-color 0.15s, background 0.15s;
}

.freq-radio:has(input:checked) {
  border-color: var(--green-deep);
  background: var(--green-light);
  color: var(--green-deep);
}

.freq-radio input {
  width: auto;
  padding: 0;
  border: none;
  background: none;
  accent-color: var(--green-deep);
}

.freq-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-light);
  padding: 2px 7px;
  border-radius: 10px;
}

/* Submit button */
.btn-submit {
  display: block;
  width: calc(100% - 80px);
  margin: 0 40px 8px;
  padding: 18px;
  background: var(--green-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}

.btn-submit:hover:not(:disabled) {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-disclaimer {
  font-size: 12px;
  color: var(--fg-light);
  text-align: center;
  margin: 0 40px 32px;
  line-height: 1.5;
}

.form-error {
  margin: 0 40px 16px;
  padding: 12px 16px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius-sm);
  color: #DC2626;
  font-size: 13px;
}

/* Booking success */
.booking-success {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
}

.success-icon {
  font-size: 48px;
  color: var(--green-mid);
  margin-bottom: 20px;
  display: block;
}

.success-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 16px;
}

.success-text {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 8px;
  line-height: 1.6;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.success-sub {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

.success-sub a {
  color: var(--green-mid);
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--bg);
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: border-color 0.2s;
}

.btn-secondary:hover { border-color: var(--green-mid); }

/* Booking sidebar */
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 96px;
}

.quote-preview-card {
  background: var(--green-deep);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
}

.qp-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.qp-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.qp-details {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.trust-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 14px;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted);
}

.trust-icon {
  color: var(--green-mid);
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
}

.service-area-note {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: var(--green-light);
  border-radius: var(--radius);
  border: 1px solid rgba(45,122,95,0.15);
}

.service-area-note strong {
  font-size: 13px;
  color: var(--green-deep);
}

.service-area-note span {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ============================================================
   SERVICES LIST PAGE
   ============================================================ */

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.service-page-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.service-page-card:hover {
  border-color: var(--green-mid);
  transform: translateY(-2px);
}

.spc-icon {
  font-size: 28px;
  padding: 28px 28px 0;
  color: var(--green-deep);
  display: block;
}

.spc-body {
  padding: 16px 28px 20px;
  flex: 1;
}

.spc-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.spc-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.spc-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.spc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-top: 1px solid var(--border);
}

.spc-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-deep);
}

.spc-arrow {
  font-size: 16px;
  color: var(--fg-muted);
  transition: color 0.2s, transform 0.2s;
}

.service-page-card:hover .spc-arrow {
  color: var(--green-mid);
  transform: translateX(3px);
}

.services-page-cta {
  background: var(--green-deep);
  border-radius: var(--radius);
  padding: 48px 48px;
  color: var(--white);
  text-align: center;
}

.services-page-cta h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}

.services-page-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  padding: 15px 28px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}

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

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */

.service-page-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 56px;
}

.service-page-icon {
  font-size: 48px;
  color: var(--green-deep);
  flex-shrink: 0;
  margin-top: 8px;
}

.service-page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.service-page-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 32px;
  max-width: 600px;
}

.checklist-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
}

.checklist-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 20px;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--fg);
  line-height: 1.5;
}

.check {
  color: var(--green-mid);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-gold { color: var(--gold); }

.checklist-extras li { color: var(--fg-muted); }

.best-for-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--gold-light);
  border-radius: var(--radius);
  border: 1px solid rgba(200,169,110,0.25);
}

.best-for-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.best-for-text {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Service sidebar */
.service-page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 96px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.pricing-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.pricing-note {
  font-size: 12px;
  color: var(--fg-light);
  margin-bottom: 20px;
  line-height: 1.4;
}

.btn-text-link {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--green-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.btn-text-link:hover { color: var(--green-deep); }

.other-services-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.other-services-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 14px;
}

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

.other-services-list li {
  border-bottom: 1px solid var(--border);
}

.other-services-list li:last-child { border-bottom: none; }

.other-services-list a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.other-services-list a:hover { color: var(--green-deep); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-icon {
  font-size: 28px;
  color: var(--green-deep);
  margin-bottom: 16px;
  display: block;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.contact-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-mid);
  text-decoration: none;
  word-break: break-all;
}

.contact-link:hover { color: var(--green-deep); }

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--fg-muted);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.hours-list li:last-child { border-bottom: none; padding-bottom: 0; }

.contact-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.contact-areas span {
  font-size: 12px;
  font-weight: 500;
  color: var(--green-deep);
  background: var(--green-light);
  padding: 4px 10px;
  border-radius: 16px;
}

.contact-cta-card {
  background: var(--green-deep);
  border-radius: var(--radius);
  padding: 48px;
  color: var(--white);
  text-align: center;
}

.contact-cta-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-cta-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

.contact-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary-outline {
  display: inline-block;
  padding: 14px 24px;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s;
}

.btn-secondary-outline:hover { border-color: rgba(255,255,255,0.8); }

/* ============================================================
   404 PAGE
   ============================================================ */

.page-404 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center { text-align: center; }

.not-found-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE — all new pages
   ============================================================ */

@media (max-width: 900px) {
  .quote-layout,
  .service-page-layout {
    grid-template-columns: 1fr;
  }

  .quote-result-panel,
  .service-page-sidebar {
    position: static;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar { position: static; }

  .services-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .service-selector {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .quote-step { padding: 24px 20px; }
  .form-section { padding: 24px 20px; }
  .btn-submit { width: calc(100% - 40px); margin: 0 20px 8px; }
  .form-disclaimer { margin: 0 20px 28px; }
  .form-error { margin: 0 20px 16px; }
  .services-page-grid { grid-template-columns: 1fr; }
  .service-selector { grid-template-columns: 1fr 1fr; }
  .freq-selector { grid-template-columns: 1fr; }
  .form-row.two-col,
  .form-row.three-col { flex-direction: column; }
  .service-page-header { flex-direction: column; gap: 8px; }
  .services-page-cta,
  .contact-cta-card { padding: 32px 24px; }
}