/* ============================================================
   GABBY'S CLEANING — styles.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --linen:       #F7F2EB;
  --espresso:    #2C2018;
  --terra:       #B07A45;
  --terra-light: #F0E4D0;
  --sage:        #8FAB8E;
  --sage-light:  #EAF0EA;
  --mid:         #7A6552;
  --border:      #E2D9CC;
  --white:       #FFFFFF;
  --muted:       #B09880;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-card:   8px;
  --radius-btn:    3px;
  --transition:    0.2s ease;
  --max-width:     1200px;
  --section-pad:   120px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--linen); color: var(--espresso); font-size: 17px; line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ── Typography helpers ────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: 20px;
}
.display { font-family: var(--font-display); font-weight: 600; line-height: 1.1; color: var(--espresso); }
.display em { font-style: italic; color: var(--terra); }

/* ── Layout helpers ─────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.section { padding: var(--section-pad) 0; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary { background: var(--espresso); color: var(--linen); border: 1.5px solid var(--espresso); }
.btn-terra   { background: var(--terra);    color: var(--white); border: 1.5px solid var(--terra); }
.btn-ghost   { background: transparent; color: var(--espresso); border: 1.5px solid var(--border); }
.btn-outline-terra { background: transparent; color: var(--terra); border: 1.5px solid var(--terra); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--linen);
  border-bottom: 0.5px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 40px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo svg { width: 46px; height: 46px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  color: var(--espresso);
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-top: 4px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--mid);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--espresso); }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone:hover { color: var(--terra); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--espresso);
  transition: all 0.25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--linen);
  border-top: 0.5px solid var(--border);
  padding: 28px 40px;
  gap: 22px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 16px;
  color: var(--mid);
  font-weight: 400;
}
.nav-mobile a:hover { color: var(--espresso); }
.nav-mobile .btn { width: fit-content; }

/* ═══════════════════════════════════════════════════════════
   HERO — HOMEPAGE
═══════════════════════════════════════════════════════════ */
.hero {
  background: var(--linen);
  padding: 100px 0 120px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 56px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 600;
  line-height: 1.06;
  color: var(--espresso);
  margin-bottom: 28px;
}
.hero-h1 em { font-style: italic; color: var(--terra); }
.hero-sub {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 420px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-btns .btn { padding-top: 20px; padding-bottom: 20px; }
.hero-left .eyebrow { margin-bottom: 28px; }

/* Hero right panel */
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: var(--white);
  border-radius: 6px;
  padding: 24px 28px;
  border: 0.5px solid var(--border);
}
.hero-card-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
}
.hero-card-value {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--espresso);
}
.hero-card-sub {
  font-size: 13px;
  color: var(--sage);
  margin-top: 6px;
  font-weight: 500;
}
.hero-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-card-row .hero-card-value { font-size: 32px; }

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--terra);
  padding: 20px 0;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item::before { content: '·'; opacity: 0.5; display: none; }
.trust-item + .trust-item::before { display: inline; }

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════════════════ */
.services { background: var(--white); }
.services-header { text-align: center; margin-bottom: 64px; }
.services-h2 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: var(--espresso);
  margin-top: 8px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  border-radius: var(--radius-card);
  padding: 52px;
  border: 0.5px solid var(--border);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(44,32,24,0.08); }
