/* ==========================================================================
   Harlingen Pest Pro — "Verified Service Grid"
   Cool navy/cyan, geometric sans (Sora + Manrope), dispatch-directory UI.
   Distinct from Brownsville (organic green/rounded) and McAllen (desert serif).
   ========================================================================== */

:root {
  /* Palette — cool, clinical, trustworthy */
  --hsl-navy: #0d2b45;
  --hsl-navy-2: #143a59;
  --hsl-navy-3: #1d4e74;
  --hsl-cyan: #0891b2;
  --hsl-cyan-2: #06b6d4;
  --hsl-cyan-soft: #e0f2fe;
  --hsl-ice: #f8fafc;
  --hsl-ice-2: #f1f5f9;
  --hsl-ice-3: #e9eef4;
  --hsl-white: #ffffff;
  --hsl-slate: #1e293b;
  --hsl-slate-2: #475569;
  --hsl-slate-3: #64748b;
  --hsl-line: #e2e8f0;
  --hsl-success: #15803d;
  --hsl-success-soft: #dcfce7;
  --hsl-warn: #b45309;

  /* Type */
  --hsl-font-display: "Sora", system-ui, sans-serif;
  --hsl-font-body: "Manrope", system-ui, sans-serif;

  /* Scale */
  --hsl-text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --hsl-text-sm: clamp(0.875rem, 0.82rem + 0.3vw, 0.9375rem);
  --hsl-text-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  --hsl-text-lg: clamp(1.25rem, 1rem + 1.2vw, 1.75rem);
  --hsl-text-xl: clamp(1.75rem, 1.3rem + 2.2vw, 2.75rem);
  --hsl-text-2xl: clamp(2.25rem, 1.5rem + 3.5vw, 3.75rem);

  /* Spacing */
  --hsl-space-1: 4px;
  --hsl-space-2: 8px;
  --hsl-space-3: 12px;
  --hsl-space-4: 16px;
  --hsl-space-5: 24px;
  --hsl-space-6: 32px;
  --hsl-space-7: 48px;
  --hsl-space-8: 64px;
  --hsl-space-9: 96px;

  /* Radius — medium, modern-app feel */
  --hsl-r-sm: 6px;
  --hsl-r-md: 10px;
  --hsl-r-lg: 14px;
  --hsl-r-pill: 9999px;

  --hsl-shadow-sm: 0 1px 2px rgba(13, 43, 69, 0.06);
  --hsl-shadow-md: 0 4px 14px rgba(13, 43, 69, 0.08);
  --hsl-shadow-lg: 0 12px 32px rgba(13, 43, 69, 0.12);
  --hsl-trans: 160ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: none; text-size-adjust: none;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  font-family: var(--hsl-font-body);
  font-size: var(--hsl-text-base); line-height: 1.65;
  color: var(--hsl-slate); background: var(--hsl-ice);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--hsl-cyan); text-decoration: none; transition: color var(--hsl-trans); }
a:hover { color: var(--hsl-navy-3); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--hsl-font-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 var(--hsl-space-5); }

/* Reveal-on-scroll fallback */
.reveal { opacity: 1; transform: none; transition: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--hsl-navy); color: #fff; padding: 10px 16px;
  border-radius: 0 0 var(--hsl-r-md) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Buttons */
.btn-solid, .btn-ghost, .btn-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--hsl-font-body); font-size: var(--hsl-text-sm); font-weight: 700;
  padding: 12px 22px; border-radius: var(--hsl-r-pill); border: none; cursor: pointer;
  text-decoration: none; transition: all var(--hsl-trans);
}
.btn-solid { background: var(--hsl-cyan); color: #fff; box-shadow: var(--hsl-shadow-md); }
.btn-solid:hover { background: var(--hsl-navy-3); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--hsl-navy); border: 1.5px solid var(--hsl-line); }
.btn-ghost:hover { border-color: var(--hsl-cyan); color: var(--hsl-cyan); }
.btn-link { background: none; color: var(--hsl-cyan); padding: 6px 0; border-radius: 0; font-weight: 700; }
.btn-link::after { content: " \2192"; transition: margin var(--hsl-trans); }
.btn-link:hover::after { margin-left: 4px; }

