@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* ============================================================
   HIGHLANDS HOME WATCH — Clean Mountain Modern
   highlandshomewatch.com
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Palette — logo colors only */
  --ivory:        #FDFCF9;           /* near-white page bg */
  --stone:        #F5EFE4;           /* warm off-white sections */
  --cream:        #E8D5A0;           /* logo ribbon cream */
  --sage-light:   #EAF0DE;           /* very light green tint */
  --slate:        #2E500F;           /* darkest green — hero bg */
  --forest:       #2E500F;           /* primary brand green */
  --sage:         #567832;           /* medium olive-sage */
  --brown:        #6B3C1C;           /* warm dark brown accent */
  --brown-dark:   #4A2910;           /* darker brown for hover */
  --brown-light:  #C4956A;           /* lighter brown tint */
  /* Legacy aliases so nothing breaks */
  --gold:         #6B3C1C;
  --gold-light:   #E8D5A0;
  --gold-dark:    #4A2910;
  --text:         #1E1E1A;           /* near black */
  --text-mid:     #4A4A42;           /* secondary text */
  --text-light:   #7A7A70;           /* subtle text */
  --border:       #DDD5C4;           /* warm light border */
  --border-dark:  #C8BDA8;
  --white:        #FFFFFF;

  /* Shadows */
  --shadow-xs:    0 1px 4px rgba(20,30,24,0.06);
  --shadow-sm:    0 2px 10px rgba(20,30,24,0.08);
  --shadow-md:    0 6px 24px rgba(20,30,24,0.11);
  --shadow-lg:    0 12px 48px rgba(20,30,24,0.15);

  /* Shape */
  --radius:       6px;
  --radius-md:    10px;
  --radius-lg:    16px;

  /* Motion */
  --transition:   all 0.22s ease;

  /* Layout */
  --max-width:    1140px;
  --nav-height:   130px;

  /* Typography */
  --font-head:    'Cinzel', 'Georgia', serif;
  --font-body:    'Crimson Pro', 'Georgia', serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: 'Crimson Pro', 'Georgia', 'Times New Roman', serif;
  font-size: 1.06rem;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', 'Georgia', serif;
  line-height: 1.2;
  color: var(--text);
  font-weight: 400;
}
p { margin-bottom: 1.2rem; font-size: 1.05rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--sage); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }
strong { font-weight: 700; color: var(--forest); }

/* ---- Utility ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.section      { padding: 88px 0; }
.section-sm   { padding: 56px 0; }
.section-lg   { padding: 112px 0; }
.text-center  { text-align: center; }
.text-gold    { color: var(--gold-dark); }
.text-sage    { color: var(--sage); }
.text-light-color { color: var(--text-light); }

/* ---- Eyebrow / Label ---- */
.eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  font-family: var(--font-head);
  display: block;
  margin-bottom: 0.85rem;
}
.eyebrow-gold { color: var(--gold-dark); }

/* ---- Gold rule divider ---- */
.gold-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}
.btn-dark {
  background: var(--slate);
  color: var(--white);
  border-color: var(--slate);
}
.btn-dark:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
  font-weight: bold;
}
.btn-gold:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-dark);
}
.btn-outline:hover {
  background: var(--stone);
  border-color: var(--sage);
  color: var(--forest);
}
.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-lg { padding: 16px 40px; font-size: 0.96rem; }
.btn-sm { padding: 9px 20px; font-size: 0.95rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---- Navigation ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
.nav-links > li { position: relative; margin-bottom: 0; }
.nav-links > li > a,
.nav-dropdown-toggle {
  display: block;
  padding: 6px 13px;
  color: var(--text-mid);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-head);
  transition: var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-dropdown-toggle:hover,
.nav-links > li > a.active { color: var(--forest); }
.nav-dropdown-toggle::after { content: ' ▾'; font-size: 0.65em; opacity: 0.6; }

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 6px;
  background: transparent;
  z-index: 100;
  min-width: 210px;
}
.dropdown-menu a {
  display: block;
  background: var(--white);
  padding: 10px 18px;
  color: var(--text-mid);
  font-size: 0.93rem;
  font-family: var(--font-head);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.dropdown-menu a:first-of-type {
  /* top border handled by group label or :first-child fallback */
}
.dropdown-menu a:last-of-type {
  border-bottom: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
}
.dropdown-menu a:hover {
  background: var(--stone);
  color: var(--forest);
  padding-left: 22px;
}

/* Grouped dropdown labels */
.dropdown-group-label {
  display: block;
  padding: 8px 16px 3px;
  font-family: var(--font-head);
  font-size: 0.60rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  background: var(--white);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
  pointer-events: none;
  user-select: none;
}
.dropdown-menu .dropdown-group-label:first-child {
  border-top: 2px solid var(--gold);
  border-radius: var(--radius) var(--radius) 0 0;
}

.nav-links > li:hover .dropdown-menu,
.nav-links > li:focus-within .dropdown-menu {
  display: block;
  box-shadow: var(--shadow-md);
}

/* Mega Menu (Communities) */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  z-index: 100;
  padding-top: 6px;
  min-width: 640px;
}
.mega-menu-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  overflow: hidden;
}
.mega-col {
  padding: 0.6rem 0 0.8rem;
  border-right: 1px solid var(--border);
}
.mega-col:last-child { border-right: none; }
.mega-col .dropdown-group-label {
  border: none;
  border-top: 1px solid var(--border);
  border-radius: 0;
  padding: 0.55rem 1rem 0.25rem;
  background: var(--stone);
  font-size: 0.58rem;
}
.mega-col .dropdown-group-label:first-child {
  border-top: none;
  background: transparent;
  padding-top: 0.35rem;
}
.mega-menu a {
  display: block;
  padding: 6px 16px;
  color: var(--text-mid);
  font-size: 0.86rem;
  font-family: var(--font-head);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.mega-menu a:hover {
  background: var(--stone);
  color: var(--forest);
  padding-left: 20px;
}
.nav-links > li:hover .mega-menu,
.nav-links > li:focus-within .mega-menu {
  display: block;
}
.nav-cta .btn { padding: 9px 18px; font-size: 0.95rem; }
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-mid);
}

