/* ============================================================
   HONEY DOS DONE RIGHT — Stylesheet
   ============================================================ */

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

/* ── TOKENS ── */
:root {
  --black:         #1A1A1A;
  --near-black:    #222222;
  --charcoal:      #2E2E2E;
  --bee-yellow:    #EFB947;
  --yellow-light:  #F5C96A;
  --yellow-pale:   #FEF6E4;
  --white:         #FAFAF8;
  --off-white:     #F2F0EB;
  --gray-mid:      #6B6860;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius-sm:   4px;
  --radius-md:   10px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-pill: 100px;

  --shadow-sm:     0 2px 8px rgba(0,0,0,0.10);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.16);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.22);
  --shadow-yellow: 0 4px 24px rgba(239,185,71,0.28);

  --transition: 0.25s ease;
  --nav-height:    72px;
  --banner-height: 36px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* clip, NOT hidden — doesn't break position:sticky */
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; color: var(--near-black); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

.section-header { max-width: 600px; margin: 0 auto 64px; text-align: center; }
.section-header h2 { font-size: clamp(2rem, 3.4vw, 3rem); margin-bottom: 14px; }
.section-header p { font-size: 1.1rem; color: var(--gray-mid); line-height: 1.8; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bee-yellow);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--bee-yellow);
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary { background: var(--bee-yellow); color: var(--black); border-color: var(--bee-yellow); }
.btn-primary:hover { background: var(--yellow-light); box-shadow: var(--shadow-yellow); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--bee-yellow); color: var(--bee-yellow); }
.btn-dark { background: var(--near-black); color: var(--white); border-color: var(--near-black); }
.btn-dark:hover { background: var(--charcoal); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-black { background: var(--black); color: var(--bee-yellow); border-color: var(--black); font-weight: 700; }
.btn-black:hover { background: var(--near-black); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.btn-ghost-dark { background: var(--black); color: var(--white); border-color: var(--black); font-weight: 700; }
.btn-ghost-dark:hover { background: var(--near-black); border-color: var(--near-black); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.25); }

/* ============================================================
   ANNOUNCEMENT BANNER
   ============================================================ */
.site-banner {
  position: relative;
  z-index: 1;
  background: var(--near-black);
  height: var(--banner-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  border-bottom: 1px solid rgba(239,185,71,0.2);
}
.site-banner__text {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-banner__text a {
  color: var(--bee-yellow);
  font-weight: 600;
  border-bottom: 1px solid rgba(239,185,71,0.4);
  transition: border-color var(--transition);
}
.site-banner__text a:hover { border-color: var(--bee-yellow); }
.site-banner__mobile-text {
  display: none;
  font-size: 0.73rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.site-banner__mobile-link {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
}
.site-banner__close {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  padding: 4px 6px;
  transition: color var(--transition);
}
.site-banner__close:hover { color: var(--white); }
body.banner-hidden .site-banner { display: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav-placeholder { display: contents; }

.nav {
  position: sticky !important;
  top: 0;
  z-index: 1100;
  height: var(--nav-height);
  background: rgba(26,26,26,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(239,185,71,0.12);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.5); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  gap: 16px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 38px;
  width: 38px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav__logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: 0.015em;
}
/* Hide unused legacy logo elements */
.nav__logo-icon, .nav__logo-text, .nav__logo-name, .nav__logo-tagline { display: none; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav__item { position: relative; }
.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 12px;
  font-size: 0.97rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.nav__link:hover, .nav__link.active { color: var(--bee-yellow); }
.nav__link svg { width: 10px; height: 10px; transition: transform var(--transition); flex-shrink: 0; opacity: 0.6; }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--near-black);
  border: 1px solid rgba(239,185,71,0.18);
  border-radius: var(--radius-md);
  min-width: 220px;
  padding: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.nav__item.open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__item.open > .nav__link { color: var(--bee-yellow); }
.nav__item.open > .nav__link svg { transform: rotate(180deg); opacity: 1; }
.nav__dropdown a {
  display: block;
  padding: 8px 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav__dropdown a:hover { background: rgba(239,185,71,0.08); color: var(--bee-yellow); padding-left: 16px; }
.nav__dropdown-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 6px 12px 3px;
}
.nav__dropdown-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 4px 0; }
.nav__dropdown a.nav__dropdown--highlight { color: var(--bee-yellow); font-weight: 600; }
.nav__dropdown--wide { min-width: 260px; columns: 2; column-gap: 0; }
.nav__dropdown--wide .nav__dropdown-label,
.nav__dropdown--wide .nav__dropdown-divider { column-span: all; }

.nav__cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav__phone {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__phone:hover { color: var(--bee-yellow); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  width: 36px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* Mobile nav — full-screen slide-in overlay */
.nav__mobile {
  display: block;
  position: fixed;
  inset: 0;
  background: var(--near-black);
  overflow-y: auto;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}
.nav__mobile.open { transform: translateX(0); visibility: visible; }

.nav__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: var(--nav-height);
  border-bottom: 1px solid rgba(239,185,71,0.12);
  position: sticky;
  top: 0;
  background: var(--near-black);
  z-index: 1;
}
.nav__mobile-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav__mobile-logo-img { height: 32px; width: 32px; object-fit: contain; }
.nav__mobile-logo-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); }
.nav__mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  line-height: 1;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__mobile-close:hover { color: var(--white); }

.nav__mobile-item {
  display: block;
  padding: 16px 24px;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.nav__mobile-item:hover { color: var(--bee-yellow); }
.nav__mobile-item--plan { color: var(--bee-yellow); font-weight: 600; }

.nav__mobile-group summary {
  padding: 16px 24px;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__mobile-group summary::-webkit-details-marker { display: none; }
.nav__mobile-group summary:hover { color: var(--bee-yellow); }
.nav__mobile-sub a {
  display: block;
  padding: 12px 24px 12px 40px;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--transition);
}
.nav__mobile-sub a:hover { color: var(--bee-yellow); }
.nav__mobile-cta { padding: 24px 24px 40px; display: flex; flex-direction: column; gap: 12px; }

/* Mobile nav bar inline CTA — hidden on desktop, shown on mobile beside the hamburger */
.nav__mobile-book {
  display: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: #1A1A1A;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: calc(100vh - var(--banner-height) - var(--nav-height));
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 80% at 75% 55%, rgba(239,185,71,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 30%, rgba(239,185,71,0.03) 0%, transparent 60%),
    url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20100%20173%22%3E%3Cpolygon%20points%3D%2250%2C34.75%2093.5%2C59.75%2093.5%2C109.75%2050%2C134.75%206.5%2C109.75%206.5%2C59.75%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%220%2C-50%2043.5%2C-25%2043.5%2C25%200%2C50%20-43.5%2C25%20-43.5%2C-25%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%22100%2C-50%20143.5%2C-25%20143.5%2C25%20100%2C50%2056.5%2C25%2056.5%2C-25%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%220%2C119.5%2043.5%2C144.5%2043.5%2C194.5%200%2C219.5%20-43.5%2C194.5%20-43.5%2C144.5%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%22100%2C119.5%20143.5%2C144.5%20143.5%2C194.5%20100%2C219.5%2056.5%2C194.5%2056.5%2C144.5%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3C%2Fsvg%3E');
  background-size: auto, auto, 54px;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 48px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  width: 100%;
}
.hero__content { max-width: 620px; }
.hero__headline {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero__headline em { font-style: italic; color: var(--bee-yellow); }
.hero__subhead {
  font-size: 1.18rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}
.hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  max-width: 540px;
}
.hero__benefit {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(239,185,71,0.2);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  font-size: 0.76rem;
  font-weight: 500;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.hero__pricing-note {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  margin-bottom: 28px;
}
.hero__social-proof {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero__stars-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__stars {
  color: var(--bee-yellow);
  font-size: 1.6rem;
  letter-spacing: 4px;
  line-height: 1;
  flex-shrink: 0;
}
.hero__stars-label {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1;
}
.hero__proof-subtext {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0;
}
/* Legacy selectors kept for safety */

.hero__visual { display: flex; justify-content: flex-end; align-items: flex-end; position: relative; }
.hero__photo-frame { position: relative; width: 100%; max-width: 420px; }
.hero__photo-accent {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  border: 1.5px solid rgba(239,185,71,0.3);
  border-radius: var(--radius-xl);
  z-index: 0;
}
.hero__photo-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(239,185,71,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.hero__photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.hero__photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.12), transparent 38%);
  pointer-events: none;
}
.hero__badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  z-index: 2;
  background: rgba(14,14,14,0.92);
  border: 1px solid rgba(239,185,71,0.25);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__badge-value { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--bee-yellow); line-height: 1; }
.hero__badge-label { font-size: 0.65rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; }
.hero__badge-top {
  position: absolute;
  top: 24px;
  right: -14px;
  z-index: 2;
  background: var(--bee-yellow);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  box-shadow: var(--shadow-yellow);
}
.hero__badge-top-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: var(--near-black); border-bottom: 1px solid rgba(239,185,71,0.1); }
.trust-bar__inner { display: flex; align-items: stretch; }
.trust-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__item:hover { background: rgba(239,185,71,0.04); }
.trust-bar__item-value { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); line-height: 1; }
.trust-bar__item-label { font-size: 0.7rem; font-weight: 500; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.1em; text-align: center; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--near-black); position: relative; overflow: hidden; }
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20100%20173%22%3E%3Cpolygon%20points%3D%2250%2C34.75%2093.5%2C59.75%2093.5%2C109.75%2050%2C134.75%206.5%2C109.75%206.5%2C59.75%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%220%2C-50%2043.5%2C-25%2043.5%2C25%200%2C50%20-43.5%2C25%20-43.5%2C-25%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%22100%2C-50%20143.5%2C-25%20143.5%2C25%20100%2C50%2056.5%2C25%2056.5%2C-25%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%220%2C119.5%2043.5%2C144.5%2043.5%2C194.5%200%2C219.5%20-43.5%2C194.5%20-43.5%2C144.5%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%22100%2C119.5%20143.5%2C144.5%20143.5%2C194.5%20100%2C219.5%2056.5%2C194.5%2056.5%2C144.5%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3C%2Fsvg%3E');
  background-size: 54px;
  pointer-events: none;
}
.services .section-header { position: relative; z-index: 1; }
.services .section-header h2 { color: var(--white); }
.services .section-header p { color: rgba(255,255,255,0.45); }