/* ==========================================================================
   Site nav (header)
   ========================================================================== */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hsl-line);
}
.site-nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--hsl-space-4);
  height: 68px;
}
.brand-cluster { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  width: 36px; height: 36px; color: var(--hsl-cyan); flex-shrink: 0;
}
.brand-name {
  font-family: var(--hsl-font-display); font-weight: 700; font-size: 1.0625rem;
  color: var(--hsl-navy); line-height: 1.2;
}
.brand-sub { font-size: 0.6875rem; color: var(--hsl-slate-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: var(--hsl-text-sm); font-weight: 600; color: var(--hsl-slate);
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--hsl-cyan); transition: width var(--hsl-trans);
}
.nav-links a:hover { color: var(--hsl-cyan); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: inline-flex; }
.menu-btn {
  display: none; background: none; border: none; cursor: pointer; padding: 6px;
  color: var(--hsl-navy);
}
.menu-btn svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .brand-sub { display: none; }
  .site-nav-inner { height: 60px; }
  .site-nav.menu-open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--hsl-white); border-bottom: 1px solid var(--hsl-line);
    padding: var(--hsl-space-5); gap: 18px; box-shadow: var(--hsl-shadow-lg);
  }
  .site-nav.menu-open .nav-cta { align-self: flex-start; }
}

/* ==========================================================================
   Landing (hero) — full-width, directory-dispatch feel
   ========================================================================== */
.landing {
  background:
    radial-gradient(ellipse at top right, rgba(6, 182, 212, 0.10), transparent 55%),
    linear-gradient(180deg, var(--hsl-ice) 0%, var(--hsl-ice-2) 100%);
  padding: var(--hsl-space-8) 0 var(--hsl-space-7);
  border-bottom: 1px solid var(--hsl-line);
}
.landing-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: var(--hsl-space-7); align-items: center;
}
.landing-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--hsl-cyan-soft); color: var(--hsl-navy-3);
  font-size: var(--hsl-text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 6px 14px; border-radius: var(--hsl-r-pill);
  margin-bottom: var(--hsl-space-4);
}
.landing-kicker svg { width: 14px; height: 14px; }
.landing-title {
  font-size: var(--hsl-text-2xl); color: var(--hsl-navy); margin-bottom: var(--hsl-space-4);
}
.landing-title em { font-style: normal; color: var(--hsl-cyan); }
.landing-lede {
  font-size: var(--hsl-text-lg); color: var(--hsl-slate-2);
  max-width: 38ch; margin-bottom: var(--hsl-space-5);
}
.landing-actions { display: flex; flex-wrap: wrap; gap: var(--hsl-space-3); margin-bottom: var(--hsl-space-5); }
.landing-note { font-size: var(--hsl-text-sm); color: var(--hsl-slate-3); display: flex; align-items: center; gap: 8px; }
.landing-note svg { width: 16px; height: 16px; color: var(--hsl-success); }

/* Dispatch panel — the "directory lookup" card */
.dispatch-panel {
  background: var(--hsl-white); border: 1px solid var(--hsl-line);
  border-radius: var(--hsl-r-lg); padding: var(--hsl-space-5);
  box-shadow: var(--hsl-shadow-lg);
}
.dispatch-panel-head {
  display: flex; align-items: center; gap: 10px; padding-bottom: var(--hsl-space-4);
  border-bottom: 1px solid var(--hsl-line); margin-bottom: var(--hsl-space-4);
}
.dispatch-panel-head svg { width: 22px; height: 22px; color: var(--hsl-cyan); }
.dispatch-panel-head h3 { font-size: 1.0625rem; color: var(--hsl-navy); }
.dispatch-rows { display: flex; flex-direction: column; gap: var(--hsl-space-3); }
.dispatch-row {
  display: flex; align-items: center; justify-content: space-between; gap: var(--hsl-space-3);
  padding: var(--hsl-space-3) var(--hsl-space-4); background: var(--hsl-ice-2);
  border-radius: var(--hsl-r-md);
}
.dispatch-row-label { font-size: var(--hsl-text-sm); color: var(--hsl-slate-2); font-weight: 600; }
.dispatch-row-value { font-size: var(--hsl-text-sm); color: var(--hsl-navy); font-weight: 700; font-family: var(--hsl-font-display); }
.verify-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--hsl-success-soft); color: var(--hsl-success);
  font-size: var(--hsl-text-xs); font-weight: 700; padding: 4px 10px; border-radius: var(--hsl-r-pill);
}
.verify-chip svg { width: 12px; height: 12px; }