/* ---- Hero: Split Layout (homepage) ---- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-height));
  max-height: 780px;
}
.hero-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px 72px 40px;
  max-width: 620px;
  margin: 0 0 0 auto;
  width: 100%;
}
.hero-split-photo {
  position: relative;
  overflow: hidden;
}
.hero-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-split-photo .photo-caption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(27,45,36,0.75);
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  font-style: italic;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.hero-h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--slate);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.hero-h1 em {
  font-style: italic;
  color: var(--sage);
}
.hero-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---- Hero: Page hero (interior pages — service & area pages) ---- */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--slate);
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 72px 0 60px;
}
.page-hero-dark {
  background: var(--slate);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.page-hero-dark h1 { color: var(--white); }
.page-hero-dark p { color: rgba(255,255,255,0.72); }
/* Page hero text — white because bg is dark slate + overlay */
.page-hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.page-hero p,
.page-hero .lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 0;
}
.page-hero .page-hero-eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  font-family: var(--font-head);
  display: block;
  margin-bottom: 0.75rem;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(27,45,36,0.82) 0%, rgba(27,45,36,0.55) 100%);
}
.page-hero-content,
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- Trust Strip ---- */
.trust-strip {
  background: var(--forest);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  font-family: var(--font-head);
  white-space: nowrap;
}
.trust-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- Section Headers ---- */
.section-label {
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-family: var(--font-head);
  display: block;
  margin-bottom: 0.6rem;
}
.section-heading {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--slate);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.7;
  max-width: 580px;
}
.section-sub.center { margin: 0 auto; text-align: center; }

/* ---- Founder Section ---- */
.founders-section {
  background: var(--stone);
  padding: 96px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.founder-intro {
  padding-right: 20px;
}
.founder-intro .section-heading {
  margin-bottom: 1.2rem;
}
.founder-intro p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.founder-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.founder-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.founder-photo-placeholder {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--sage-light);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.founder-photo-placeholder span {
  font-size: 3rem;
  color: var(--sage);
  font-family: var(--font-head);
  font-weight: normal;
  opacity: 0.5;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.founder-photo-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.founder-info { padding: 18px 20px 20px; }
.founder-name {
  font-size: 1.05rem;
  color: var(--slate);
  font-weight: bold;
  font-family: var(--font-head);
  margin-bottom: 0.15rem;
}
.founder-role {
  font-size: 0.95rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-head);
}

/* ---- How It Works ---- */
.steps-section { padding: 88px 0; }
.steps-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 3rem;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 0 20px;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--slate);
  font-size: 1.1rem;
  font-weight: bold;
  font-family: var(--font-head);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.step-card h3 {
  font-size: 1.1rem;
  color: var(--slate);
  margin-bottom: 0.6rem;
}
.step-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-body { padding: 28px; }