.services__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.services__note { margin-top: 22px; text-align: center; color: rgba(255,255,255,0.58); font-size: 0.88rem; line-height: 1.7; position: relative; z-index: 1; }

.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s ease;
  display: block;
  text-decoration: none;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(239,185,71,0.35); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.service-card__img { width: 100%; aspect-ratio: 16/10; overflow: hidden; position: relative; }
.service-card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
  filter: brightness(1.08) contrast(1.04) saturate(1.1);
}
.service-card:hover .service-card__img img { transform: scale(1.06); }
.service-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(14,14,14,0.45));
}
.service-card__body { padding: 24px 24px 28px; }
.service-card__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.2; }
.service-card__desc { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 14px; }
.service-card__rate { font-family: var(--font-mono); font-size: 0.72rem; color: var(--bee-yellow); letter-spacing: 0.06em; }
.service-card__arrow {
  position: absolute;
  bottom: 24px; right: 22px;
  width: 28px; height: 28px;
  border: 1px solid rgba(239,185,71,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--bee-yellow);
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--transition);
}
.service-card:hover .service-card__arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--off-white); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  text-align: center;
  position: relative;
  padding: 36px 20px 32px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.step:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }
.step__icon {
  width: 72px; height: 72px;
  font-size: 1.8rem;
  color: var(--bee-yellow);
  background: rgba(239,185,71,0.12);
  border: 2px solid rgba(239,185,71,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step__title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--near-black); }