@media (max-width: 900px) {
  .landing-grid { grid-template-columns: 1fr; gap: var(--hsl-space-6); }
  .landing { padding: var(--hsl-space-7) 0 var(--hsl-space-6); }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: var(--hsl-space-8) 0; }
.section--tint { background: var(--hsl-ice-2); }
.section--navy { background: var(--hsl-navy); color: var(--hsl-ice); }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head { max-width: 62ch; margin-bottom: var(--hsl-space-6); }
.section-tag {
  display: inline-block; font-size: var(--hsl-text-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--hsl-cyan);
  margin-bottom: var(--hsl-space-2);
}
.section-title { font-size: var(--hsl-text-xl); color: var(--hsl-navy); margin-bottom: var(--hsl-space-3); }
.section-lede { font-size: var(--hsl-text-base); color: var(--hsl-slate-2); }
.section--navy .section-title { color: #fff; }
.section--navy .section-lede { color: #cbd5e1; }
.section--navy .section-tag { color: var(--hsl-cyan-2); }

/* ==========================================================================
   Pest cloud — pill tags, not cards (distinct from McAllen grid / Brownsville cards)
   ========================================================================== */
.pest-cloud {
  display: flex; flex-wrap: wrap; gap: var(--hsl-space-2);
}
.pest-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--hsl-white); border: 1px solid var(--hsl-line);
  color: var(--hsl-navy); font-size: var(--hsl-text-sm); font-weight: 600;
  padding: 10px 18px; border-radius: var(--hsl-r-pill);
  transition: all var(--hsl-trans);
}
.pest-pill:hover { border-color: var(--hsl-cyan); color: var(--hsl-cyan); transform: translateY(-2px); box-shadow: var(--hsl-shadow-md); }
.pest-pill svg { width: 16px; height: 16px; color: var(--hsl-cyan); }

/* ==========================================================================
   Provider list — table rows, not cards (distinct)
   ========================================================================== */
.provider-list { display: flex; flex-direction: column; gap: var(--hsl-space-3); }
.provider-row {
  display: grid; grid-template-columns: 56px 1.4fr 0.9fr 0.7fr auto;
  align-items: center; gap: var(--hsl-space-4);
  background: var(--hsl-white); border: 1px solid var(--hsl-line);
  border-radius: var(--hsl-r-md); padding: var(--hsl-space-4);
  transition: all var(--hsl-trans); text-decoration: none; color: var(--hsl-slate);
}
.provider-row:hover { border-color: var(--hsl-cyan); box-shadow: var(--hsl-shadow-md); }
.provider-num {
  width: 40px; height: 40px; border-radius: var(--hsl-r-sm);
  background: var(--hsl-navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--hsl-font-display); font-weight: 700; font-size: var(--hsl-text-sm);
}
.provider-name { font-family: var(--hsl-font-display); font-weight: 600; color: var(--hsl-navy); font-size: 1.0625rem; }
.provider-addr { font-size: var(--hsl-text-sm); color: var(--hsl-slate-3); margin-top: 2px; }
.provider-rating { display: flex; flex-direction: column; gap: 2px; }
.provider-stars { color: #f59e0b; font-size: var(--hsl-text-sm); letter-spacing: 1px; }
.provider-reviews { font-size: var(--hsl-text-xs); color: var(--hsl-slate-3); }
.provider-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.provider-spec {
  font-size: var(--hsl-text-xs); color: var(--hsl-slate-2);
  background: var(--hsl-ice-2); padding: 4px 10px; border-radius: var(--hsl-r-pill); font-weight: 600;
}
.provider-arrow { color: var(--hsl-cyan); }
.provider-arrow svg { width: 24px; height: 24px; }

@media (max-width: 820px) {
  .provider-row { grid-template-columns: 40px 1fr; grid-template-areas: "num name" "num addr" "num rating" "num specs" "num arrow"; gap: var(--hsl-space-2) var(--hsl-space-3); }
  .provider-num { grid-area: num; }
  .provider-name { grid-area: name; }
  .provider-addr { grid-area: addr; }
  .provider-rating { grid-area: rating; flex-direction: row; align-items: center; gap: 8px; }
  .provider-specs { grid-area: specs; }
  .provider-arrow { grid-area: arrow; }
}

/* ==========================================================================
   Route steps — how it works (dispatch flow)
   ========================================================================== */
.route-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--hsl-space-5);
}
.route-step {
  background: var(--hsl-white); border: 1px solid var(--hsl-line);
  border-radius: var(--hsl-r-md); padding: var(--hsl-space-5);
  position: relative;
}
.route-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--hsl-r-pill);
  background: var(--hsl-cyan-soft); color: var(--hsl-navy-3);
  font-family: var(--hsl-font-display); font-weight: 700; font-size: var(--hsl-text-sm);
  margin-bottom: var(--hsl-space-3);
}
.route-step h3 { font-size: 1.125rem; color: var(--hsl-navy); margin-bottom: var(--hsl-space-2); }
.route-step p { font-size: var(--hsl-text-sm); color: var(--hsl-slate-2); line-height: 1.6; }