/* ---- Service Cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-top: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.service-card-img { width: 100%; height: 180px; object-fit: cover; }
.service-card-body { padding: 24px; }
.service-card-title { font-size: 1.15rem; color: var(--slate); margin-bottom: 0.5rem; }
.service-card-text { color: var(--text-mid); font-size: 1rem; margin-bottom: 1rem; }
.service-card-link {
  color: var(--gold-dark);
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-card-link:hover { color: var(--forest); gap: 10px; }

/* ---- Pricing Cards ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 2.5rem;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured::before {
  content: none;
}
.pricing-tier-label {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.3rem;
  font-family: var(--font-head);
}
.pricing-card-title { font-size: 1.5rem; color: var(--slate); margin-bottom: 0.3rem; }
.pricing-visits {
  font-size: 0.96rem;
  color: var(--text-mid);
  margin-bottom: 1.4rem;
  font-style: italic;
}
.pricing-sizes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 1.6rem;
  padding: 16px;
  background: var(--stone);
  border-radius: var(--radius-md);
}
.pricing-size-option {}
.pricing-size-label {
  font-size: 0.95rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-head);
  margin-bottom: 0.2rem;
}
.pricing-price {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--slate);
  font-family: var(--font-head);
  line-height: 1;
}
.pricing-per-visit {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}
.pricing-divider {
  width: 1px;
  background: var(--border);
  margin: 0 4px;
}
.pricing-includes {
  list-style: none;
  padding: 0;
  margin-bottom: 1.8rem;
}
.pricing-includes li {
  font-size: 0.96rem;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--stone);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0;
}
.pricing-includes li:last-child { border-bottom: none; }
.pricing-includes li::before {
  content: '✓';
  color: var(--sage);
  flex-shrink: 0;
  font-weight: bold;
  margin-top: 1px;
}

/* ---- Flexible Visits Explainer ---- */
.visits-explainer {
  background: var(--sage-light);
  border: 1px solid rgba(90,112,96,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 3rem;
}
.visits-explainer p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; margin: 0; }
.visits-explainer strong { color: var(--forest); }

/* ---- Breadcrumb ---- */
.breadcrumb {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
  font-style: normal !important;
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; opacity: 0.5; }

/* ---- Feature list (service pages) ---- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.5rem;
}
.feature-list li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.75;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '';
  position: absolute; left: 0; top: 17px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.walkthrough-checklist {
  list-style: none;
  padding: 0; margin: 1rem 0;
}
.walkthrough-checklist li {
  padding: 9px 0 9px 26px;
  position: relative;
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.7;
  border-bottom: 1px solid rgba(224,218,208,0.6);
  margin-bottom: 0;
}
.walkthrough-checklist li:last-child { border-bottom: none; }
.walkthrough-checklist li::before {
  content: '✓';
  position: absolute; left: 0; top: 9px;
  color: var(--sage); font-weight: bold; font-size: 0.9rem;
}

/* ---- CTA sidebar card ---- */
.sidebar-card { overflow: hidden; }
.cta-card {
  background: var(--forest) !important;
  border-color: var(--forest) !important;
  border-top: 2px solid var(--gold) !important;
  text-align: center;
}
.cta-card h3 { color: var(--white) !important; }
.cta-card p { color: rgba(255,255,255,0.72) !important; }
.cta-card .btn {
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  margin-top: 1.2rem;
  white-space: normal;
  padding-left: 12px;
  padding-right: 12px;
  line-height: 1.3;
}

/* ---- Section header block (pricing/about/etc) ---- */
.section-header { margin-bottom: 52px; }
.section-header .section-label { display: block; margin-bottom: 8px; }
.section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--slate);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.7;
  max-width: 600px;
}
.section-header.text-center .section-subtitle { margin: 0 auto; }