.step__desc { font-size: 0.92rem; color: var(--gray-mid); line-height: 1.7; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us { background: var(--black); position: relative; overflow: hidden; }
.why-us .section-header { text-align: left; margin: 0 0 64px; max-width: 560px; }
.why-us .section-header h2 { color: var(--white); }
.why-us .section-header p { color: rgba(255,255,255,0.45); }
.why-us__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.why-us__items { display: flex; flex-direction: column; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: none; }
.why-item__icon {
  width: 52px; height: 52px; min-width: 52px;
  flex-shrink: 0;
  background: rgba(239,185,71,0.15);
  border: 1.5px solid rgba(239,185,71,0.4);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--bee-yellow);
  font-size: 1.4rem;
}
.why-item__content h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); margin-bottom: 7px; font-weight: 700; }
.why-item__content p { font-size: 0.95rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

.why-us__image-side { position: relative; }
.why-us__image { width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.why-us__image img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.75); object-position: center 18%; }
.why-us__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(14,14,14,0.7));
  border-radius: var(--radius-xl);
}
.why-us__quote {
  position: absolute;
  top: 24px; left: 24px; right: 24px;
  z-index: 2;
  background: rgba(14,14,14,0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(239,185,71,0.24);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.25);
}
.why-us__quote p { font-family: var(--font-display); font-size: 1rem; font-style: italic; color: var(--white); line-height: 1.6; margin-bottom: 8px; }
.why-us__quote-author { display: block; color: rgba(255,255,255,0.72); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.why-us__rates {
  position: absolute;
  bottom: 28px; left: 24px; right: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.rate-card { background: rgba(14,14,14,0.85); backdrop-filter: blur(12px); border: 1px solid rgba(239,185,71,0.2); border-radius: var(--radius-md); padding: 16px 18px; }
.rate-card__price { font-family: var(--font-display); font-size: 1.7rem; font-weight: 900; color: var(--bee-yellow); line-height: 1; margin-bottom: 4px; }
.rate-card__label { font-size: 0.68rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.09em; line-height: 1.4; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--white); }
.testimonials__carousel { position: relative; max-width: 760px; margin: 0 auto; }
.testimonial-track { border-radius: var(--radius-xl); display: grid; }
.testimonial-slide {
  grid-row: 1; grid-column: 1;
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-xl);
  padding: 52px 56px;
  text-align: center;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
  visibility: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}
.testimonial-slide.active { opacity: 1; pointer-events: auto; visibility: visible; }
.testimonial-slide__stars { color: var(--bee-yellow); font-size: 1rem; letter-spacing: 4px; margin-bottom: 20px; display: block; }
.testimonial-slide__text { font-family: var(--font-display); font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--charcoal); line-height: 1.7; font-style: italic; margin-bottom: 28px; }
.testimonial-slide__author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-slide__avatar {
  width: 48px; height: 48px;
  background: var(--bee-yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  color: var(--black);
  flex-shrink: 0;
  border: 2px solid rgba(239,185,71,0.3);
}
.testimonial-slide__name { font-weight: 700; font-size: 0.95rem; color: var(--near-black); }
.testimonial-slide__location { font-size: 0.78rem; color: var(--gray-mid); margin-top: 2px; }

.testimonials__controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 24px; }
.testimonials__btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: none; cursor: pointer;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  color: var(--charcoal);
  -webkit-tap-highlight-color: transparent;
}
.testimonials__btn:hover { border-color: var(--bee-yellow); color: var(--bee-yellow); }
.testimonials__dots { display: flex; gap: 7px; }
.testimonials__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  border: none; cursor: pointer;
  transition: all var(--transition);
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.testimonials__dot.active { background: var(--bee-yellow); width: 22px; border-radius: 4px; }
.testimonials__google-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 28px;
  font-size: 0.82rem; color: var(--gray-mid);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  background: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.testimonials__google-link:hover { border-color: var(--bee-yellow); color: var(--near-black); }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: linear-gradient(160deg, #0E0E0E 0%, #1a1508 100%);
  position: relative;
}
.service-areas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20100%20173%22%3E%3Cpolygon%20points%3D%2250%2C34.75%2093.5%2C59.75%2093.5%2C109.75%2050%2C134.75%206.5%2C109.75%206.5%2C59.75%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%220%2C-50%2043.5%2C-25%2043.5%2C25%200%2C50%20-43.5%2C25%20-43.5%2C-25%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%22100%2C-50%20143.5%2C-25%20143.5%2C25%20100%2C50%2056.5%2C25%2056.5%2C-25%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%220%2C119.5%2043.5%2C144.5%2043.5%2C194.5%200%2C219.5%20-43.5%2C194.5%20-43.5%2C144.5%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%22100%2C119.5%20143.5%2C144.5%20143.5%2C194.5%20100%2C219.5%2056.5%2C194.5%2056.5%2C144.5%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3C%2Fsvg%3E');
  background-size: 54px;
  pointer-events: none;
}
.service-areas .section-header { position: relative; z-index: 1; }
.service-areas .section-header h2 { color: var(--white); }
.service-areas .section-header p { color: rgba(255,255,255,0.45); }
/* Mobile hero below-content: hidden on desktop */
.hero__content--below { display: none; }
.hero__mobile-header { display: none; }
.hero__mobile-overlay { display: none; }

/* ── Service areas: two columns (title | image), then cities full-width below ── */
.service-areas__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}
.service-areas__header { text-align: left; }
.service-areas__header h2 { color: var(--white); margin-bottom: 12px; font-size: clamp(1.8rem, 2.8vw, 2.6rem); }
.service-areas__header p { color: rgba(255,255,255,0.5); font-size: 0.95rem; line-height: 1.7; }