@media (max-width: 820px) { .route-steps { grid-template-columns: 1fr; } }

/* ==========================================================================
   Split panel — verification method (image + checklist)
   ========================================================================== */
.split-panel { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--hsl-space-6); align-items: stretch; }
.split-panel-media {
  border-radius: var(--hsl-r-lg); overflow: hidden; background: var(--hsl-ice-3);
  min-height: 320px;
}
.split-panel-media img { width: 100%; height: 100%; object-fit: cover; }
.split-panel-body {
  background: var(--hsl-white); border: 1px solid var(--hsl-line);
  border-radius: var(--hsl-r-lg); padding: var(--hsl-space-6);
}
.split-panel-body h3 { font-size: var(--hsl-text-lg); color: var(--hsl-navy); margin-bottom: var(--hsl-space-3); }
.split-panel-body p { font-size: var(--hsl-text-sm); color: var(--hsl-slate-2); margin-bottom: var(--hsl-space-4); line-height: 1.7; }
.check-list { display: flex; flex-direction: column; gap: var(--hsl-space-3); }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: var(--hsl-text-sm); color: var(--hsl-slate); }
.check-list svg { width: 18px; height: 18px; color: var(--hsl-success); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 820px) { .split-panel { grid-template-columns: 1fr; } }

/* ==========================================================================
   Metric bar — inline stats (distinct from proof-strip / stats-bar)
   ========================================================================== */