/* ---- Content pages (service / area) ---- */
/* .content-grid is the actual class used in the HTML — alias for content-with-sidebar */
.content-grid,
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
  padding: 64px 0 88px;
}
.content-body h2 {
  font-size: 1.5rem;
  color: var(--slate);
  margin-top: 0;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.content-body h3 {
  font-size: 1.15rem;
  color: var(--forest);
  margin-top: 2.5rem;
  margin-bottom: 0.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.content-body h3:first-of-type { margin-top: 1rem; padding-top: 0; border-top: none; }
.content-body p { font-size: 1.05rem; color: var(--text); line-height: 1.85; margin-bottom: 1.2rem; }
.content-body ul li { color: var(--text); font-size: 0.95rem; line-height: 1.75; margin-bottom: 0.35rem; }

.content-section {
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
}
.content-section:first-child { padding-top: 48px; }
.content-section:last-child { border-bottom: none; padding-bottom: 24px; }

/* .main-content-area (service pages) */
.main-content-area .content-section { padding: 44px 0; border-bottom: 1px solid var(--border); }
.main-content-area .content-section:first-child { padding-top: 48px; }
.main-content-area .content-section:last-child { border-bottom: none; }
.main-content-area h2 {
  font-size: 1.5rem;
  color: var(--slate);
  margin-top: 0;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

/* .page-layout + .main-content (concierge / vendor / pre-arrival) */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 56px;
  align-items: start;
  padding: 56px 0 80px;
}
.main-content .intro-section,
.main-content .content-section {
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.main-content .intro-section:first-child { padding-top: 0; }
.main-content .content-section:last-child { border-bottom: none; padding-bottom: 16px; }
.main-content h2 {
  font-size: 1.5rem;
  color: var(--slate);
  margin-top: 0;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.main-content p { font-size: 1.05rem; color: var(--text); line-height: 1.85; margin-bottom: 1.25rem; }
.main-content ul li { font-size: 0.95rem; color: var(--text); line-height: 1.8; margin-bottom: 0.3rem; }

/* Service cards in content pages */
.main-content .service-card,
.services-grid .service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.main-content .service-card:hover,
.services-grid .service-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.main-content .service-card > h3,
.services-grid .service-card > h3 {
  background: var(--forest);
  color: var(--white);
  margin: 0;
  padding: 13px 18px;
  font-size: 0.95rem;
  font-family: var(--font-head);
  font-weight: 600;
}
.main-content .service-card > ul,
.services-grid .service-card > ul {
  list-style: none;
  padding: 8px 18px 14px;
  margin: 0;
  flex: 1;
}
.main-content .service-card > ul li,
.services-grid .service-card > ul li {
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.5;
  padding: 7px 0 7px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  position: relative;
  margin-bottom: 0;
}
.main-content .service-card > ul li:last-child,
.services-grid .service-card > ul li:last-child { border-bottom: none; }
.main-content .service-card > ul li::before,
.services-grid .service-card > ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---- Sidebar ---- */
.sidebar-card {
  background: var(--stone);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--border);
  margin-bottom: 22px;
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}
.sidebar-card h3 { font-size: 1rem; margin-bottom: 1rem; color: var(--slate); }
.sidebar-card p { font-size: 0.96rem; color: var(--text-light); }
.sidebar-links { list-style: none; padding: 0; }
.sidebar-links li { border-bottom: 1px solid var(--border); margin-bottom: 0; }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  font-size: 0.95rem;
  color: var(--text-mid);
  transition: var(--transition);
}
.sidebar-links a:hover { color: var(--forest); padding-left: 4px; }
.sidebar-links a::after { content: '→'; font-size: 0.96rem; opacity: 0.5; }

/* ---- Photo Grid ---- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2.5rem 0;
}
.photo-grid img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s ease; }
.photo-grid img:hover { transform: scale(1.03); }
.photo-grid img:first-child { grid-column: span 2; height: 260px; }

/* ---- 100-Client Callout ---- */
.hundred-callout {
  background: var(--slate);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hundred-callout::before {
  content: '100';
  position: absolute;
  font-size: 14rem;
  font-weight: bold;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-head);
  pointer-events: none;
}
.hundred-callout h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 0.5rem; }
.hundred-callout p { color: rgba(255,255,255,0.72); font-size: 0.92rem; margin: 0; line-height: 1.7; }

/* ---- Areas Grid ---- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.area-pill {
  display: block;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.96rem;
  font-family: var(--font-head);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.area-pill:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.area-pill::after { content: '→'; font-size: 0.96rem; opacity: 0.5; }
.area-pill:hover::after { opacity: 1; }

/* .pill is used by service pages for area link pills */
.pill {
  display: inline-block;
  padding: 7px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  font-size: 0.94rem;
  color: var(--text-mid);
  font-family: var(--font-head);
  transition: var(--transition);
  text-decoration: none;
}
.pill:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.areas-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 0.5rem; }

/* Area card (image-based) */
.area-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 190px;
  display: block;
  text-decoration: none;
}
.area-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.area-card:hover img { transform: scale(1.05); }
.area-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,45,36,0.82) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px 14px;
  transition: var(--transition);
}
.area-card-name { color: var(--white); font-size: 0.95rem; font-family: var(--font-head); }
.area-card-state { color: var(--gold-light); font-size: 0.92rem; letter-spacing: 0.07em; display: block; }