.service-areas__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(239,185,71,0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  max-width: 340px;
  margin: 0 auto;
}
.service-areas__map img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Cities grid: full width below the top two columns */
.areas__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.area-chip {
  display: flex; align-items: center; justify-content: flex-start; gap: 10px;
  background: rgba(30,25,10,0.82);
  border: 1px solid rgba(239,185,71,0.22);
  border-radius: var(--radius-pill);
  padding: 14px 20px;
  font-size: 0.97rem; font-weight: 600;
  color: rgba(255,255,255,0.92);
  transition: all var(--transition);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  backdrop-filter: blur(4px);
}
.area-chip:hover { border-color: rgba(239,185,71,0.4); background: rgba(239,185,71,0.06); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(239,185,71,0.12); }
.area-chip .dot { width: 6px; height: 6px; background: var(--bee-yellow); border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip { background: var(--off-white); }
.about-strip__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-strip__content .eyebrow { margin-bottom: 16px; }
.about-strip__content h2 { color: var(--near-black); font-size: clamp(1.7rem, 2.8vw, 2.5rem); margin-bottom: 20px; }
.about-strip__content p { color: var(--gray-mid); line-height: 1.85; margin-bottom: 16px; font-size: 1rem; }
.about-strip__content .btn { margin-top: 12px; }

.about-strip__creds {
  display: flex; flex-direction: column;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
}
.cred-item {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background var(--transition);
  text-decoration: none;
}
.cred-item:last-child { border-bottom: none; }
.cred-item:hover { background: var(--yellow-pale); }
.cred-item__num { display: none; }
.cred-item__icon {
  width: 56px; min-width: 56px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(239,185,71,0.07);
  border-right: 2px solid rgba(239,185,71,0.2);
  color: var(--bee-yellow);
  font-size: 1.1rem;
}
.cred-item__body { padding: 18px 20px; flex: 1; }
.cred-item__title { font-weight: 700; color: var(--near-black); font-size: 0.97rem; margin-bottom: 3px; line-height: 1.3; }
.cred-item__detail { font-size: 0.82rem; color: var(--gray-mid); line-height: 1.4; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: #EFB947;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 4px solid #C8921A;
}
.cta-section__inner { position: relative; z-index: 1; text-align: center; }
.cta-section__eyebrow { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(0,0,0,0.58); margin-bottom: 16px; }
.cta-section h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--black); margin-bottom: 18px; }
.cta-section p { font-size: 1.15rem; color: rgba(0,0,0,0.6); max-width: 500px; margin: 0 auto 44px; line-height: 1.7; }
.cta-section__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-section__actions .btn { padding: 16px 32px; font-size: 0.95rem; }

/* ============================================================
   PAGE HERO — inner pages (service, area, about, etc.)
   ============================================================ */
.page-hero {
  background: var(--near-black);
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 173'%3E%3Cpolygon points='50,34.75 93.5,59.75 93.5,109.75 50,134.75 6.5,109.75 6.5,59.75' fill='none' stroke='rgba(239,185,71,0.07)' stroke-width='2'/%3E%3Cpolygon points='0,-50 43.5,-25 43.5,25 0,50 -43.5,25 -43.5,-25' fill='none' stroke='rgba(239,185,71,0.07)' stroke-width='2'/%3E%3Cpolygon points='100,-50 143.5,-25 143.5,25 100,50 56.5,25 56.5,-25' fill='none' stroke='rgba(239,185,71,0.07)' stroke-width='2'/%3E%3Cpolygon points='0,119.5 43.5,144.5 43.5,194.5 0,219.5 -43.5,194.5 -43.5,144.5' fill='none' stroke='rgba(239,185,71,0.07)' stroke-width='2'/%3E%3Cpolygon points='100,119.5 143.5,144.5 143.5,194.5 100,219.5 56.5,194.5 56.5,144.5' fill='none' stroke='rgba(239,185,71,0.07)' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 54px;
  pointer-events: none;
  z-index: 0;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.page-hero__headline {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}
.page-hero__headline em { font-style: italic; color: var(--bee-yellow); }
.page-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 36px;
}
.page-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Breadcrumb — optional, place above the h1 */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--bee-yellow); }
.breadcrumb__sep { color: rgba(255,255,255,0.2); }
.breadcrumb__current { color: var(--bee-yellow); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #141414; border-top: 1px solid rgba(239,185,71,0.1); padding-top: 80px; }
.footer__main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer__logo { display: flex; align-items: center; margin-bottom: 20px; text-decoration: none; }
.footer__logo-img { display: none; }
.footer__logo-wordmark { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--white); line-height: 1.2; letter-spacing: 0.01em; }
.footer__tagline { font-size: 0.92rem; color: rgba(255,255,255,0.4); line-height: 1.75; margin-bottom: 28px; max-width: 280px; }
.footer__contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: rgba(255,255,255,0.55); margin-bottom: 12px; text-decoration: none; transition: color var(--transition); }
.footer__contact-item:hover { color: var(--bee-yellow); }
.footer__contact-item .icon { font-size: 0.9rem; flex-shrink: 0; }
.footer__col-title { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bee-yellow); margin-bottom: 20px; opacity: 0.9; }
.footer__links a { display: block; font-size: 0.92rem; color: rgba(255,255,255,0.5); margin-bottom: 12px; transition: color var(--transition), padding-left var(--transition); text-decoration: none; }
.footer__links a:hover { color: var(--white); padding-left: 4px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding: 26px 0; }
.footer__copy { font-size: 0.76rem; color: rgba(255,255,255,0.28); line-height: 1.6; }
.footer__bottom-links { display: flex; gap: 18px; }
.footer__bottom-links a { font-size: 0.76rem; color: rgba(255,255,255,0.28); text-decoration: none; transition: color var(--transition); }
.footer__bottom-links a:hover { color: rgba(255,255,255,0.55); }

/* ============================================================
   MAINTENANCE PLAN PAGE
   ============================================================ */
.plan-hero { background: var(--near-black); position: relative; overflow: hidden; padding: calc(var(--nav-height) + 80px) 0 80px; }
.plan-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(239,185,71,0.06) 0%, transparent 70%),
    url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20100%20173%22%3E%3Cpolygon%20points%3D%2250%2C34.75%2093.5%2C59.75%2093.5%2C109.75%2050%2C134.75%206.5%2C109.75%206.5%2C59.75%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%220%2C-50%2043.5%2C-25%2043.5%2C25%200%2C50%20-43.5%2C25%20-43.5%2C-25%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%22100%2C-50%20143.5%2C-25%20143.5%2C25%20100%2C50%2056.5%2C25%2056.5%2C-25%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%220%2C119.5%2043.5%2C144.5%2043.5%2C194.5%200%2C219.5%20-43.5%2C194.5%20-43.5%2C144.5%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%22100%2C119.5%20143.5%2C144.5%20143.5%2C194.5%20100%2C219.5%2056.5%2C194.5%2056.5%2C144.5%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3C%2Fsvg%3E');
  background-size: auto, 54px;
  pointer-events: none;
}
.plan-hero__inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.plan-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); color: var(--white); margin-bottom: 20px; }
.plan-hero h1 em { font-style: italic; color: var(--bee-yellow); }
.plan-hero__sub { font-size: 1.1rem; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 580px; margin: 0 auto 40px; }
.plan-faq { background: var(--off-white); }
.plan-faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.faq-item { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-md); padding: 26px 28px; transition: box-shadow var(--transition); }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; color: var(--near-black); font-family: var(--font-body); }
.faq-item p { font-size: 0.88rem; color: var(--gray-mid); line-height: 1.65; }