.service-card.featured { background: var(--espresso); border-color: var(--espresso); }
.service-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--terra);
  margin-bottom: 24px;
}
.service-card.featured .service-num { color: var(--terra-light); }
.service-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  border: 0.5px solid var(--terra);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 18px;
  width: fit-content;
}
.service-card.featured .service-badge { color: var(--terra-light); border-color: var(--terra-light); }
.service-name {
  font-size: 22px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 14px;
}
.service-card.featured .service-name { color: var(--white); }
.service-desc {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 32px;
}
.service-card.featured .service-desc { color: var(--muted); }
.service-footer { display: flex; align-items: center; justify-content: space-between; }
.service-price {
  font-size: 16px;
  font-weight: 500;
  color: var(--terra);
}
.service-card.featured .service-price { color: var(--terra-light); }
.service-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--terra);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 8px; }

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════ */
.how { background: var(--sage-light); }
.how-header { text-align: center; margin-bottom: 72px; }
.how-h2 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: var(--espresso);
  margin-top: 8px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
}
.how-step { position: relative; }
.how-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 500;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.45;
}
.how-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 14px;
}
.how-desc {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about { background: var(--terra-light); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-h2 {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.12;
  margin-bottom: 28px;
  margin-top: 8px;
}
.about-body {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 48px;
}
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--espresso);
}
.about-stat-label {
  font-size: 14px;
  color: var(--mid);
  margin-top: 6px;
}
.about-trust {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 52px;
}
.about-trust-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 36px;
}
.trust-checklist { display: flex; flex-direction: column; gap: 22px; }
.trust-check {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: var(--espresso);
}
.trust-check-icon {
  width: 22px;
  height: 22px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-check-icon svg { width: 11px; height: 11px; color: var(--sage); }

/* ═══════════════════════════════════════════════════════════
   CALL US SECTION
═══════════════════════════════════════════════════════════ */
.call-us {
  background: var(--espresso);
  padding: 80px 0;
}
.call-us-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
.call-us-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
  display: block;
}
.call-us-h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.call-us-sub {
  font-size: 16px;
  color: var(--muted);
}
.call-us-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.call-us-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.call-us-number:hover { color: var(--terra-light); }
.call-us-hours {
  font-size: 15px;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════
   AREAS SERVED
═══════════════════════════════════════════════════════════ */
/* ── Eco Section ─────────────────────────────────────────── */
.eco-section { background: var(--white); }
.eco-header { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.eco-h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 20px;
  line-height: 1.15;
}
.eco-sub { font-size: 16px; color: var(--mid); line-height: 1.7; max-width: 580px; margin: 0 auto; }
.eco-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.eco-card {
  background: var(--linen);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  border: 0.5px solid var(--border);
}
.eco-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 12px;
}
.eco-card-desc { font-size: 14px; color: var(--mid); line-height: 1.65; }

.areas { background: var(--linen); }
.areas-header { text-align: center; margin-bottom: 64px; }
.areas-h2 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: var(--espresso);
  margin-top: 8px;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.area-card {
  border-radius: var(--radius-card);
  padding: 36px 40px;
  border: 0.5px solid var(--border);
  background: var(--white);
  transition: transform var(--transition);
}
.area-card:hover { transform: translateY(-2px); }
.area-card.priority {
  border: 1px solid var(--terra);
  background: var(--terra-light);
}
.area-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--terra);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.area-name {
  font-size: 20px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 10px;
}
.area-detail {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.6;
}
.area-card.priority .area-detail { color: var(--terra); }
.area-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--terra);
  margin-top: 18px;
  font-weight: 500;
  transition: gap var(--transition);
}
.area-link:hover { gap: 8px; }

/* ═══════════════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════════════ */
.reviews { background: var(--white); }
.reviews-header { text-align: center; margin-bottom: 64px; }
.reviews-rating {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1;
  margin-bottom: 12px;
}
.reviews-stars { color: var(--terra); font-size: 24px; margin-bottom: 10px; letter-spacing: 2px; }
.reviews-source { font-size: 14px; color: var(--mid); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.review-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 48px;
}
.review-quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.65;
  margin-bottom: 32px;
}
.review-footer { display: flex; align-items: center; gap: 16px; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--terra);
  flex-shrink: 0;
}
.review-name { font-size: 16px; font-weight: 500; color: var(--espresso); }
.review-location { font-size: 14px; color: var(--mid); margin-top: 3px; }
.review-stars { color: var(--terra); font-size: 13px; margin-bottom: 6px; }

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════ */
.cta-section { background: var(--espresso); text-align: center; }
.cta-h2 {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  margin-top: 8px;
}
.cta-h2 em { font-style: italic; color: var(--terra-light); }
.cta-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-note {
  font-size: 13px;
  color: var(--mid);
  margin-top: 20px;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--linen);
  border-top: 0.5px solid var(--border);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--mid);
  margin-top: 16px;
  line-height: 1.5;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 22px;
}
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a {
  font-size: 14px;
  color: var(--mid);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--terra); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact a, .footer-contact span {
  font-size: 14px;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact a { transition: color var(--transition); }
.footer-contact a:hover { color: var(--terra); }
.footer-bottom {
  border-top: 0.5px solid var(--border);
  margin-top: 64px;
  padding: 24px 40px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--mid);
}