/* ---- Testimonials ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 3px; }
.testimonial-text { font-style: italic; font-size: 1.05rem; color: var(--text); margin-bottom: 1.1rem; line-height: 1.75; }
.testimonial-author { font-weight: bold; font-size: 0.93rem; color: var(--slate); }
.testimonial-location { font-size: 0.95rem; color: var(--text-light); }

/* ---- Stats Bar ---- */
.stats-strip { background: var(--forest); padding: 48px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number { font-size: 2.6rem; font-weight: bold; color: var(--brown); display: block; font-family: var(--font-head); }
.stat-label { font-size: 0.95rem; color: rgba(255,255,255,0.65); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--slate);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.cta-banner p { color: rgba(255,255,255,0.68); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2rem; font-style: italic; line-height: 1.7; }

/* ---- Waitlist / Availability Banner ---- */
.availability-banner {
  background: var(--gold);
  padding: 11px 0;
  text-align: center;
  color: var(--white);
}
.availability-banner p {
  font-size: 0.94rem;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: bold;
  letter-spacing: 0.02em;
  margin: 0;
}
.availability-banner strong { color: var(--cream); font-weight: 800; }
.availability-banner a { color: var(--cream); text-decoration: underline; font-weight: 600; }

/* ---- Internal Links ---- */
.internal-links-section {
  background: var(--stone);
  padding: 44px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.links-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.links-pill {
  display: inline-block;
  padding: 7px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  font-size: 0.92rem;
  color: var(--text-mid);
  transition: var(--transition);
}
.links-pill:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }

/* ---- Forms ---- */
.form-group { margin-bottom: 1.3rem; }
.form-label {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.45rem;
  font-family: var(--font-head);
}
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-family: var(--font-head);
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(90,112,96,0.10);
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- Contact Page ---- */
.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
  padding: 60px 0 80px;
}
.contact-page-layout .contact-form { max-width: none; }
.contact-form-section h2 {
  font-size: 1.5rem;
  color: var(--slate);
  margin-top: 0;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.contact-form-section > p { font-size: 1.05rem; color: var(--text-mid); margin-top: 0.75rem; margin-bottom: 1.75rem; font-style: italic; }
.contact-info-section {
  background: var(--stone);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}
.contact-info-section > h3 { font-size: 1rem; color: var(--slate); margin-bottom: 1.2rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); font-family: var(--font-head); margin-top: 0; }
.contact-info-block { padding: 11px 0; border-bottom: 1px solid var(--border); }
.contact-info-block:last-child { border-bottom: none; }
.contact-info-block h4 { font-size: 0.95rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.2rem; font-family: var(--font-head); }
.contact-info-block p { font-size: 0.96rem; color: var(--text); margin-bottom: 0; }
.contact-info-block a { color: var(--sage); }
.contact-info-block a:hover { color: var(--gold-dark); }
.contact-cta-block { background: var(--forest); border-radius: var(--radius); padding: 18px; margin-top: 1.2rem; border: none; border-bottom: none !important; }
.contact-cta-block p { color: rgba(255,255,255,0.82); font-size: 0.95rem; margin-bottom: 0.8rem; }
.contact-next-steps { background: var(--stone); padding: 64px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.contact-next-steps h2 { display: inline-block; font-size: 1.5rem; color: var(--slate); margin-bottom: 2.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: left; }
.step-item { background: var(--white); border-radius: var(--radius-lg); padding: 24px 20px; border: 1px solid var(--border); border-top: 2px solid var(--forest); }
.step-number { width: 40px; height: 40px; background: var(--gold); color: var(--slate); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: bold; font-family: var(--font-head); margin-bottom: 0.9rem; }
.step-item h4 { font-size: 0.97rem; color: var(--slate); margin-bottom: 0.4rem; }
.step-item p { font-size: 0.94rem; color: var(--text-light); line-height: 1.7; margin: 0; }
.contact-map-section { padding: 64px 0; text-align: center; }
.contact-map-section h2 { display: inline-block; font-size: 1.5rem; color: var(--slate); margin-bottom: 2rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); }
.map-placeholder { background: var(--stone); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px 36px; max-width: 800px; margin: 0 auto; }
.map-service-areas { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 1.2rem; }
.area-badge { display: inline-block; padding: 6px 14px; background: var(--forest); color: var(--white); border-radius: 24px; font-size: 0.96rem; font-family: var(--font-head); }
.contact-services-overview { background: var(--stone); padding: 64px 0; text-align: center; border-top: 1px solid var(--border); }
.contact-services-overview h2 { display: inline-block; font-size: 1.5rem; color: var(--slate); margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); }
.contact-services-overview .container > p { color: var(--text-mid); font-style: italic; margin-bottom: 1.75rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.services-overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: left; margin-bottom: 2rem; }
.service-overview-card { display: block; background: var(--white); border: 1px solid var(--border); border-top: 2px solid var(--gold); border-radius: var(--radius-lg); padding: 20px 18px; text-decoration: none; transition: var(--transition); color: inherit; }
.service-overview-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); border-color: var(--gold); color: inherit; }
.service-overview-card h4 { color: var(--slate); font-size: 0.95rem; margin-bottom: 0.35rem; }
.service-overview-card p { color: var(--text-mid); font-size: 0.93rem; line-height: 1.6; margin: 0; }