/* ── UTILITY CLASSES ── */
.testimonials__google-wrap { text-align: center; margin-top: 28px; position: relative; z-index: 1; }
.btn-outline--dim { border-color: rgba(255,255,255,0.25); }
/* Services section h2 is white via scoped rule — no inline needed */
.services .section-header h2 { color: var(--white); }

.eyebrow--center { justify-content: center; }
.eyebrow--muted { color: rgba(255,255,255,0.5); }
.text-center { text-align: center; }
/* ============================================================
   SCROLL REVEAL
   ============================================================ */

/* ============================================================
   AREA PAGES — nav city label, hero, map, neighborhoods
   Used on /areas/* pages. Classes prefixed area-hero__, area-map__,
   neighborhood-chip, breadcrumb.
   ============================================================ */

/* Nav city label — reads from data-city attribute set on the wordmark.
   nav.html ships with data-city="Serving Upstate SC" as the default.
   Area pages overwrite it via JS to the specific city name. */
.nav__logo-wordmark::after {
  content: attr(data-city);
  display: block;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bee-yellow);
  opacity: 0.7;
  margin-top: 2px;
  line-height: 1;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--bee-yellow); }
.breadcrumb__sep { color: rgba(255,255,255,0.2); }
.breadcrumb__current { color: var(--bee-yellow); }

/* Area hero — matches homepage .hero exactly */
.area-hero {
  background: #1A1A1A;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: calc(100vh - var(--banner-height) - var(--nav-height));
}
.area-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 80% at 75% 55%, rgba(239,185,71,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 30%, rgba(239,185,71,0.03) 0%, transparent 60%),
    url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20100%20173%22%3E%3Cpolygon%20points%3D%2250%2C34.75%2093.5%2C59.75%2093.5%2C109.75%2050%2C134.75%206.5%2C109.75%206.5%2C59.75%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%220%2C-50%2043.5%2C-25%2043.5%2C25%200%2C50%20-43.5%2C25%20-43.5%2C-25%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%22100%2C-50%20143.5%2C-25%20143.5%2C25%20100%2C50%2056.5%2C25%2056.5%2C-25%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%220%2C119.5%2043.5%2C144.5%2043.5%2C194.5%200%2C219.5%20-43.5%2C194.5%20-43.5%2C144.5%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%22100%2C119.5%20143.5%2C144.5%20143.5%2C194.5%20100%2C219.5%2056.5%2C194.5%2056.5%2C144.5%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3C%2Fsvg%3E');
  background-size: auto, auto, 54px;
  pointer-events: none;
}
.area-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 48px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  width: 100%;
}
.area-hero__content { max-width: 620px; }
.area-hero h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 20px;
  text-wrap: balance;
}
.area-hero h1 em { font-style: italic; color: var(--bee-yellow); }
.area-hero__sub {
  font-size: 1.18rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}
.area-hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  max-width: 540px;
}
.area-hero__benefit {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(239,185,71,0.2);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  font-size: 0.76rem;
  font-weight: 500;
}
.area-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.area-hero__pricing-note {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  margin-bottom: 28px;
}
.area-hero__social-proof {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.area-hero__stars-row { display: flex; align-items: center; gap: 10px; }
.area-hero__stars { color: var(--bee-yellow); font-size: 1.6rem; letter-spacing: 4px; line-height: 1; flex-shrink: 0; }
.area-hero__stars-label { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.9); line-height: 1; }
.area-hero__proof-subtext { font-size: 0.9rem; color: rgba(255,255,255,0.5); }

/* Photo column — exact same structure as homepage .hero__visual */
.area-hero__visual { display: flex; justify-content: flex-end; align-items: flex-end; position: relative; }
.area-hero__photo-frame { position: relative; width: 100%; max-width: 420px; }
.area-hero__photo-accent {
  position: absolute;
  bottom: -14px; right: -14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  border: 1.5px solid rgba(239,185,71,0.3);
  border-radius: var(--radius-xl);
  z-index: 0;
}
.area-hero__photo-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(239,185,71,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.area-hero__photo-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.area-hero__photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.12), transparent 38%);
  pointer-events: none;
}
/* Dark pill badge bottom-left — matches .hero__badge */
.area-hero__badge {
  position: absolute;
  bottom: 32px; left: -24px;
  z-index: 2;
  background: rgba(14,14,14,0.92);
  border: 1px solid rgba(239,185,71,0.25);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.area-hero__badge-value { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--bee-yellow); line-height: 1; }
.area-hero__badge-label { font-size: 0.65rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; }
/* Yellow pill badge top-right — matches .hero__badge-top */
.area-hero__badge-top {
  position: absolute;
  top: 24px; right: -14px;
  z-index: 2;
  background: var(--bee-yellow);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  box-shadow: var(--shadow-yellow);
}
.area-hero__badge-top-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
/* Mobile overlay (hidden on desktop) */
.area-hero__mobile-overlay { display: none; }
/* Below-image content block (hidden on desktop) */
.area-hero__content--below { display: none; }

/* Neighborhoods section */
.neighborhoods { background: var(--off-white); }
.neighborhoods__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.neighborhood-chip {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--charcoal);
  text-align: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  cursor: default;
}
.neighborhood-chip:hover {
  background: var(--yellow-pale);
  border-color: rgba(239,185,71,0.4);
  color: var(--black);
  transform: translateY(-2px);
}
.neighborhoods__note { text-align: center; font-size: 0.88rem; color: var(--gray-mid); }
.neighborhoods__note a { color: var(--bee-yellow); font-weight: 600; }

/* Area map section — white bg, distinct from off-white neighbors, readable text */
.area-map { background: var(--white); }
.area-map__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.area-map__content h2 { color: var(--near-black); font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 16px; }
.area-map__content p { color: var(--gray-mid); line-height: 1.8; margin-bottom: 28px; }
.area-map__contact-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.area-map__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--charcoal);
  text-decoration: none;
  transition: color var(--transition);
}
.area-map__contact-item:hover { color: var(--bee-yellow); }
.area-map__contact-item i { color: var(--bee-yellow); width: 18px; flex-shrink: 0; }
.area-map__frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}
.area-map__frame iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* 1100px — tablet landscape */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .nav__phone { display: none; }
}