/* ═══════════════════════════════════════════════════════════
   INNER PAGE HERO (dark — used on service/city pages)
═══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--espresso);
  padding: 100px 0 112px;
  text-align: center;
}
.page-hero-inner { max-width: 760px; margin: 0 auto; padding: 0 40px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  margin-top: 8px;
}
.page-hero h1 em { font-style: italic; color: var(--terra-light); }
.page-hero p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ═══════════════════════════════════════════════════════════
   CHECKLIST SECTION (service pages)
═══════════════════════════════════════════════════════════ */
.checklist-section { background: var(--linen); }
.checklist-h2 {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 48px;
  margin-top: 8px;
}
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.checklist-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--espresso);
  padding: 18px 22px;
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 6px;
}
.check-icon {
  width: 24px;
  height: 24px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { width: 12px; height: 12px; color: var(--sage); }

/* Who it's for cards */
.for-section { background: var(--terra-light); }
.for-h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 48px;
  margin-top: 8px;
}
.for-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.for-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 44px;
}
.for-card-icon { width: 48px; height: 48px; background: var(--linen); border: 0.5px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--terra); }
.for-card-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 10px;
}
.for-card-desc { font-size: 16px; color: var(--mid); line-height: 1.65; }

/* Pricing section */
.pricing-section { background: var(--sage-light); }
.pricing-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.pricing-from { font-size: 14px; color: var(--mid); margin-bottom: 10px; }
.pricing-price {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 16px;
}
.pricing-note {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ═══════════════════════════════════════════════════════════
   CITY PAGE SPECIFIC
═══════════════════════════════════════════════════════════ */
.city-intro { background: var(--linen); }
.city-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.city-intro-h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.12;
  margin-bottom: 24px;
  margin-top: 8px;
}
.city-intro-body {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 32px;
}
.city-trust-list { display: flex; flex-direction: column; gap: 16px; }
.city-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--espresso);
}

/* ═══════════════════════════════════════════════════════════
   BOOKING FORM PAGE
═══════════════════════════════════════════════════════════ */
.book-hero { background: var(--espresso); padding: 72px 0; text-align: center; }
.book-hero-inner { max-width: 640px; margin: 0 auto; padding: 0 40px; }
.book-hero h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  margin-top: 8px;
  margin-bottom: 18px;
}
.book-hero p { font-size: 17px; color: var(--muted); }

/* Form container */
.book-section { background: var(--linen); padding: 72px 0 112px; }
.form-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Step labels */
.step-labels {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}
.step-label { flex: 1; }
.step-label-line {
  height: 2px;
  background: var(--border);
  margin-bottom: 8px;
  transition: background var(--transition);
}
.step-label.active .step-label-line,
.step-label.done .step-label-line { background: var(--terra); }
.step-label-text {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  opacity: 0.5;
  transition: color var(--transition), opacity var(--transition);
}
.step-label.active .step-label-text { color: var(--terra); opacity: 1; }
.step-label.done .step-label-text { opacity: 0.8; }

/* Step card */
.step-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 56px 52px;
}
.step-question {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 10px;
  line-height: 1.2;
}
.step-hint {
  font-size: 15px;
  color: var(--mid);
  margin-bottom: 36px;
}

/* Tiles */
.tiles-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tiles-row  { display: flex; gap: 12px; flex-wrap: wrap; }

.tile {
  padding: 24px;
  border: 0.5px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
}
.tiles-row .tile { flex: 1; min-width: 60px; text-align: center; padding: 32px 14px; }
.tile { background: var(--linen); }
.tile:hover { border-color: var(--terra); }
.tile.selected { background: var(--espresso); border-color: var(--espresso); }
.tile.selected .tile-name { color: var(--white); }
.tile.selected .tile-desc { color: rgba(255,255,255,0.65); }
.tile-name { font-size: 15px; font-weight: 500; color: var(--espresso); }
.tile-desc { font-size: 13px; color: var(--mid); margin-top: 6px; line-height: 1.5; }
.tiles-row .tile .tile-name { font-family: var(--font-display); font-size: 28px; font-weight: 600; }
.tiles-row .tile.selected .tile-name { color: var(--white); }