/* ---- About Page ---- */
.about-content section { padding: 52px 0; border-bottom: 1px solid var(--border); }
.about-content section:first-child { padding-top: 48px; }
.about-content section:last-child { border-bottom: none; padding-bottom: 40px; }
.about-content h2 { font-size: 1.5rem; color: var(--slate); margin-top: 0; margin-bottom: 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); display: inline-block; }
.about-content p { font-size: 0.97rem; color: var(--text); line-height: 1.85; margin-bottom: 1.25rem; }
.values-grid, .credentials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 1.5rem; }
.value-item, .credential-item { background: var(--stone); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--border); border-top: 2px solid var(--gold); }
.value-item h4, .credential-item h4 { font-size: 1rem; color: var(--slate); margin-bottom: 0.5rem; margin-top: 0; }
.value-item p, .credential-item p { font-size: 0.96rem; color: var(--text-mid); line-height: 1.72; margin: 0; }
.service-areas-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.1rem; }
.area-link { display: inline-block; padding: 7px 16px; background: var(--forest); color: var(--white) !important; border-radius: 24px; font-size: 0.94rem; font-family: var(--font-head); transition: var(--transition); text-decoration: none; }
.area-link:hover { background: var(--gold-dark); color: var(--white) !important; }

/* ---- Checklist ---- */
.checklist-intro { background: var(--stone); padding: 48px 0; border-bottom: 1px solid var(--border); }
.checklist-intro-inner { display: grid; grid-template-columns: 1fr 280px; gap: 44px; align-items: start; }
.checklist-intro h2 { display: inline-block; font-size: 1.5rem; color: var(--slate); margin-bottom: 0.9rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); margin-top: 0; }
.checklist-intro p { font-size: 0.97rem; color: var(--text); line-height: 1.85; }
.legend-card { background: var(--white); border: 1px solid var(--border); border-top: 2px solid var(--gold); border-radius: var(--radius-lg); padding: 22px; }
.legend-card h4 { font-size: 0.95rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.9rem; font-family: var(--font-head); }
.legend-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 0.94rem; color: var(--text); }
.legend-check { color: var(--forest); font-weight: bold; font-size: 1rem; min-width: 18px; }
.legend-dash { color: #AAAAAA; font-weight: bold; font-size: 1rem; min-width: 18px; }
.freq-section { padding: 48px 0; border-bottom: 1px solid var(--border); }
.freq-section h2 { display: inline-block; font-size: 1.5rem; color: var(--slate); margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); margin-top: 0; }
.freq-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.freq-card { background: var(--white); border: 1px solid var(--border); border-top: 2px solid var(--forest); border-radius: var(--radius-lg); padding: 20px 18px; }
.freq-card.featured { border-top-color: var(--gold); }
.freq-tier { font-size: 0.95rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); font-family: var(--font-head); margin-bottom: 0.3rem; }
.freq-name { font-size: 0.97rem; color: var(--slate); font-family: var(--font-head); font-weight: bold; margin-bottom: 0.4rem; }
.freq-desc { font-size: 0.92rem; color: var(--text-light); line-height: 1.6; }
.checklist-section { padding: 48px 0; }
.checklist-section h2 { display: inline-block; font-size: 1.5rem; color: var(--slate); margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); margin-top: 0; }
.checklist-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-xs); }
.checklist-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; font-family: var(--font-body); min-width: 700px; }
.checklist-table thead th { background: var(--slate); color: var(--white); padding: 13px 15px; text-align: left; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; border-right: 1px solid rgba(255,255,255,0.1); }
.checklist-table thead th:first-child { border-radius: var(--radius-lg) 0 0 0; min-width: 210px; }
.checklist-table thead th:last-child { border-radius: 0 var(--radius-lg) 0 0; border-right: none; }
.checklist-table thead th.tier-header { text-align: center; }
.checklist-table tr.section-header td { background: rgba(27,45,36,0.06); color: var(--forest); font-weight: bold; font-size: 0.92rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 9px 15px; border-top: 2px solid var(--border); border-bottom: 1px solid var(--border); }
.checklist-table tbody tr:not(.section-header):hover { background: rgba(196,160,82,0.04); }
.checklist-table tbody td { padding: 9px 15px; border-bottom: 1px solid rgba(224,218,208,0.5); color: var(--text); border-right: 1px solid rgba(224,218,208,0.4); }
.checklist-table tbody td:last-child { border-right: none; }
.checklist-table tbody td.tier-cell { text-align: center; white-space: nowrap; }
.check { color: var(--forest); font-size: 1rem; font-weight: bold; }
.dash { color: #BBBBBB; font-size: 1rem; }
.note { font-size: 0.95rem; color: var(--text-light); font-style: italic; display: block; margin-top: 2px; }
.addon { font-size: 0.92rem; color: var(--gold-dark); font-style: italic; display: block; }
.notes-section { background: var(--stone); padding: 52px 0; border-top: 1px solid var(--border); }
.notes-section h2 { display: inline-block; font-size: 1.5rem; color: var(--slate); margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); margin-top: 0; }
.notes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 2rem; }
.note-item { background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 18px; font-size: 0.96rem; color: var(--text-mid); line-height: 1.7; }
.download-card { background: var(--forest); border-radius: var(--radius-lg); padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.download-card-text h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.25rem; }
.download-card-text p { color: rgba(255,255,255,0.7); font-size: 0.96rem; margin: 0; }