/* 1024px — tablet */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 36px; padding: 20px 48px 64px; }
  .hero__subhead { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__benefits, .hero__actions, .hero__social-proof { justify-content: center; }
  .hero__visual { justify-content: center; order: 1; }
  .hero__content { order: 0; }
  .hero__photo-frame { max-width: 380px; }
  .hero__badge { left: -10px; }

  .why-us__layout { grid-template-columns: 1fr; gap: 48px; }
  .why-us .section-header { text-align: center; margin: 0 auto 64px; }

  .about-strip__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .plan-faq__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }

  /* Area pages */
  .area-hero__inner { grid-template-columns: 1fr; gap: 48px; padding: 20px 48px 64px; }
  .area-hero { min-height: unset; }
  .area-hero__photo-frame { max-width: 380px; margin-left: auto; margin-right: auto; }
  .area-hero__badge { left: -10px; }
  .area-map__inner { grid-template-columns: 1fr; }
  .area-map__frame { height: 320px; }
  .neighborhoods__grid { grid-template-columns: repeat(3, 1fr); }
}

/* 900px — mobile nav kicks in */
@media (max-width: 900px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  /* Lock nav__inner into a 4-zone row: logo | (spacer) | book-now | hamburger */
  .nav__inner { justify-content: flex-start; gap: 8px; }
  .nav__logo { flex: 1; min-width: 0; }
  .nav__logo-wordmark {
    font-size: 0.95rem;
    max-width: 110px;
    white-space: normal;
    word-break: break-word;
    line-height: 1.15;
  }
  .nav__logo-wordmark::after {
    font-size: 0.44rem;
    white-space: nowrap;
    letter-spacing: 0.07em;
  }
  .nav__mobile-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    background: var(--bee-yellow);
    color: var(--black);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    text-decoration: none;
    transition: background var(--transition);
  }
  .nav__mobile-book:hover { background: var(--yellow-light); }
  .nav__toggle { flex-shrink: 0; order: 4; margin-left: 0; }
  .trust-bar__inner { flex-wrap: wrap; }
  .trust-bar__item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .trust-bar__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.05); }
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
  .nav__logo-wordmark { font-size: 0.96rem; max-width: 160px; }
  .nav__logo-img { height: 34px; width: 34px; }
  .service-areas__top { grid-template-columns: 1fr; gap: 32px; }

  /* Area pages */
  .neighborhoods__grid { grid-template-columns: repeat(2, 1fr); }
}

/* 768px — mobile */
@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  section { padding: 72px 0; }
  .container { padding: 0 20px; }

  /* Banner */
  .site-banner__text { display: none; }
  .site-banner__mobile-text { display: block; }
  .site-banner__mobile-link { display: block; }
  .site-banner { cursor: pointer; }

  /* ── MOBILE HERO: full-bleed image, text in bottom gradient zone ── */
  .hero {
    min-height: 0 !important;
    display: block !important;
    align-items: unset !important;
    padding: 0 !important;
  }

  .hero__inner { display: contents !important; }
  .hero__content { display: none !important; }

  /* Full-width tall image */
  .hero__visual { display: block !important; width: 100% !important; }
  .hero__photo-frame {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    position: relative;
  }
  .hero__photo-placeholder {
    aspect-ratio: unset !important;
    height: 75vw !important;
    min-height: 300px !important;
    max-height: 420px !important;
    border-radius: 0 !important;
    width: 100% !important;
    border: none !important;
    position: relative;
  }
  .hero__photo-placeholder img { object-position: center 10%; }

  /* Gradient only on the bottom quarter */
  .hero__photo-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 55%,
      rgba(26,26,26,0.75) 75%,
      rgba(26,26,26,1) 100%
    );
    pointer-events: none;
    z-index: 1;
  }

  /* Overlay: just eyebrow + headline in the bottom gradient zone */
  .hero__mobile-overlay {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 20px 16px;
    text-align: left;
  }
  .hero__mobile-overlay .eyebrow {
    justify-content: flex-start;
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 0.65rem;
    color: rgba(239,185,71,0.85);
    text-shadow: 0 1px 6px rgba(0,0,0,0.9);
    letter-spacing: 0.1em;
  }
  .hero__mobile-overlay .eyebrow::before { display: none; }
  .hero__mobile-overlay .hero__headline {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.95);
  }
  .hero__mobile-overlay .hero__headline em {
    color: var(--bee-yellow);
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  }
  /* No buttons in overlay — they go below */
  .hero__mobile-overlay .hero__actions { display: none; }

  .hero__photo-accent, .hero__badge-top, .hero__badge { display: none; }

  /* Below section: buttons + subhead + proof */
  .hero__content--below {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 36px;
    text-align: center;
    background: var(--black);
    gap: 0;
  }
  .hero__content--below .hero__subhead { display: block; font-size: 0.97rem; margin-bottom: 16px; max-width: 100%; color: rgba(255,255,255,0.65); }
  .hero__content--below .hero__benefits { display: none; }
  .hero__content--below .hero__actions {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 16px;
  }
  .hero__content--below .hero__actions .btn { justify-content: center; width: 100%; min-height: 52px; font-size: 1rem; }
  .hero__content--below .hero__pricing-note { display: block; text-align: center; font-size: 0.88rem; margin-bottom: 0; color: rgba(255,255,255,0.6); }
  .hero__content--below .hero__social-proof { display: none; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Why us — mobile image/quote reflow */
  .why-us__quote { position: static; margin-top: 16px; backdrop-filter: none; box-shadow: none; }
  .why-us__quote p { color: var(--white); font-size: 0.97rem; }
  .why-us__quote-author { color: rgba(255,255,255,0.6); }
  .why-us__rates { position: static; margin-top: 12px; }
  .why-us__image { aspect-ratio: unset; height: 280px; }
  .why-us__image img { object-fit: cover; width: 100%; height: 100%; }

  /* Testimonials */
  .testimonial-slide { padding: 36px 28px; }

  /* Steps */
  .step { padding: 28px 20px 24px; }

  /* Areas */
  .areas__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .area-chip:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
  .area-chip { font-size: 0.85rem; padding: 11px 14px; white-space: nowrap; }

  /* Footer */
  .footer__main { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  /* Plan */
  .plan-hero { padding-top: calc(var(--nav-height) + 48px); }

  /* CTA */
  .cta-section { padding: 88px 0; }

  /* ── AREA PAGE MOBILE HERO — full-bleed image, text in gradient zone ── */
  .area-hero {
    min-height: 0 !important;
    display: block !important;
    align-items: unset !important;
    padding: 0 !important;
  }
  .area-hero__inner { display: contents !important; }
  .area-hero__content { display: none !important; }
  .area-hero .breadcrumb { display: none; }
  .area-hero__visual { display: block !important; width: 100% !important; }
  .area-hero__photo-frame { width: 100%; max-width: 100%; border-radius: 0; position: relative; }
  .area-hero__photo-accent { display: none; }
  .area-hero__badge { display: none; }
  .area-hero__badge-top { display: none; }
  .area-hero__photo-placeholder {
    aspect-ratio: unset !important;
    height: 75vw !important;
    min-height: 300px !important;
    max-height: 420px !important;
    border-radius: 0 !important;
    width: 100% !important;
    border: none !important;
    position: relative;
  }
  .area-hero__photo-placeholder img { object-position: center 10%; }
  .area-hero__photo-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 55%, rgba(26,26,26,0.75) 75%, rgba(26,26,26,1) 100%);
    pointer-events: none;
    z-index: 1;
  }
  .area-hero__mobile-overlay {
    display: block;
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 0 20px 16px;
    text-align: left;
  }
  .area-hero__mobile-overlay .eyebrow {
    justify-content: flex-start;
    margin-bottom: 0;
    font-size: 0.65rem;
    color: rgba(239,185,71,0.85);
    text-shadow: 0 1px 6px rgba(0,0,0,0.9);
    letter-spacing: 0.1em;
  }
  .area-hero__mobile-overlay .eyebrow::before { display: none; }
  .area-hero__mobile-overlay h1,
  .area-hero__mobile-overlay .area-hero__headline {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.95);
  }
  .area-hero__mobile-overlay h1 em,
  .area-hero__mobile-overlay .area-hero__headline em { color: var(--bee-yellow); text-shadow: 0 2px 8px rgba(0,0,0,0.7); }
  .area-hero__content--below {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 36px;
    text-align: center;
    background: var(--black);
    gap: 0;
  }
  .area-hero__content--below .area-hero__sub { display: block; font-size: 0.97rem; margin-bottom: 16px; max-width: 100%; color: rgba(255,255,255,0.65); font-weight: 400; }
  .area-hero__content--below .area-hero__benefits { display: none; }
  .area-hero__content--below .area-hero__actions { display: flex !important; flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 16px; }
  .area-hero__content--below .area-hero__actions .btn { justify-content: center; width: 100%; min-height: 52px; font-size: 1rem; }
  .area-hero__content--below .area-hero__pricing-note { display: block; text-align: center; font-size: 0.88rem; margin-bottom: 0; color: rgba(255,255,255,0.6); }
  .area-hero__content--below .area-hero__social-proof { display: none; }
  .area-map__frame { height: 260px; }
}