/* Bathroom counters */
.bath-counters { display: flex; flex-direction: column; gap: 12px; }
.bath-counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border: 0.5px solid var(--border);
  background: var(--linen);
  border-radius: 6px;
}
.bath-counter-label { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--espresso); }
.bath-counter-sub { font-size: 13px; color: var(--mid); margin-top: 3px; }
.bath-counter-controls { display: flex; align-items: center; gap: 20px; }
.counter-btn {
  width: 40px; height: 40px;
  border: 0.5px solid var(--border);
  background: var(--white);
  color: var(--espresso);
  font-size: 20px;
  cursor: pointer;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition);
  font-family: var(--font-body);
}
.counter-btn:hover { border-color: var(--terra); }
.counter-val { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--espresso); min-width: 32px; text-align: center; }

/* Condition tiles */
.tiles-condition { display: flex; flex-direction: column; gap: 12px; }
.tile-condition {
  padding: 20px 24px;
  border: 0.5px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 18px;
}
.tile-condition:hover { border-color: var(--terra); }
.tile-condition.selected { border: 2px solid var(--terra); background: var(--terra-light); }
.tile-cond-emoji { font-size: 24px; flex-shrink: 0; }
.tile-cond-name { font-size: 15px; font-weight: 500; color: var(--espresso); }
.tile-cond-desc { font-size: 13px; color: var(--mid); margin-top: 2px; }

/* Price display */
.price-display { text-align: center; padding: 48px 0 24px; }
.price-label { font-size: 12px; color: var(--mid); letter-spacing: 0.06em; margin-bottom: 12px; }
.price-amount {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1;
  margin-bottom: 8px;
}
.price-sub { font-size: 15px; color: var(--mid); }

/* Frequency selector */
.frequency-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.freq-option {
  padding: 20px 14px;
  border: 0.5px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.freq-option:hover { border-color: var(--terra); }
.freq-option.selected { border: 2px solid var(--terra); background: var(--terra-light); }
.freq-popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terra);
  color: var(--white);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.freq-name { font-size: 14px; font-weight: 500; color: var(--espresso); }
.freq-note { font-size: 12px; color: var(--mid); margin-top: 5px; }

/* Summary panel */
.price-summary {
  background: var(--linen);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.summary-item { }
.summary-label { font-size: 12px; color: var(--mid); margin-bottom: 4px; letter-spacing: 0.04em; }
.summary-value { font-size: 15px; font-weight: 500; color: var(--espresso); }

/* Contact form fields */
.form-fields { display: flex; flex-direction: column; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-group { display: flex; flex-direction: column; gap: 7px; }
.field-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--espresso);
  letter-spacing: 0.02em;
}
.field-group input,
.field-group select,
.field-group textarea {
  background: var(--linen);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--espresso);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { border-color: var(--terra); }
.field-group textarea { resize: vertical; min-height: 100px; }
.field-optional { font-size: 11px; color: var(--mid); font-weight: 400; margin-left: 4px; }

/* Running estimate */
.running-estimate {
  font-size: 13px;
  color: var(--mid);
}
.running-estimate strong {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--espresso);
  font-weight: 600;
}

/* Step nav (back/continue) */
.step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 0.5px solid var(--border);
}
.step-back {
  font-size: 14px;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color var(--transition);
}
.step-back:hover { color: var(--espresso); }
.step-back[hidden] { visibility: hidden; }

/* Honeypot (hidden) */
.honeypot { display: none !important; }