/* ---- Badges ---- */
.badge { display: inline-block; padding: 3px 11px; border-radius: 20px; font-size: 0.92rem; letter-spacing: 0.07em; text-transform: uppercase; font-weight: bold; font-family: var(--font-head); }
.badge-gold { background: rgba(107,60,28,0.10); color: var(--brown); border: 1px solid rgba(107,60,28,0.25); }
.badge-forest { background: rgba(39,63,48,0.08); color: var(--forest); border: 1px solid rgba(39,63,48,0.18); }
.badge-sage { background: var(--sage-light); color: var(--sage); border: 1px solid rgba(90,112,96,0.2); }

/* ---- Footer ---- */
.site-footer {
  background: var(--cream);
  color: var(--text);
  padding: 64px 0 0;
  border-top: 2px solid var(--border-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-tagline { font-size: 0.92rem; color: var(--text-mid); margin: 1rem 0 1.4rem; font-style: italic; line-height: 1.65; }
.footer-heading { font-size: 0.92rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--forest); margin-bottom: 1.1rem; font-family: var(--font-head); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 7px; }
.footer-links a { font-size: 0.92rem; color: var(--text-mid); transition: var(--transition); }
.footer-links a:hover { color: var(--forest); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.92rem; color: var(--text-mid); margin-bottom: 9px; }
.footer-contact-icon { color: var(--forest); flex-shrink: 0; margin-top: 2px; }
.footer-badges { display: flex; align-items: center; justify-content: center; gap: 2rem; padding: 1.4rem 0 0.6rem; border-top: 1px solid var(--border); }
.footer-badge-img { height: 64px; width: auto; display: block; opacity: 0.85; transition: opacity 0.2s; }
.footer-badges a:hover .footer-badge-img { opacity: 1; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.92rem; color: var(--text-light); }
.footer-bottom a { color: var(--text-mid); }
.footer-bottom a:hover { color: var(--forest); }
.footer-contact-item a { color: var(--text-mid); }
.footer-contact-item a:hover { color: var(--forest); }

/* ---- FAQ ---- */
.faq-item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { font-size: 1rem; color: var(--slate); margin-bottom: 0.5rem; cursor: pointer; }
.faq-item p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin: 0; }


/* ── READABILITY OVERRIDES ────────────────────────────────── */
/* Body/card/FAQ text set to 18px explicitly — never scales headings */
.section p,
.section-sub,
.service-card-text,
.service-card-body p,
.step-card p,
.founder-intro p,
.hero-lead,
.pkg-features li,
.explainer-callout p,
.flex-example p,
.faq-item p,
.faq-item-new p,
.addon-card-new p,
.about-story p,
.values-grid p, .credentials-grid p,
.value-item p, .credential-item p,
.page-hero p, .page-hero .lead,
.main-content p,
.main-content ul li,
.main-content ol li,
.services-grid .service-card ul li,
.content-with-sidebar p,
.cta-card p,
.hundred-callout p,
.checklist-intro p,
.intro-section p,
.content-section p,
.content-section ul li,
footer .footer-tagline { font-size: 18px; line-height: 1.82; }

/* Homepage pricing cards — prevent size labels from wrapping */
.pricing-size-label { white-space: nowrap; }

/* Labels, badges and eyebrows — small but readable */
.eyebrow, .section-label, .pkg-popular-badge,
.freq-tier, .badge, .breadcrumb,
.footer-heading { font-size: 0.92rem !important; }