/* 640px */
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; gap: 16px; }
}

/* 480px — small phones */
@media (max-width: 480px) {
  .hero__photo-placeholder { height: 60vw; max-height: 260px; }
  .hero__benefits { flex-direction: column; align-items: stretch; }
  .hero__benefit { justify-content: center; }
  .trust-bar__item { flex: 1 1 100%; }
  .testimonial-slide { padding: 28px 20px; }
  .testimonial-slide__text { font-size: 0.95rem; }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .cta-section__actions .btn { width: 100%; justify-content: center; }
  .nav__logo-wordmark { font-size: 0.88rem; max-width: 96px; line-height: 1.1; }
  .nav__inner { padding: 0 12px; gap: 6px; }
  .nav__mobile-book { padding: 7px 11px; font-size: 0.78rem; }

  /* Area pages */
  .neighborhoods__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .neighborhood-chip { font-size: 0.82rem; padding: 11px 10px; }
  .area-hero__photo-placeholder { height: 60vw; max-height: 260px; }
  .area-map__frame { height: 240px; }
}

/* ============================================================
   SERVICE PAGES — /services/*
   Classes: svc-hero, svc-includes, svc-pricing, svc-faq,
            svc-related, svc-areas
   ============================================================ */

/* ── SERVICE HERO ── */
.svc-hero {
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 64px 0;
}
.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 80% at 75% 55%, rgba(239,185,71,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 30%, rgba(239,185,71,0.03) 0%, transparent 60%),
    url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20100%20173%22%3E%3Cpolygon%20points%3D%2250%2C34.75%2093.5%2C59.75%2093.5%2C109.75%2050%2C134.75%206.5%2C109.75%206.5%2C59.75%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%220%2C-50%2043.5%2C-25%2043.5%2C25%200%2C50%20-43.5%2C25%20-43.5%2C-25%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%22100%2C-50%20143.5%2C-25%20143.5%2C25%20100%2C50%2056.5%2C25%2056.5%2C-25%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%220%2C119.5%2043.5%2C144.5%2043.5%2C194.5%200%2C219.5%20-43.5%2C194.5%20-43.5%2C144.5%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%22100%2C119.5%20143.5%2C144.5%20143.5%2C194.5%20100%2C219.5%2056.5%2C194.5%2056.5%2C144.5%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3C%2Fsvg%3E');
  background-size: auto, auto, 54px;
  pointer-events: none;
}
.svc-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.svc-hero__content {}
.svc-hero h1 {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 20px;
}
.svc-hero h1 em { font-style: italic; color: var(--bee-yellow); }
.svc-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 24px;
  font-weight: 300;
}
.svc-hero__rate-badge {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  max-width: 480px;
}
.svc-hero__rate-badge-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin-bottom: 4px;
}
.svc-hero__rate-badge-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--bee-yellow);
  line-height: 1;
}
.svc-hero__rate-unit {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-body);
}
.svc-hero__rate-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  max-width: 200px;
}
.svc-hero__rate-badge-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.svc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}
.svc-hero__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.svc-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.svc-hero__trust-item i { color: var(--bee-yellow); font-size: 0.8rem; }