/* Confirmation screen */
.confirm-screen { text-align: center; padding: 24px 0; }
.confirm-icon {
  width: 72px;
  height: 72px;
  background: var(--terra-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.confirm-icon svg { width: 32px; height: 32px; color: var(--terra); }
.confirm-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 14px;
}
.confirm-body { font-size: 16px; color: var(--mid); line-height: 1.7; margin-bottom: 24px; }
.confirm-chip {
  display: inline-block;
  background: var(--terra-light);
  border: 0.5px solid var(--terra);
  color: var(--terra);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 20px;
  margin-bottom: 36px;
}
.confirm-summary {
  background: var(--linen);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  text-align: left;
}
.confirm-summary-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 18px;
}
.confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 15px;
}
.confirm-row:last-child { border-bottom: none; }
.confirm-row-label { color: var(--mid); }
.confirm-row-value { color: var(--espresso); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   REAL ESTATE SECTION (move-in page)
═══════════════════════════════════════════════════════════ */
.realtor-section { background: var(--terra-light); }
.realtor-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.realtor-h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 8px;
}
.realtor-body { font-size: 17px; color: var(--mid); line-height: 1.75; margin-bottom: 32px; }
.realtor-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 48px;
}

/* ═══════════════════════════════════════════════════════════
   ECO PAGE SPECIFIC
═══════════════════════════════════════════════════════════ */
.eco-badge-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.eco-badge {
  background: var(--sage-light);
  border: 0.5px solid var(--sage);
  color: var(--sage);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 24px; }

  /* Nav */
  .nav-inner { padding: 0 24px; height: 68px; }
  .nav-links  { display: none; }
  .nav-phone  { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { padding: 24px; }

  /* Hero */
  .hero { padding: 72px 0 88px; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .hero-h1 { font-size: 52px; }
  .hero-sub { font-size: 16px; }
  .hero-panel { display: none; }

  /* Trust bar */
  .trust-bar-inner { flex-direction: column; gap: 12px; text-align: center; padding: 0 24px; }
  .trust-item + .trust-item::before { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .services-h2 { font-size: 40px; }
  .service-card { padding: 36px; }

  /* How */
  .how-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .how-h2 { font-size: 38px; }
  .how-num { font-size: 60px; }

  /* About */
  .about-inner { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .about-h2 { font-size: 38px; }
  .about-trust { padding: 36px; }

  /* Call Us */
  .call-us { padding: 60px 0; }
  .call-us-inner { grid-template-columns: 1fr; text-align: center; }
  .call-us-right { align-items: center; }
  .call-us-h2 { font-size: 32px; }
  .call-us-number { font-size: 40px; }

  /* Eco */
  .eco-cards { grid-template-columns: 1fr 1fr; }
  .eco-h2 { font-size: 32px; }

  /* Areas */
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .areas-h2 { font-size: 38px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-rating { font-size: 72px; }
  .review-card { padding: 32px; }
  .review-quote { font-size: 17px; }

  /* CTA */
  .cta-h2 { font-size: 42px; }
  .cta-sub { font-size: 16px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 20px 24px; }

  /* Book page */
  .book-hero h1 { font-size: 40px; }
  .book-hero p { font-size: 16px; }
  .form-wrap { padding: 0 24px; }
  .step-card { padding: 36px 28px; }
  .step-question { font-size: 26px; }
  .tiles-2x2 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .frequency-options { grid-template-columns: 1fr 1fr; }
  .price-summary { grid-template-columns: 1fr 1fr; }
  .price-amount { font-size: 52px; }

  /* City page */
  .city-intro-inner { grid-template-columns: 1fr; gap: 44px; }
  .city-intro-h2 { font-size: 36px; }
  .for-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .checklist-h2 { font-size: 36px; }

  /* Page hero */
  .page-hero { padding: 72px 0 84px; }
  .page-hero h1 { font-size: 44px; }
  .page-hero p { font-size: 16px; }
  .page-hero-inner { padding: 0 24px; }

  /* Realtor */
  .realtor-inner { grid-template-columns: 1fr; gap: 44px; }
  .realtor-h2 { font-size: 36px; }
  .realtor-card { padding: 32px; }
}

@media (max-width: 480px) {
  :root { --section-pad: 64px; }
  .hero-h1 { font-size: 42px; }
  .hero-btns { flex-direction: column; }
  .eco-cards { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .services-h2 { font-size: 34px; }
  .cta-h2 { font-size: 36px; }
  .page-hero h1 { font-size: 36px; }
  .service-card { padding: 28px; }
  .for-card { padding: 32px; }
}