/* Table and small-UI text — floor at 0.82rem */
.checklist-table, .checklist-table td, .checklist-table th,
.area-card-name, .area-pill, .area-link,
.footer-bottom { font-size: 0.96rem; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; max-height: none; }
  .hero-split-text { padding: 64px 28px; max-width: 100%; margin: 0; }
  .hero-split-photo { height: 400px; }
  .founders-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .page-layout { grid-template-columns: 1fr; gap: 36px; padding: 44px 0 60px; }
  .contact-page-layout { grid-template-columns: 1fr; gap: 36px; padding: 44px 0 60px; }
  .contact-info-section { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .services-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .freq-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid, .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .checklist-intro-inner { grid-template-columns: 1fr; }
  .founder-cards { grid-template-columns: 1fr 1fr; }
  /* Services & areas photo grids */
  [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
  .areas-grid[style*="grid-template-columns:repeat(5,1fr)"] { grid-template-columns: repeat(3, 1fr) !important; }
}
/* ─── Mobile nav (≤820px) ────────────────────────────────────── */
@media (max-width: 820px) {
  /* Hide desktop nav; show hamburger */
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-inner { height: auto; padding: 10px 20px; }

  /* Slide-down nav panel when .open */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--forest);
    padding: 8px 0 16px;
    gap: 0;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    max-height: 80vh;
    overflow-y: auto;
  }

  /* Top-level items */
  .nav-links.open > li { border-bottom: 1px solid var(--border); }
  .nav-links.open > li > a,
  .nav-links.open .nav-dropdown-toggle {
    display: block;
    width: 100%;
    padding: 13px 20px;
    font-size: 0.92rem;
    color: var(--text);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
  }
  /* Arrow indicator on dropdown toggles */
  .nav-links.open .nav-dropdown-toggle::after {
    content: ' ▸';
    font-size: 0.7em;
    opacity: 0.5;
    float: right;
    transition: transform 0.2s;
  }
  .nav-links.open li.nav-sub-open > .nav-dropdown-toggle::after {
    content: ' ▾';
  }

  /* Submenus: hidden by default, shown only when parent has .nav-sub-open */
  .nav-links.open .dropdown-menu,
  .nav-links.open .mega-menu {
    display: none;
    position: static;
    transform: none;
    min-width: 0;
    padding: 0;
    box-shadow: none;
  }
  .nav-links.open li.nav-sub-open > .dropdown-menu,
  .nav-links.open li.nav-sub-open > .mega-menu {
    display: block;
    background: var(--stone);
    border-top: 1px solid var(--border);
  }

  /* Dropdown links in mobile panel */
  .nav-links.open .dropdown-menu a,
  .nav-links.open .dropdown-group-label {
    background: transparent;
    border: none;
    padding: 10px 20px 10px 28px;
    font-size: 0.88rem;
  }
  .nav-links.open .dropdown-group-label {
    padding-top: 12px;
    padding-bottom: 4px;
    font-size: 0.58rem;
    color: var(--text-light);
    background: transparent;
  }

  /* Mega menu: flat stacked list on mobile */
  .nav-links.open .mega-menu-inner {
    display: block;
    border: none;
    box-shadow: none;
    background: transparent;
  }
  .nav-links.open .mega-col {
    border-right: none;
    padding: 0;
  }
  .nav-links.open .mega-col .dropdown-group-label {
    background: transparent;
    padding-left: 28px;
    border: none;
    border-top: 1px solid var(--border);
    padding-top: 10px;
  }
  .nav-links.open .mega-col:first-child .dropdown-group-label:first-child {
    border-top: none;
    padding-top: 8px;
  }
  .nav-links.open .mega-menu a {
    background: transparent;
    padding: 9px 20px 9px 28px;
    font-size: 0.88rem;
    white-space: normal;
  }
  .nav-links.open .mega-menu a:hover { background: var(--cream); padding-left: 32px; }
}

/* ─── Tablet layout (≤768px) ─────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .section-lg { padding: 64px 0; }
  .hero-split-text { padding: 48px 20px; }
  .steps-grid-3 { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .notes-grid { grid-template-columns: 1fr; }
  .services-overview-grid { grid-template-columns: 1fr; }
  .values-grid, .credentials-grid { grid-template-columns: 1fr; }
  .download-card { flex-direction: column; align-items: flex-start; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  /* Inline grids: 3-col → 1-col */
  [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
  .areas-grid[style*="grid-template-columns:repeat(5,1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
  /* Checklist table */
  .checklist-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  /* Trust strip — wrap to 2-col */
  .trust-items { flex-wrap: wrap; gap: 10px 20px; justify-content: center; }
  /* Page hero */
  .page-hero-content h1 { font-size: 2rem; }
  .page-hero-content .lead { font-size: 1rem; }
  /* Sidebar cards stack */
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  /* CTA banner */
  .cta-banner .btn-row { flex-direction: column; align-items: center; gap: 12px; }
}

/* ─── Small mobile (≤480px) ─────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 12px 22px; }
  .hero-h1 { font-size: 1.9rem; }
  .page-hero-content h1 { font-size: 1.75rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .freq-grid { grid-template-columns: 1fr; }
  .founder-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 8px 16px; justify-content: flex-start; }
  /* Agreement form */
  .field-row, .field-row.thirds { grid-template-columns: 1fr; }
  .sig-block { grid-template-columns: 1fr; }
  .payment-methods { grid-template-columns: 1fr 1fr; }
  .progress-step span { display: none; }
  .progress-step { padding: 1rem; }
  /* Inline two-col grids → single col */
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  /* Pricing cards on small screens */
  .addons-grid-new { grid-template-columns: 1fr !important; }
  .packages-grid { grid-template-columns: 1fr !important; }
}