/* Service hero image side */
.svc-hero__visual { position: relative; }
.svc-hero__img-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(239,185,71,0.12);
}
.svc-hero__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.svc-hero__img-accent {
  position: absolute;
  bottom: -12px; right: -12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: 1.5px solid rgba(239,185,71,0.22);
  border-radius: var(--radius-xl);
  z-index: 0;
  pointer-events: none;
}
/* Dark pill badge — subtle, sits over image bottom-left */
.svc-hero__img-badge {
  position: absolute;
  bottom: 24px;
  left: -16px;
  z-index: 2;
  background: rgba(14,14,14,0.88);
  border: 1px solid rgba(239,185,71,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-hero__img-badge-icon {
  width: 32px;
  height: 32px;
  background: rgba(239,185,71,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bee-yellow);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.svc-hero__img-badge-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.svc-hero__img-badge-label {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  margin-top: 3px;
  text-transform: uppercase;
}

/* ── WHAT'S INCLUDED ── */
.svc-includes { background: var(--near-black); position: relative; overflow: hidden; padding: 64px 0; }
.svc-includes .section-header { margin-bottom: 36px; }
.svc-includes .eyebrow { margin-bottom: 12px; }
.svc-includes .section-header h2 { color: var(--white); }
.svc-includes .section-header p { color: rgba(255,255,255,0.5); }
.svc-includes::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20100%20173%22%3E%3Cpolygon%20points%3D%2250%2C34.75%2093.5%2C59.75%2093.5%2C109.75%2050%2C134.75%206.5%2C109.75%206.5%2C59.75%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%220%2C-50%2043.5%2C-25%2043.5%2C25%200%2C50%20-43.5%2C25%20-43.5%2C-25%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%22100%2C-50%20143.5%2C-25%20143.5%2C25%20100%2C50%2056.5%2C25%2056.5%2C-25%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%220%2C119.5%2043.5%2C144.5%2043.5%2C194.5%200%2C219.5%20-43.5%2C194.5%20-43.5%2C144.5%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3Cpolygon%20points%3D%22100%2C119.5%20143.5%2C144.5%20143.5%2C194.5%20100%2C219.5%2056.5%2C194.5%2056.5%2C144.5%22%20fill%3D%22none%22%20stroke%3D%22rgba%28239%2C185%2C71%2C0.07%29%22%20stroke-width%3D%221.5%22%2F%3E%3C%2Fsvg%3E');
  background-size: 54px;
  pointer-events: none;
}
.svc-includes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.svc-include-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(239,185,71,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.svc-include-card:hover {
  border-color: rgba(239,185,71,0.3);
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}
.svc-include-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(239,185,71,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bee-yellow);
  font-size: 1.1rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.svc-include-card h3 {
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.svc-include-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ── PRICING BLOCK ── */
.svc-pricing { background: var(--off-white); }
.svc-pricing__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.svc-pricing__content h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 16px; }
.svc-pricing__content p { color: var(--gray-mid); line-height: 1.8; margin-bottom: 28px; }
.svc-pricing__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}
.svc-pricing__amount {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 8px;
}
.svc-pricing__dollar {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--bee-yellow);
  line-height: 1.2;
}
.svc-pricing__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.svc-pricing__unit {
  font-size: 1rem;
  color: var(--gray-mid);
  margin-bottom: 8px;
  font-weight: 500;
}
.svc-pricing__divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 24px 0;
}
.svc-pricing__includes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.svc-pricing__includes-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.svc-pricing__includes-item i {
  color: var(--bee-yellow);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.svc-pricing__note {
  font-size: 0.8rem;
  color: var(--gray-mid);
  text-align: center;
}

/* ── FAQ ── */
.svc-faq { background: var(--white); }
.svc-faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc-faq__item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.svc-faq__item:hover { border-color: rgba(239,185,71,0.35); }
.svc-faq__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.svc-faq__q:hover { color: var(--black); }
.svc-faq__q i {
  color: var(--bee-yellow);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.svc-faq__item.open .svc-faq__q i { transform: rotate(180deg); }
.svc-faq__a {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.75;
}
.svc-faq__item.open .svc-faq__a { display: block; }

/* ── RELATED SERVICES ── */
.svc-related { background: var(--off-white); }
.svc-related__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.svc-related-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  text-align: center;
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.svc-related-card:hover {
  border-color: var(--bee-yellow);
  background: var(--yellow-pale);
  transform: translateY(-3px);
}
.svc-related-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(239,185,71,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bee-yellow);
  font-size: 1.1rem;
}
.svc-related-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}
.svc-related-card__rate {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gray-mid);
  letter-spacing: 0.04em;
}

/* ── SERVICE AREAS STRIP ── */
.svc-areas { background: var(--near-black); }
.svc-areas__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.svc-area-link {
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.svc-area-link:hover {
  border-color: var(--bee-yellow);
  color: var(--bee-yellow);
  background: rgba(239,185,71,0.06);
}

/* ── SERVICE PAGE RESPONSIVE ── */
@media (max-width: 1024px) {
  .svc-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .svc-pricing__inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-includes__grid { grid-template-columns: repeat(3, 1fr); }
  .svc-related__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .svc-hero { padding-top: 40px; padding-bottom: 40px; }
  .svc-hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .svc-hero__sub { font-size: 0.97rem; line-height: 1.7; margin-bottom: 20px; }
  .svc-hero__actions { flex-direction: column; align-items: stretch; }
  .svc-hero__actions .btn { justify-content: center; min-height: 52px; }
  .svc-includes__grid { grid-template-columns: 1fr; }
  .svc-related__grid { grid-template-columns: repeat(2, 1fr); }
  .svc-pricing__card { padding: 28px 24px; }
  .svc-hero__rate-badge { flex-wrap: wrap; gap: 10px; }
  .svc-hero .breadcrumb { display: none; }
  .svc-hero .eyebrow { display: none; }
}
@media (max-width: 480px) {
  .svc-related__grid { grid-template-columns: 1fr 1fr; }
  .svc-hero__img-badge { left: 0; }
  .svc-hero__sub { font-size: 0.92rem; }
  .svc-areas__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .svc-area-link {
    text-align: center;
    justify-content: center;
    padding: 10px 8px;
  }
}