.metric-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--hsl-space-4);
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: var(--hsl-space-6);
}
.metric-item { display: flex; flex-direction: column; gap: 4px; }
.metric-figure {
  font-family: var(--hsl-font-display); font-weight: 700; font-size: var(--hsl-text-xl);
  color: var(--hsl-cyan-2); line-height: 1;
}
.metric-label { font-size: var(--hsl-text-xs); color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

@media (max-width: 720px) { .metric-bar { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Dispatch banner — CTA
   ========================================================================== */
.dispatch-banner {
  background: linear-gradient(135deg, var(--hsl-navy) 0%, var(--hsl-navy-3) 100%);
  color: #fff; border-radius: var(--hsl-r-lg); padding: var(--hsl-space-7);
  display: flex; align-items: center; justify-content: space-between; gap: var(--hsl-space-5);
  box-shadow: var(--hsl-shadow-lg);
}
.dispatch-banner-text h2 { font-size: var(--hsl-text-lg); color: #fff; margin-bottom: var(--hsl-space-2); }
.dispatch-banner-text p { font-size: var(--hsl-text-sm); color: #cbd5e1; }
.dispatch-banner-cta { flex-shrink: 0; }
.dispatch-banner .btn-solid { background: var(--hsl-cyan-2); }
.dispatch-banner .btn-solid:hover { background: #fff; color: var(--hsl-navy); }

@media (max-width: 720px) {
  .dispatch-banner { flex-direction: column; text-align: center; align-items: stretch; }
}

/* ==========================================================================
   Content / article pages
   ========================================================================== */
.page-main { padding: var(--hsl-space-7) 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: var(--hsl-text-sm); color: var(--hsl-slate-3); margin-bottom: var(--hsl-space-4); flex-wrap: wrap; }
.breadcrumb a { color: var(--hsl-slate-2); font-weight: 600; }
.breadcrumb a:hover { color: var(--hsl-cyan); }
.breadcrumb span { color: var(--hsl-slate-2); font-weight: 600; }

.page-title { font-size: var(--hsl-text-xl); color: var(--hsl-navy); margin-bottom: var(--hsl-space-3); }
.page-lede { font-size: var(--hsl-text-lg); color: var(--hsl-slate-2); margin-bottom: var(--hsl-space-6); max-width: 62ch; }

.prose { max-width: 740px; }
.prose p { margin-bottom: var(--hsl-space-4); color: var(--hsl-slate); }
.prose h2 { font-size: var(--hsl-text-lg); color: var(--hsl-navy); margin: var(--hsl-space-6) 0 var(--hsl-space-3); }
.prose h3 { font-size: 1.125rem; color: var(--hsl-navy-2); margin: var(--hsl-space-5) 0 var(--hsl-space-2); }
.prose ul { padding-left: 0; margin-bottom: var(--hsl-space-4); display: flex; flex-direction: column; gap: var(--hsl-space-2); }
.prose li { padding-left: 24px; position: relative; color: var(--hsl-slate); }
.prose li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; border-radius: 2px; background: var(--hsl-cyan); }
.prose ol.treatment-list { list-style: none; counter-reset: tstep; padding-left: 0; display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--hsl-space-4); }
.prose ol.treatment-list li { counter-increment: tstep; }
.prose ol.treatment-list li::before { content: counter(tstep); width: auto; height: auto; border-radius: 50%; background: var(--hsl-cyan); color: var(--hsl-white); font-family: var(--hsl-font-display); font-weight: 700; font-size: 0.8125rem; top: 2px; padding: 2px 8px; line-height: 1.3; }
.prose a { font-weight: 600; }

/* Article meta */
.article-meta { display: flex; align-items: center; gap: var(--hsl-space-3); flex-wrap: wrap; margin-bottom: var(--hsl-space-6); padding-bottom: var(--hsl-space-4); border-bottom: 1px solid var(--hsl-line); }
.article-tag { background: var(--hsl-cyan-soft); color: var(--hsl-navy-3); font-size: var(--hsl-text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 12px; border-radius: var(--hsl-r-pill); }
.article-meta span { font-size: var(--hsl-text-sm); color: var(--hsl-slate-3); }

/* Related article cards */
.article-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--hsl-space-4); margin-top: var(--hsl-space-5); }
.article-card {
  display: block; background: var(--hsl-white); border: 1px solid var(--hsl-line);
  border-radius: var(--hsl-r-md); padding: var(--hsl-space-5); text-decoration: none; color: var(--hsl-slate);
  transition: all var(--hsl-trans);
}
.article-card:hover { border-color: var(--hsl-cyan); box-shadow: var(--hsl-shadow-md); }
.article-card h3 { font-size: 1.0625rem; color: var(--hsl-navy); margin-bottom: var(--hsl-space-2); }
.article-card p { font-size: var(--hsl-text-sm); color: var(--hsl-slate-2); line-height: 1.55; }

/* ==========================================================================
   Price table
   ========================================================================== */
.price-table-wrap { overflow-x: auto; border: 1px solid var(--hsl-line); border-radius: var(--hsl-r-md); margin-bottom: var(--hsl-space-6); }
.price-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.price-table th { background: var(--hsl-navy); color: #fff; text-align: left; padding: var(--hsl-space-4); font-size: var(--hsl-text-sm); font-family: var(--hsl-font-display); font-weight: 600; }
.price-table td { padding: var(--hsl-space-4); border-top: 1px solid var(--hsl-line); font-size: var(--hsl-text-sm); vertical-align: top; }
.price-table tr:hover td { background: var(--hsl-ice-2); }
.price-table .price-amount { font-family: var(--hsl-font-display); font-weight: 700; color: var(--hsl-cyan); white-space: nowrap; }

/* ==========================================================================
   Consultation form
   ========================================================================== */
.form-panel { background: var(--hsl-white); border: 1px solid var(--hsl-line); border-radius: var(--hsl-r-lg); padding: var(--hsl-space-6); box-shadow: var(--hsl-shadow-md); }
.form-panel h2 { font-size: var(--hsl-text-lg); color: var(--hsl-navy); margin-bottom: var(--hsl-space-2); }
.form-panel p { font-size: var(--hsl-text-sm); color: var(--hsl-slate-2); margin-bottom: var(--hsl-space-5); }
.consult-form { display: flex; flex-direction: column; gap: var(--hsl-space-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--hsl-space-3); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: var(--hsl-text-sm); font-weight: 700; color: var(--hsl-navy); }
.field input, .field textarea, .field select {
  font-family: var(--hsl-font-body); font-size: var(--hsl-text-base); color: var(--hsl-slate);
  background: var(--hsl-ice); border: 1.5px solid var(--hsl-line); border-radius: var(--hsl-r-md);
  padding: 12px 14px; transition: border-color var(--hsl-trans);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--hsl-cyan); }
.form-submit {
  background: var(--hsl-cyan); color: #fff; border: none; cursor: pointer;
  font-family: var(--hsl-font-body); font-weight: 700; font-size: var(--hsl-text-sm);
  padding: 14px 24px; border-radius: var(--hsl-r-pill); transition: all var(--hsl-trans);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--hsl-navy-3); }
.form-fineprint { font-size: var(--hsl-text-xs); color: var(--hsl-slate-3); text-align: center; }

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   Site footer
   ========================================================================== */
.site-foot { background: var(--hsl-navy); color: #cbd5e1; padding: var(--hsl-space-8) 0 var(--hsl-space-5); }
.site-foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--hsl-space-6); margin-bottom: var(--hsl-space-7); }
.site-foot-brand { display: flex; align-items: center; gap: 10px; margin-bottom: var(--hsl-space-3); }
.site-foot-brand .brand-mark { color: var(--hsl-cyan-2); }
.site-foot-brand .brand-name { color: #fff; }
.site-foot-blurb { font-size: var(--hsl-text-sm); color: #94a3b8; max-width: 32ch; line-height: 1.6; }
.site-foot-col h4 { color: #fff; font-size: var(--hsl-text-sm); margin-bottom: var(--hsl-space-3); text-transform: uppercase; letter-spacing: 0.05em; }
.site-foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.site-foot-col a { color: #94a3b8; font-size: var(--hsl-text-sm); }
.site-foot-col a:hover { color: var(--hsl-cyan-2); }
.site-foot-base { display: flex; justify-content: space-between; align-items: center; gap: var(--hsl-space-4); padding-top: var(--hsl-space-5); border-top: 1px solid rgba(255,255,255,0.1); font-size: var(--hsl-text-xs); color: #64748b; flex-wrap: wrap; }

@media (max-width: 760px) {
  .site-foot-grid { grid-template-columns: 1fr 1fr; gap: var(--hsl-space-5); }
  .site-foot-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 460px) { .site-foot-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Photo placeholders (white boxes with captions)
   ========================================================================== */
.photo-slot {
  background: var(--hsl-ice-2);
  border: 1px solid var(--hsl-line);
  border-radius: var(--hsl-r-md);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; padding: 40px 24px;
  text-align: center; min-height: 240px;
}
.photo-slot--tall { min-height: 360px; }
.photo-slot--wide { min-height: 200px; }
.photo-slot-icon {
  width: 40px; height: 40px;
  border: 2px dashed var(--hsl-cyan);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--hsl-cyan); font-size: 18px; line-height: 1;
}
.photo-slot-caption {
  font-size: var(--hsl-text-sm); color: var(--hsl-slate-3);
  max-width: 320px; line-height: 1.5;
}
.photo-slot-tag {
  font-size: var(--hsl-text-xs); text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--hsl-cyan);
  font-weight: 600;
}
