/**
 * Kentuckiana Land Co. — Design System
 * Built from approved homepage mockup v6
 *
 * Section order follows build plan:
 * Reset → Custom properties → Base typography → Layout → Header/nav →
 * Buttons → Hero → Form → Trust band → Process → County directory →
 * Land type rows → Situation cards → CTA components → FAQ accordion →
 * Cards (legacy) → Highlight boxes → Breadcrumbs → About → Contact →
 * Comparison → Footer → Mobile bar → Error/404 → Thank you →
 * Section variants → Stats/tags → Blog → Content layouts →
 * Scroll reveal → Utilities → Responsive → Print → Motion
 */

/* ===========================
   0. RESET & NORMALIZE
   =========================== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
img{max-width:100%;display:block}
a{color:inherit}
button{font:inherit;cursor:pointer;border:none;background:none}
ul,ol{list-style:none}
input,select,textarea{font:inherit}
fieldset{border:none;padding:0;margin:0}

/* ===========================
   1. CUSTOM PROPERTIES
   =========================== */
:root{
  /* ── Semantic palette ───────────────────── */
  --navy:     #0D1B2A;
  --navy-mid: #1B263B;
  --steel:    #415A77;
  --slate:    #778DA9;
  --ash:      #9AACBF;
  --fog:      #C2CCD6;
  --bone:     #E0E1DD;
  --milk:     #F4F4F1;
  --white:    #FFFFFF;
  --warm:     #D4A03C;
  --error:    #DC2626;

  /* ── Backward compat — numeric naming ──── */
  --color-900:  var(--navy);
  --color-850:  #162336;
  --color-800:  var(--navy-mid);
  --color-600:  var(--steel);
  --color-500:  #4e6a88;
  --color-400:  var(--slate);
  --color-300:  var(--ash);
  --color-200:  var(--fog);
  --color-100:  var(--bone);
  --color-50:   var(--milk);
  --color-white: var(--white);
  --color-error: var(--error);
  --color-text-muted: var(--ash);

  /* ── State accent colors ───────────────── */
  --accent-indiana:  var(--steel);
  --accent-kentucky: var(--warm);

  /* ── Typography ────────────────────────── */
  --heading: 'Instrument Sans', sans-serif;
  --body:    'Outfit', sans-serif;
  --font-heading: var(--heading);
  --font-body:    var(--body);

  /* ── Spacing ───────────────────────────── */
  --header-h: 68px;
  --section-v:          100px;
  --section-v-tight:     72px;
  --section-v-loose:    120px;
  --section-v-mob:       72px;
  --section-v-mob-tight: 56px;

  /* ── Layout widths ─────────────────────── */
  --max-width:        1100px;
  --max-width-wide:   1320px;
  --max-width-narrow:  800px;

  /* ── Radii ─────────────────────────────── */
  --radius-sm:  5px;
  --radius-md:  8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* ── Shadows ───────────────────────────── */
  --shadow-sm:  0 1px 3px rgba(13,27,42,.06);
  --shadow-md:  0 4px 16px rgba(13,27,42,.08);
  --shadow-lg:  0 12px 40px rgba(13,27,42,.12);
  --shadow-xl:  0 24px 80px rgba(13,27,42,.15);

  /* ── Transitions ───────────────────────── */
  --ease: cubic-bezier(.4,0,.2,1);
  --transition: .2s var(--ease);
}

/* ===========================
   2. BASE TYPOGRAPHY
   =========================== */
body{
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy-mid);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

h1,h2,h3,h4,h5,h6{
  font-family: var(--heading);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.01em;
}
h1{ font-size: clamp(2rem, 5vw, 3.25rem); }
h2{ font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: .65rem; }
h3{ font-size: 1.15rem; margin-bottom: .5rem; }
h4{ font-size: 1rem; }

p{ margin-bottom: 1em; }
p:last-child{ margin-bottom: 0; }

a{
  transition: color var(--transition);
}
a:focus-visible{
  outline: 2px solid var(--steel);
  outline-offset: 3px;
  border-radius: 2px;
}

.lead{
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255,255,255,.82);
}

/* ===========================
   3. LAYOUT
   =========================== */
.container{
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
}

/* ===========================
   4. HEADER & NAV
   =========================== */
.skip-link{
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  z-index: 9999;
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-decoration: none;
}
.skip-link:focus{ top: 16px; }

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13,27,42,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-inner{
  max-width: var(--max-width-wide);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding-inline: 32px;
}

/* Logo */
.site-logo{
  text-decoration: none;
  display: flex;
  gap: 5px;
  align-items: baseline;
}
.logo-primary{
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.logo-accent{
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--slate);
}

/* Desktop nav */
.site-nav ul{ display: flex; gap: 2px; }
.site-nav a{
  display: block;
  padding: 8px 14px;
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--fog);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.site-nav a:hover{
  color: var(--white);
  background: rgba(65,90,119,.15);
}
.site-nav a.nav-active{
  color: var(--white);
  background: rgba(65,90,119,.2);
}

/* Header CTA group */
.header-cta{
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-phone{
  font-family: var(--heading);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ash);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color var(--transition);
}
.header-phone:hover{ color: var(--white); }

/* Hamburger */
.hamburger{
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span{
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}

/* Mobile nav drawer */
.mobile-nav{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--navy);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.is-open{ transform: translateX(0); }

.mobile-nav-inner{ padding: 1.5rem; padding-top: 4.5rem; }

.mobile-nav-close{
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.75rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-close:hover{ color: var(--white); }

.mobile-nav nav ul{ list-style: none; padding: 0; }
.mobile-nav nav li{ margin-bottom: .15rem; }
.mobile-nav nav a{
  display: block;
  padding: .75rem 1rem;
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition);
}
.mobile-nav nav a:hover{
  background: rgba(255,255,255,.08);
  color: var(--white);
  text-decoration: none;
}

.mobile-nav-cta{
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* ===========================
   5. BUTTONS
   =========================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .7rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--heading);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}
.btn:hover{ text-decoration: none; }
.btn:focus-visible{ outline: 2px solid var(--steel); outline-offset: 3px; }
.btn:active{ transform: translateY(1px); }

/* Primary */
.btn-primary{
  background: var(--steel);
  color: var(--white);
  border-color: var(--steel);
}
.btn-primary:hover{
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(65,90,119,.2);
}

/* White / hero CTA */
.btn-white{
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover{
  background: var(--bone);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}

/* Ghost */
.btn-ghost{
  background: transparent;
  color: var(--steel);
  border-color: var(--steel);
}
.btn-ghost:hover{
  background: var(--steel);
  color: var(--white);
}

/* btn-ghost on dark nav background — override for contrast */
.mobile-nav-cta .btn-ghost{
  color: #b8c8d8;
  border-color: #b8c8d8;
}
.mobile-nav-cta .btn-ghost:hover{
  background: rgba(184,200,216,.15);
  color: var(--white);
  border-color: var(--white);
}

/* Ghost on dark bg */
.btn-ghost-light{
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost-light:hover{
  background: rgba(255,255,255,.08);
  border-color: var(--white);
  color: var(--white);
}

/* Outline bone */
.btn-outline{
  background: transparent;
  color: var(--steel);
  border-color: var(--bone);
}
.btn-outline:hover{
  border-color: var(--steel);
  background: rgba(65,90,119,.04);
}

/* Sizes */
.btn-sm{ padding: .5rem 1.15rem; font-size: .84rem; min-height: 44px; }
.btn-lg{ padding: .9rem 2.25rem; font-size: 1rem; min-height: 52px; }
.btn-full{ width: 100%; }

/* Loading state */
.btn[disabled],
.btn.is-loading{
  opacity: .6;
  pointer-events: none;
  cursor: not-allowed;
}
.btn.is-loading::after{
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  margin-left: .5rem;
}
@keyframes spin{ to{ transform: rotate(360deg); } }

/* ===========================
   6. HERO SYSTEM
   =========================== */

/* Homepage hero — full viewport, bottom-aligned content */
.hero:not(.hero-sm){
  margin-top: calc(-1 * var(--header-h));
}
.hero{
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg{
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .55;
}
/* Gradient overlay — dark bottom for text readability */
.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(13,27,42,.3) 0%,
      rgba(13,27,42,.05) 40%,
      rgba(13,27,42,.7) 85%,
      rgba(13,27,42,.95) 100%),
    linear-gradient(to right,
      rgba(13,27,42,.4) 0%,
      transparent 60%);
}
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 160px 32px 120px;
}
.hero-eyebrow{
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--warm);
  margin-bottom: 28px;
  display: block;
}
.hero h1{
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 28px;
}
.hero-content .lead{
  font-size: 19px;
  font-weight: 300;
  color: var(--fog);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero-actions{
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-phone-cta{
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}
.hero-phone-cta a{
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 2px;
  transition: border-color var(--transition);
}
.hero-phone-cta a:hover{ border-color: var(--white); text-decoration: none; }

/* Hero with form split (county pages) */
.hero-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max-width);
  margin-inline: auto;
  width: 100%;
}
.hero-split .hero-content{
  padding: 5rem 0 4.5rem;
  max-width: 620px;
}

/* Frosted form panel in hero */
.hero-form-panel{
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow:
    0 32px 80px rgba(0,0,0,.40),
    0 8px 24px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.7);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.35);
}
.hero-form-panel h3{
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: .85rem;
  border-bottom: 2px solid var(--bone);
}

/* Interior page hero (smaller) */
.hero-sm{
  min-height: auto;
  display: flex;
  align-items: center;
}
.hero-sm .hero-content{
  padding: 2.5rem 0;
  max-width: 620px;
}
.hero-sm h1{
  font-size: clamp(2rem, 4vw, 2.75rem);
}
/* Override for pages that need a louder H1 (about page) */
.hero-sm h1.hero-lg{
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  letter-spacing: -.02em;
}

/* ===========================
   7. FORM SYSTEM
   =========================== */

/* ── Dual-panel form (homepage) ─────────── */
.form-section{
  position: relative;
  z-index: 3;
  margin-top: -60px;
  padding: 0 32px 100px;
}
.form-wrap{
  max-width: 900px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 4px 20px rgba(13,27,42,.06);
  display: grid;
  grid-template-columns: 340px 1fr;
  overflow: hidden;
}

/* Info panel (left side) */
.form-info{
  background: var(--navy);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}
.form-info h2{
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.form-info p{
  font-size: 15px;
  color: var(--ash);
  line-height: 1.6;
  margin-bottom: 28px;
}
.form-info .info-line{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.form-info .info-line svg{
  width: 18px;
  height: 18px;
  color: var(--warm);
  flex-shrink: 0;
}
.form-info .info-line span{
  font-size: 14.5px;
  color: var(--fog);
}
.form-info .info-phone{
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-family: var(--heading);
  font-size: 13px;
  color: var(--slate);
}
.form-info .info-phone a{
  display: block;
  margin-top: 6px;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}

/* Fields panel (right side) */
.form-fields{
  padding: 44px 40px;
}

/* ── Shared form styles ─────────────────── */
.klc-form{ display: flex; flex-direction: column; gap: .9rem; }

.form-group{ display: flex; flex-direction: column; gap: .3rem; }

.klc-form .form-group label,
.form-group label,
.fg label{
  display: block;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--steel);
  margin-bottom: 5px;
  letter-spacing: .01em;
}
.required,.req{ color: var(--warm); font-weight: 600; }
.form-optional,.opt{ font-weight: 400; color: #6b7fa0; font-size: 12px; }

.klc-form input[type="text"],
.klc-form input[type="tel"],
.klc-form input[type="email"],
.klc-form textarea,
.klc-form select,
.fg input,.fg select,.fg textarea{
  width: 100%;
  padding: 12px 14px;
  background: var(--milk);
  border: 1.5px solid var(--bone);
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-size: 15px;
  font-family: var(--body);
  line-height: 1.5;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.klc-form input:focus,
.klc-form textarea:focus,
.klc-form select:focus,
.fg input:focus,.fg select:focus,.fg textarea:focus{
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(65,90,119,.1);
  background: var(--white);
}
.klc-form input::placeholder,
.klc-form textarea::placeholder,
.fg input::placeholder,.fg textarea::placeholder{
  color: var(--ash);
}

/* Select dropdown chevron */
.form-group select,
.fg select{
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23778DA9' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

/* Two-column form rows */
.form-row-2,
.form-2col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Validation states */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea{
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}
.field-error{
  color: var(--error);
  font-size: .78rem;
  font-weight: 500;
  margin-top: .2rem;
  display: block;
}
.form-error-global{
  background: rgba(220,38,38,.06);
  border: 1px solid rgba(220,38,38,.25);
  border-radius: var(--radius-sm);
  padding: .9rem 1rem;
  color: var(--error);
  font-size: .88rem;
}

/* Other county field */
.form-other-county{ /* display controlled by JS */ }

/* Honeypot */
.form-honeypot,
.form-hp{ position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Extended section */
.form-extended-section{
  border-top: 1px solid var(--bone);
  padding-top: .9rem;
  margin-top: .35rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.form-section-label{
  font-size: .88rem;
  color: var(--navy-mid);
  margin-bottom: .2rem;
}

/* Radio group */
.form-radio-group{ gap: .4rem; }
.form-radio-group legend{
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--steel);
  margin-bottom: .4rem;
}
.radio-label{
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  cursor: pointer;
}
.radio-label input[type="radio"]{
  accent-color: var(--steel);
  width: 16px;
  height: 16px;
}

/* Form footer elements */
.form-privacy,
.form-note{
  text-align: center;
  font-size: 13.5px;
  color: #6b7fa0;
  margin-top: .4rem;
  margin-bottom: 0;
}
.form-note a,.form-privacy a{
  color: var(--steel);
  text-decoration: none;
  font-weight: 500;
}
.form-subtext{
  text-align: center;
  font-size: .82rem;
  color: #4d6580;
  margin-top: .25rem;
}
.form-subtext a{ color: var(--steel); }

/* Submit button for dual-panel form */
.form-submit{
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  background: var(--steel);
  color: var(--white);
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
}
.form-submit:hover{ background: var(--navy-mid); }

/* Inline form submit */
.klc-form .btn-primary.btn-full{
  min-height: 50px;
  font-size: .95rem;
  letter-spacing: .01em;
  font-weight: 700;
  margin-top: .35rem;
}

/* ===========================
   8. TRUST BAND
   =========================== */

/* New: full-width dark band with dividers */
.trust-band{
  background: var(--navy-mid);
  padding: 56px 32px;
  border-top: 1px solid rgba(65,90,119,.1);
  border-bottom: 1px solid rgba(65,90,119,.1);
}
.trust-row{
  max-width: var(--max-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.trust-row .trust-item{
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.trust-row .trust-item:not(:nth-child(3n))::after{
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(119,141,169,.12);
}

/* Shared trust-item styling (both old grid and new band) */
.trust-item{
  padding: 16px 32px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: background var(--transition);
}
.trust-item svg{
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--warm);
}
.trust-item p{
  font-size: 14.5px;
  color: var(--fog);
  line-height: 1.5;
  margin: 0;
}

/* Legacy: trust-grid for old pages */
.trust-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
}
.trust-grid .trust-item{
  padding: 1.25rem;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.06);
}
@media (hover: hover){
  .trust-grid .trust-item:hover{
    background: rgba(255,255,255,.07);
  }
}

/* Trust icon wrap (legacy) */
.trust-icon-wrap{
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(65,90,119,.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon{
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--ash);
}

/* Trust items on light backgrounds */
.section-alt .trust-item,
.section-light .trust-item{
  background: var(--white);
  border: 1px solid rgba(13,27,42,.06);
  box-shadow: var(--shadow-sm);
}
.section-alt .trust-icon-wrap,
.section-light .trust-icon-wrap{ background: rgba(65,90,119,.08); }
.section-alt .trust-icon,
.section-light .trust-icon{ color: var(--steel); }
.section-alt .trust-item p,
.section-light .trust-item p{ color: var(--navy-mid); }

/* ===========================
   9. PROCESS STEPS
   =========================== */

/* New: numbered circles with connecting line */
.steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps::before{
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--bone), var(--fog), var(--bone));
}
.step{
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.step-num{
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  background: var(--white);
  border: 2px solid var(--bone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--steel);
  position: relative;
  z-index: 1;
  transition: all .3s var(--ease);
}
.step:hover .step-num{
  background: var(--steel);
  color: var(--white);
  border-color: var(--steel);
  box-shadow: 0 4px 20px rgba(65,90,119,.2);
}
.step h3{
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p{
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
}

/* Process section header */
.process-head{
  margin-bottom: 60px;
}
.process-head h2{
  font-size: clamp(28px, 3vw, 38px);
  color: var(--navy);
  margin-bottom: 14px;
}
.process-head p{
  font-size: 17px;
  color: var(--slate);
  max-width: 560px;
}

/* Legacy: process-steps cards */
.process-steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step-counter;
}
.process-step{
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13,27,42,.04);
  counter-increment: step-counter;
  overflow: hidden;
}
.process-step::before{
  content: '0' counter(step-counter);
  position: absolute;
  top: -.15rem;
  right: .75rem;
  font-family: var(--heading);
  font-size: 5.5rem;
  font-weight: 800;
  color: var(--bone);
  line-height: 1;
  letter-spacing: -.03em;
  pointer-events: none;
  z-index: 0;
}
.process-step::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--steel);
}
.process-step > *{ position: relative; z-index: 1; }
.process-step h3{
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}
.process-step p{
  font-size: .9rem;
  color: var(--navy-mid);
  margin-bottom: .75em;
}
.process-step p:last-child{ margin-bottom: 0; }
.step-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--steel);
  margin-bottom: .75rem;
  opacity: .7;
}
.step-icon svg{ width: 100%; height: 100%; }

/* ===========================
   10. COUNTY DIRECTORY
   =========================== */

/* New: directory rows with state split */
.state-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.state-col{
  padding: 40px;
}
.state-col:first-child{
  border-right: 1px solid rgba(119,141,169,.12);
}
.state-tag{
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.state-tag::before{
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
}
.state-tag--in{ color: var(--fog); }
.state-tag--in::before{ background: var(--steel); }
.state-tag--ky{ color: var(--warm); }
.state-tag--ky::before{ background: var(--warm); }

.county-entry{
  display: block;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(119,141,169,.08);
  transition: all .15s var(--ease);
  color: inherit;
}
.county-entry:first-of-type{
  border-top: 1px solid rgba(119,141,169,.08);
}
.county-entry:hover{
  padding-left: 8px;
  text-decoration: none;
}
.county-entry:hover .ce-name{ color: var(--white); }
.ce-name{
  font-family: var(--heading);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--fog);
  margin-bottom: 2px;
  transition: color .15s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ce-name::after{
  content: '\2192';
  font-size: 14px;
  color: var(--slate);
  opacity: 0;
  transition: opacity .15s;
}
.county-entry:hover .ce-name::after{ opacity: 1; }
.ce-cities{
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.4;
}
.state-all{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--ash);
  text-decoration: none;
  transition: color var(--transition);
}
.state-all:hover{ color: var(--white); }
.state-all::after{
  content: '\2192';
  font-size: 15px;
  transition: transform var(--transition);
}
.state-all:hover::after{ transform: translateX(3px); }

/* Areas section wrapper */
.areas-section{
  padding: 100px 32px;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.areas-section::after{
  content: '';
  position: absolute;
  inset: 0;
  opacity: .025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 50 Q 25 20 50 50 Q 75 80 90 50' fill='none' stroke='%23fff' stroke-width='.5'/%3E%3Cpath d='M10 30 Q 30 10 50 30 Q 70 50 90 30' fill='none' stroke='%23fff' stroke-width='.3'/%3E%3Cpath d='M10 70 Q 30 50 50 70 Q 70 90 90 70' fill='none' stroke='%23fff' stroke-width='.3'/%3E%3C/svg%3E");
}
.areas-section .sec-inner{ position: relative; z-index: 1; }

.areas-head{
  margin-bottom: 56px;
}
.areas-head .sec-label{ color: var(--warm); }
.areas-head h2{
  font-size: clamp(28px, 3vw, 38px);
  color: var(--white);
  margin-bottom: 14px;
}
.areas-head p{
  font-size: 17px;
  color: var(--ash);
  max-width: 600px;
}

.areas-link{
  text-align: center;
  margin-top: 56px;
}
.areas-link a{
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--heading);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--fog);
  text-decoration: none;
  border: 2px solid rgba(119,141,169,.25);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.areas-link a:hover{
  border-color: var(--fog);
  background: rgba(255,255,255,.04);
}

/* Legacy: county card grid */
.county-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.county-card{
  background: var(--white);
  border: 1px solid rgba(13,27,42,.06);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  color: var(--navy);
  display: block;
  position: relative;
  border-left: 4px solid var(--accent-indiana);
}
.county-card::before{
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: var(--slate);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  margin-bottom: .4rem;
}
.county-card--kentucky{ border-left-color: var(--accent-kentucky); }
.county-card--kentucky::before{ background: var(--accent-kentucky); }
.county-card--nav{
  border-left: 4px solid var(--fog);
  background: var(--milk);
}
.county-card--nav::before{
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") no-repeat center;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  background: var(--slate);
}
@media (hover: hover){
  .county-card:hover{
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--navy);
  }
}
.county-card .county-name{
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: .15rem;
}
.county-card .county-state{
  font-size: .72rem;
  font-weight: 700;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .4rem;
}
.county-card .county-desc{
  font-size: .85rem;
  color: var(--navy-mid);
  line-height: 1.5;
}

/* ===========================
   11. LAND TYPE ROWS
   =========================== */

/* New: horizontal rows with asymmetric layout */
.land-types-section{
  padding: 110px 32px;
  background: var(--white);
}
.land-head{
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.land-head-copy h2{
  font-size: clamp(26px, 3vw, 36px);
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.15;
}
.land-head-copy p{
  font-size: 16.5px;
  color: var(--slate);
  line-height: 1.65;
}

.land-list{
  border-top: 2px solid var(--navy);
}
.land-row{
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--bone);
  text-decoration: none;
  color: inherit;
  transition: all .15s var(--ease);
}
.land-row:hover{
  padding-left: 8px;
  background: linear-gradient(90deg, rgba(65,90,119,.03) 0%, transparent 100%);
  text-decoration: none;
}
.land-row h3{
  font-family: var(--heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  transition: color .15s;
  white-space: nowrap;
  margin-bottom: 0;
}
.land-row:hover h3{ color: var(--steel); }
.land-row p{
  font-size: 15px;
  color: var(--slate);
  line-height: 1.5;
  margin: 0;
}
.land-row-arrow{
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--steel);
  opacity: 0;
  transition: opacity .15s;
  white-space: nowrap;
}
.land-row:hover .land-row-arrow{ opacity: 1; }

/* ===========================
   12. SITUATION CARDS
   =========================== */

/* New: accent-bar cards on dark background */
.situations-section{
  padding: 100px 32px;
  background: var(--navy-mid);
  color: var(--white);
  position: relative;
}
.sit-head{
  margin-bottom: 56px;
}
.sit-head .sec-label{ color: var(--warm); }
.sit-head h2{
  font-size: clamp(26px, 3vw, 36px);
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}
.sit-head p{
  font-size: 17px;
  color: var(--ash);
  max-width: 640px;
  line-height: 1.65;
}

.sit-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sit-card{
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 32px 28px;
  background: rgba(13,27,42,.4);
  border: 1px solid rgba(119,141,169,.1);
  border-radius: var(--radius-md);
  transition: all .2s var(--ease);
  position: relative;
  overflow: hidden;
}
.sit-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--steel);
  transition: background .2s, width .2s;
}
.sit-card:hover{
  background: rgba(13,27,42,.6);
  border-color: rgba(119,141,169,.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  text-decoration: none;
}
.sit-card:hover::before{
  background: var(--warm);
  width: 4px;
}
.sit-card h3{
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  padding-left: 16px;
}
.sit-card p{
  font-size: 14.5px;
  color: var(--ash);
  line-height: 1.55;
  padding-left: 16px;
  margin: 0;
}

/* ===========================
   13. CTA COMPONENTS
   =========================== */

/* New: split CTA — copy left, phone right */
.cta-end{
  padding: 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta-split{
  max-width: var(--max-width-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}
.cta-copy{
  padding: 100px 64px 100px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-copy h2{
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.cta-copy p{
  font-size: 17px;
  color: var(--ash);
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 460px;
}
.cta-copy .cta-actions{
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-copy .cta-btn{
  display: inline-block;
  padding: 18px 40px;
  background: var(--white);
  color: var(--navy);
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all .2s var(--ease);
}
.cta-copy .cta-btn:hover{
  background: var(--bone);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
.cta-copy .cta-phone{
  font-family: var(--heading);
  font-size: 15px;
  color: var(--slate);
}
.cta-copy .cta-phone a{
  color: var(--fog);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}
.cta-copy .cta-phone a:hover{ color: var(--white); }

.cta-visual{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-mid);
  border-left: 1px solid rgba(65,90,119,.1);
}
.cta-visual-inner{
  text-align: center;
  padding: 48px;
}
.cta-phone-big{
  font-family: var(--heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -.01em;
  display: block;
  margin-bottom: 12px;
  transition: color var(--transition);
}
.cta-phone-big:hover{ color: var(--warm); }
.cta-or{
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--slate);
  margin-bottom: 12px;
  display: block;
}
.cta-text-btn{
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--fog);
  text-decoration: none;
  border: 1.5px solid rgba(119,141,169,.25);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.cta-text-btn:hover{
  border-color: var(--fog);
  color: var(--white);
  background: rgba(255,255,255,.04);
}
.cta-sub{
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--slate);
}

/* Legacy: CTA banner (centered) */
.cta-banner{
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(65,90,119,.15) 0%, transparent 70%),
    radial-gradient(ellipse at 80% 50%, rgba(65,90,119,.1) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='80'%3E%3Cpath d='M0 40 Q30 20 60 40 Q90 60 120 40' stroke='%23778DA9' stroke-width='.75' fill='none' opacity='0.08'/%3E%3Cpath d='M0 25 Q30 8 60 25 Q90 42 120 25' stroke='%23778DA9' stroke-width='.75' fill='none' opacity='0.06'/%3E%3Cpath d='M0 55 Q30 38 60 55 Q90 72 120 55' stroke='%23778DA9' stroke-width='.75' fill='none' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 100% 100%, 100% 100%, 120px 80px;
  padding-block: var(--section-v-loose);
  text-align: center;
}
.cta-banner h2{
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.cta-banner p{
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  color: rgba(255,255,255,.65);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.cta-banner-actions{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-phone-secondary{
  color: rgba(255,255,255,.6);
  font-size: .9rem;
}
.cta-phone-secondary a{
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 1px;
}
.cta-phone-secondary a:hover{
  border-color: var(--white);
  text-decoration: none;
}

/* Legacy: CTA strip */
.cta-strip{
  background: var(--navy-mid);
  padding: 2.75rem 0;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.cta-strip-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-strip-text h3{
  color: #ffffff;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: .35rem;
  line-height: 1.3;
}
.cta-strip-text p{
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  margin: 0;
}
.cta-strip-actions{
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.cta-strip-phone{
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  white-space: nowrap;
}
.cta-strip-phone a{
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}
.cta-strip-phone a:hover{ text-decoration: underline; }

/* Dual-contact CTA pattern */
.dual-cta{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
}
.dual-cta .cta-secondary-text{
  font-size: .88rem;
  color: var(--navy-mid);
}
.dual-cta.centered{
  align-items: center;
  text-align: center;
}
.dual-cta.centered .cta-secondary-text{ color: rgba(255,255,255,.6); }
.dual-cta.centered .cta-secondary-text a{ color: var(--white); }

/* ===========================
   14. FAQ ACCORDION
   =========================== */
.faq-list{
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.faq-item{
  border: 1px solid rgba(13,27,42,.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:has(.faq-question[aria-expanded="true"]){
  border-color: rgba(65,90,119,.2);
}
.faq-question{
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--heading);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.faq-question:hover{ background: var(--milk); }
.faq-q-text{ flex: 1; }
.faq-question[aria-expanded="true"]{
  background: var(--milk);
  color: var(--steel);
}
.faq-icon{
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 300ms var(--ease);
  color: var(--steel);
}
.faq-question[aria-expanded="true"] .faq-icon{
  transform: rotate(45deg);
}
.faq-answer{
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms var(--ease), padding 250ms ease;
}
.faq-answer.is-open{
  padding: .5rem 1.25rem 1.15rem;
  max-height: 600px;
}
.faq-answer p{
  font-size: .92rem;
  color: var(--navy-mid);
  margin-bottom: .5em;
  line-height: 1.65;
}

.faq-list-centered{
  max-width: 760px;
  margin-inline: auto;
}
.faq-category-heading{
  font-size: 1.4rem;
  margin-bottom: 1.15rem;
  color: var(--navy);
  font-weight: 700;
}
.faq-category-group{
  margin-bottom: 2.75rem;
}
.faq-category-group > .sec-label{
  margin-bottom: 1rem;
  font-size: 13px;
  color: var(--steel);
}

/* ===========================
   15. CARDS (legacy compat)
   =========================== */
.card{
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(13,27,42,.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
@media (hover: hover){
  .card:hover{
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }
}
.card-header{
  background: var(--navy-mid);
  padding: .85rem 1.5rem;
  color: var(--white);
  font-family: var(--heading);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.card-body{ padding: 1.25rem 1.5rem; }
.card-body a:not(.btn){
  font-weight: 600;
  font-size: .85rem;
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  margin-top: .5rem;
  text-decoration: none;
}
.card-body a:not(.btn)::after{
  content: '\2192';
  transition: transform var(--transition);
}
.card-body a:not(.btn):hover::after{ transform: translateX(3px); }
.card-body a:not(.btn):hover{ text-decoration: none; }

.card-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card-sm .card-body{ padding: 1.1rem 1.25rem; }

/* Land-type card modifier */
.card--land-type{
  border-top: 3px solid var(--slate);
  border-left: none;
}
.card--land-type .card-header{
  background: linear-gradient(135deg, var(--navy-mid) 0%, #162336 100%);
  font-size: .8rem;
  letter-spacing: .06em;
}
.card--land-type .card-body p{
  font-size: .88rem;
  color: var(--navy-mid);
  line-height: 1.55;
}

/* Situation card modifier */
.card--situation{
  border: 1px solid rgba(13,27,42,.06);
  border-left: 4px solid var(--steel);
  box-shadow: var(--shadow-sm);
}
.card--situation .card-body h3{
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--navy);
}
.card--situation .card-body p{
  font-size: .88rem;
  color: var(--navy-mid);
  line-height: 1.55;
}
@media (hover: hover){
  .card--situation:hover{
    border-left-color: #4e6a88;
  }
}

/* Card as link */
.card-link{
  text-decoration: none;
  color: inherit;
  display: block;
}
.card-link:hover{ text-decoration: none; }
.card-link .card-body h3{
  font-size: 1.05rem;
  margin-bottom: .5rem;
}
.card-link .card-body p{
  font-size: .9rem;
  color: var(--navy-mid);
}

/* ===========================
   16. HIGHLIGHT BOXES
   =========================== */
.highlight-box{
  background: rgba(65,90,119,.06);
  border-left: 3px solid var(--steel);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.15rem 1.35rem;
  margin: 1.5rem 0;
}
.highlight-box p{ margin-bottom: .5em; font-size: .92rem; }
.highlight-box p:last-child{ margin-bottom: 0; }
.highlight-box strong{ color: var(--navy); }

/* ===========================
   17. BREADCRUMBS
   =========================== */
.breadcrumbs{
  padding-block: .65rem;
  border-bottom: 1px solid rgba(13,27,42,.06);
  margin-bottom: 2.25rem;
}
.breadcrumbs ol{
  display: flex;
  flex-wrap: wrap;
  gap: .2rem;
  list-style: none;
  padding: 0;
  align-items: center;
}
.breadcrumbs li{
  margin: 0;
  font-size: .82rem;
  color: var(--ash);
}
.breadcrumbs a{
  color: var(--steel);
  text-decoration: none;
}
.breadcrumbs a:hover{ text-decoration: underline; }
.breadcrumb-sep{ margin-inline: .25rem; }

/* ===========================
   18. ABOUT PAGE
   =========================== */
.about-split{
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3.5rem;
  align-items: start;
}
.headshot-wrap{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.headshot-wrap::after{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
  pointer-events: none;
}
.headshot-wrap img{ width: 100%; height: auto; display: block; }

.content-body{ max-width: 800px; }
.content-body h2{ margin-top: 2.25rem; margin-bottom: .7rem; font-size: 1.5rem; }
.content-body h3{ margin-top: 1.75rem; margin-bottom: .5rem; font-size: 1.2rem; }
.content-body ul,.content-body ol{ margin-bottom: 1.1em; }

/* Highlight box — personal italic variant */
.highlight-personal{
  font-style: italic;
  border-left-color: var(--warm);
}
.highlight-personal em{ font-style: normal; font-weight: 600; }

/* About — Operating Principles (NOT the homepage trust grid) */
.principles-list{
  max-width: 900px;
  margin-top: 2.5rem;
}
.principle-row{
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(119,141,169,.1);
  align-items: baseline;
}
.principle-row:first-child{ border-top: 1px solid rgba(119,141,169,.1); }
.principle-row h4{
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}
.principle-row p{
  font-size: .92rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.6;
}

/* ===========================
   19. CONTACT PAGE
   =========================== */
.contact-split{
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-phone-number{
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: .4rem;
  letter-spacing: -.01em;
}
.contact-phone-number a{ color: var(--steel); }
.contact-phone-note{
  color: var(--navy-mid);
  font-size: .88rem;
}
.contact-btn-row{
  display: flex;
  gap: .65rem;
  margin-top: .85rem;
}
.contact-email-note{
  font-size: .85rem;
  color: var(--navy-mid);
}
.contact-aside h3{
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .35rem;
}
.contact-block{
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(13,27,42,.08);
}
.contact-block:last-of-type{ border-bottom: none; margin-bottom: 1rem; }
.contact-disclaimer{
  margin-top: 1.5rem;
  font-size: .85rem;
  color: var(--slate);
}

/* Trust sidebar list (county pages) */
.trust-list{
  font-size: .9rem;
  color: var(--navy-mid);
  padding-left: 1.2em;
  margin: .75rem 0 0;
  line-height: 1.7;
}
.trust-list li + li{ margin-top: .25rem; }

/* Highlight box headings / notes */
.highlight-box-heading{
  font-size: 1.1rem;
  margin-bottom: .6rem;
}
.highlight-box-note{
  font-size: .85rem;
  color: var(--slate);
  margin-top: .75rem;
}

/* County page note */
.county-note{
  margin-top: 1.25rem;
  font-size: .9rem;
  color: var(--steel);
}

/* ===========================
   20. COMPARISON LAYOUT
   =========================== */
.compare-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: var(--max-width-narrow);
  margin-inline: auto;
}
.compare-col{
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.compare-col h3{
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
  padding-bottom: .65rem;
  border-bottom: 2px solid rgba(255,255,255,.12);
}
.compare-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare-col ul li{
  padding: .45rem 0 .45rem 1.5rem;
  position: relative;
  font-size: .88rem;
  line-height: 1.55;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.compare-col ul li:last-child{ border-bottom: none; }
.compare-col ul li::before{
  position: absolute;
  left: 0;
  top: .5rem;
  font-size: .8rem;
}

/* Agent column — muted */
.compare-col--bad{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.compare-col--bad h3{ color: rgba(255,255,255,.65); }
.compare-col--bad ul li{ color: rgba(255,255,255,.55); }
.compare-col--bad ul li::before{ content: '\2715'; color: rgba(255,100,100,.6); }

/* Direct sale column — emphasized */
.compare-col--good{
  background: rgba(65,90,119,.3);
  border: 1px solid rgba(119,141,169,.25);
  box-shadow: 0 4px 20px rgba(65,90,119,.15);
}
.compare-col--good h3{ color: #ffffff; }
.compare-col--good ul li{ color: rgba(255,255,255,.88); }
.compare-col--good ul li::before{ content: '\2713'; color: #7ab8a0; }

/* Comparison cards on light bg */
.compare-cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}
.compare-card--agent .card-header{
  background: var(--fog);
  color: var(--navy-mid);
}
.compare-card--direct .card-header{
  background: var(--steel);
  color: var(--white);
}
.compare-card--direct{
  border: 2px solid var(--steel);
  box-shadow: var(--shadow-md);
}

/* ===========================
   21. FOOTER
   =========================== */
.site-footer{
  background: var(--navy);
  border-top: 1px solid rgba(65,90,119,.08);
  color: var(--slate);
  padding-top: 64px;
  padding-bottom: 0;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo{
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 12px;
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 700;
}
.footer-tagline{
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 20px;
  line-height: 1.5;
}
.footer-phone{
  display: block;
  font-family: var(--heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--fog);
  text-decoration: none;
  margin-bottom: 4px;
  transition: color var(--transition);
}
.footer-phone:hover{
  color: var(--white);
  text-decoration: none;
}
.footer-email{
  font-size: 14px;
  color: var(--slate);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-email:hover{
  color: var(--fog);
  text-decoration: none;
}
.footer-contact-block{ line-height: 1.6; }

.footer-col h4,
.footer-col .footer-section-heading{
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ash);
  margin-bottom: 18px;
}
.footer-col ul{ list-style: none; padding: 0; }
.footer-col ul{ display: flex; flex-direction: column; gap: 9px; }
.footer-col a{
  font-size: 14px;
  color: var(--slate);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover{
  color: var(--fog);
  text-decoration: none;
}

.footer-bottom{
  border-top: 1px solid rgba(65,90,119,.08);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer-disclaimer{
  font-size: 12px;
  color: var(--slate);
  opacity: .6;
  max-width: 580px;
  line-height: 1.5;
  flex: 1;
  margin: 0;
}
.footer-legal-links{
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12.5px;
}
.footer-legal-links a{
  color: var(--slate);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal-links a:hover{ color: var(--fog); }
.footer-legal-links span{ color: var(--slate); opacity: .3; }
.footer-copyright{
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--slate);
  opacity: .4;
  padding-top: 12px;
  margin: 0;
}

/* ===========================
   22. MOBILE STICKY BAR
   =========================== */
.mobile-sticky-bar{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--navy);
  border-top: 1px solid rgba(65,90,119,.2);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-bar-btn{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  min-height: 48px;
  transition: background var(--transition);
}
.mobile-bar-text{
  background: transparent;
  border: 1.5px solid var(--slate);
}
.mobile-bar-text:hover{
  background: rgba(255,255,255,.06);
  color: var(--white);
  text-decoration: none;
}
.mobile-bar-call{
  background: var(--steel);
}
.mobile-bar-call:hover{
  background: #4e6a88;
  color: var(--white);
  text-decoration: none;
}

/* ===========================
   23. ERROR/404 PAGE
   =========================== */
.error-page{
  text-align: center;
  padding-block: calc(var(--section-v) * 1.5);
}
.error-code{
  font-family: var(--heading);
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 800;
  color: var(--bone);
  line-height: 1;
  letter-spacing: -.03em;
}

/* ===========================
   24. THANK-YOU PAGE
   =========================== */
.thank-you-icon{
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.thank-you-icon-circle{
  width: 68px;
  height: 68px;
  background: var(--steel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   25. SECTION VARIANTS
   =========================== */
.section{ padding-block: var(--section-v); }
.section-light{ background: var(--white); }
.section-alt{
  background: linear-gradient(180deg, var(--milk) 0%, var(--bone) 100%);
}
.section-dark{
  background: var(--navy-mid);
  color: var(--white);
}
.section-dark h2,.section-dark h3{ color: var(--white); }
.section-dark p{ color: rgba(255,255,255,.78); }

/* Section header */
.section-header{
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2{
  position: relative;
  padding-bottom: .75rem;
  margin-bottom: .65rem;
}
.section-header h2::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--steel);
  border-radius: 2px;
}
.section-header p{
  color: var(--navy-mid);
  font-size: .95rem;
}
.section-dark .section-header p{ color: rgba(255,255,255,.65); }
.section-dark .section-header .section-label{ color: rgba(255,255,255,.45); }

/* Left-aligned header */
.section-header--left{
  text-align: left;
  margin-inline: 0;
  max-width: none;
}
.section-header--left h2::after{
  left: 0;
  transform: none;
}

/* Section label */
.sec-label,
.section-label{
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--steel);
  display: block;
  margin-bottom: 12px;
}
.section-dark .sec-label,
.section-dark .section-label{ color: var(--warm); }

/* Section spacing modifiers */
.section--tight{ padding-block: var(--section-v-tight); }
.section--loose{ padding-block: var(--section-v-loose); }

/* Self-padded sections (padding includes inline) */
.sec{ padding: var(--section-v) 32px; }
.sec-wide{ padding: var(--section-v-loose) 32px; }

/* Inner content wrapper */
.sec-inner{
  max-width: var(--max-width);
  margin-inline: auto;
}

/* Section link */
.sec-link{
  text-align: center;
  margin-top: 56px;
}
.sec-link a{
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--heading);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--steel);
  text-decoration: none;
  border: 2px solid var(--bone);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.sec-link a:hover{
  border-color: var(--steel);
  background: rgba(65,90,119,.04);
}

/* ===========================
   26. STATS, TAGS & NEARBY
   =========================== */

/* Stats strip */
.stats-strip{
  background: var(--navy-mid);
  padding: 2.25rem 0;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item{
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.stat-number{
  font-family: var(--heading);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-label{
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* City tags */
.city-grid{
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.city-tag{
  display: inline-flex;
  align-items: center;
  padding: .3rem .75rem;
  background: var(--bone);
  border-radius: 999px;
  font-size: .84rem;
  color: var(--navy-mid);
  border: 1px solid rgba(13,27,42,.06);
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
a.city-tag:hover{
  background: var(--steel);
  color: var(--white);
  text-decoration: none;
}

/* Nearby counties */
.nearby-counties{
  background: var(--milk);
  border: 1px solid rgba(13,27,42,.05);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.nearby-counties h4{
  margin-bottom: .85rem;
  font-size: 1.05rem;
}
.nearby-list{
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  list-style: none;
  padding: 0;
}
.nearby-list li{ margin: 0; }
.nearby-list a{
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .85rem;
  background: var(--white);
  border: 1px solid rgba(13,27,42,.08);
  border-radius: var(--radius-sm);
  font-size: .84rem;
  font-weight: 500;
  color: var(--steel);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.nearby-list a:hover{
  background: var(--steel);
  color: var(--white);
  text-decoration: none;
}

/* Slow-sale list */
.slow-sale-list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
}
.slow-sale-item{
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--steel);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
@media (hover: hover){
  .slow-sale-item:hover{ box-shadow: var(--shadow-md); }
}
.slow-sale-item svg{
  flex-shrink: 0;
  color: var(--steel);
  margin-top: 1px;
}
.slow-sale-item div h5{
  font-size: .9rem;
  margin-bottom: .2rem;
  color: var(--navy);
}
.slow-sale-item div p{
  font-size: .84rem;
  color: var(--navy-mid);
  margin: 0;
  line-height: 1.5;
}

/* ===========================
   27. BLOG
   =========================== */
.blog-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.blog-card{
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13,27,42,.05);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--navy);
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover{
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--navy);
}
.blog-card-body{
  padding: 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-date{
  font-size: .75rem;
  color: var(--ash);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.blog-card-title{
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: .5rem;
  line-height: 1.35;
}
.blog-card-excerpt{
  font-size: .88rem;
  color: var(--navy-mid);
  flex: 1;
}
.blog-card-read{
  margin-top: .85rem;
  font-size: .84rem;
  color: var(--steel);
  font-weight: 600;
}

/* Blog post */
.post-header{
  padding-block: var(--section-v);
  background: var(--navy);
}
.post-header h1{
  color: var(--white);
  max-width: 800px;
}
.post-meta{
  color: rgba(255,255,255,.5);
  font-size: .84rem;
  margin-top: .65rem;
}
.post-body{
  max-width: 720px;
  margin-inline: auto;
  padding-block: var(--section-v);
}
.post-body h2{ font-size: 1.4rem; margin-top: 2rem; margin-bottom: .7rem; }
.post-body h3{ font-size: 1.15rem; margin-top: 1.5rem; margin-bottom: .5rem; }
.post-body ul,.post-body ol{ margin-bottom: 1.1em; }
.post-body a{ color: var(--steel); }

/* ===========================
   28. CONTENT LAYOUTS
   =========================== */
.content-sidebar-layout{
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}

/* ===========================
   29. SCROLL REVEAL
   =========================== */
.js-reveal .reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.js-reveal .reveal.is-visible{
  opacity: 1;
  transform: none;
}
.js-reveal .reveal:nth-child(2){ transition-delay: .06s; }
.js-reveal .reveal:nth-child(3){ transition-delay: .12s; }
.js-reveal .reveal:nth-child(4){ transition-delay: .18s; }
.js-reveal .reveal:nth-child(5){ transition-delay: .24s; }
.js-reveal .reveal:nth-child(6){ transition-delay: .30s; }

/* ===========================
   30. UTILITIES
   =========================== */
.text-center  { text-align: center; }
.text-muted   { color: var(--ash); }
.mt-1  { margin-top: .5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-4  { margin-bottom: 2rem; }
.gap-2 { gap: 1rem; }

/* ===========================
   31. RESPONSIVE — 900px
   Layout collapse for grids
   =========================== */
@media (max-width: 900px){
  /* Form dual-panel → stack */
  .form-wrap{ grid-template-columns: 1fr; }
  .form-info{ padding: 32px 28px; }
  .form-fields{ padding: 32px 28px; }

  /* Process steps → horizontal layout */
  .steps{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps::before{ display: none; }
  .step{
    text-align: left;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 0;
  }
  .step-num{ margin: 0; }
  .step h3,.step p{ text-align: left; }

  /* State split → stack */
  .state-split{ grid-template-columns: 1fr; }
  .state-col:first-child{
    border-right: none;
    border-bottom: 1px solid rgba(119,141,169,.1);
    padding-bottom: 40px;
  }

  /* Trust band → stack */
  .trust-row{ grid-template-columns: 1fr; }
  .trust-row .trust-item::after{ display: none; }
  .trust-row .trust-item{
    padding: 12px 0;
    border-bottom: 1px solid rgba(119,141,169,.06);
  }
  .trust-row .trust-item:last-child{ border-bottom: none; }

  /* Land types → stack */
  .land-head{ grid-template-columns: 1fr; gap: 40px; }
  .land-row{
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .land-row h3{ white-space: normal; }
  .land-row-arrow{ opacity: 1; justify-self: start; }

  /* Situation cards → stack */
  .sit-grid{ grid-template-columns: 1fr; }

  /* CTA split → stack */
  .cta-split{ grid-template-columns: 1fr; }
  .cta-copy{ padding: 72px 32px; }
  .cta-visual{
    padding: 0 32px 72px;
    border-left: none;
    border-top: 1px solid rgba(65,90,119,.1);
  }
  .cta-visual-inner{ padding: 48px 0; }

  /* Footer → 2 col */
  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  /* Legacy grids */
  .process-steps{ grid-template-columns: 1fr; gap: 1.25rem; }
  .process-step::before{ font-size: 4rem; }
  .trust-grid{ grid-template-columns: 1fr 1fr; gap: 1rem; }
  .compare-cards{ grid-template-columns: 1fr; }
  .compare-grid{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

/* ===========================
   32. RESPONSIVE — 860px
   Nav hamburger breakpoint
   =========================== */
@media (max-width: 860px){
  .site-nav,
  .header-cta{ display: none; }
  .hamburger{ display: flex; }
}

/* ===========================
   33. RESPONSIVE — 768px
   Tablet portrait adjustments
   =========================== */
@media (max-width: 768px){
  :root{
    --section-v: var(--section-v-mob);
    --section-v-tight: var(--section-v-mob-tight);
    --section-v-loose: 64px;
  }

  .form-row-2,.form-2col{ grid-template-columns: 1fr; }

  .hero-split{ grid-template-columns: 1fr; }
  .hero-split .hero-content{ padding-inline: 0; }

  .about-split{ grid-template-columns: 1fr; }
  .about-split .headshot-wrap{ max-width: 360px; }

  .contact-split{ grid-template-columns: 1fr; gap: 2.25rem; }

  .content-sidebar-layout{ grid-template-columns: 1fr; gap: 2rem; }

  .county-grid{ grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

  .cta-strip-inner{
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
  .cta-strip-actions{
    flex-direction: column;
    gap: .85rem;
    width: 100%;
  }
  .cta-strip-actions .btn{ width: 100%; justify-content: center; }

  .footer-brand{ grid-column: 1 / -1; }
}

/* ===========================
   34. RESPONSIVE — 640px
   Mobile: bar shows, tight padding
   =========================== */
@media (max-width: 640px){
  .hero-content{
    padding: 130px 24px 100px;
  }
  .form-section{ padding: 0 20px 72px; }

  .mobile-sticky-bar{ display: flex; }
  body.has-sticky-bar{ padding-bottom: 74px; }

  .container{ padding-inline: 24px; }

  /* Sections */
  .section{ padding-block: 72px; }
  .section--loose{ padding-block: 88px; }
  .sec{ padding: 72px 24px; }
  .sec-wide{ padding: 88px 24px; }
  .areas-section{ padding: 72px 24px; }
  .land-types-section{ padding: 72px 24px; }
  .situations-section{ padding: 72px 24px; }

  .state-col{ padding: 28px 0; }

  /* Footer → 1 col */
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom{
    flex-direction: column;
    text-align: center;
  }
  .footer-disclaimer{ max-width: 100%; }

  /* Principles → stack */
  .principle-row{
    grid-template-columns: 1fr;
    gap: .5rem;
  }
}

/* ===========================
   35. RESPONSIVE — 480px
   Small phone
   =========================== */
@media (max-width: 480px){
  .hero-actions{
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-banner-actions{ flex-direction: column; }
  .trust-grid{ grid-template-columns: 1fr; }
  .slow-sale-list{ grid-template-columns: 1fr; }
}

/* ===========================
   36. PRINT STYLES
   =========================== */
@media print{
  .site-header,
  .mobile-sticky-bar,
  .mobile-nav,
  .cta-strip,
  .cta-banner,
  .cta-end,
  .skip-link{ display: none !important; }

  body{
    color: #000;
    background: #fff;
    font-size: 12pt;
    padding-top: 0;
  }

  a{ color: #000; text-decoration: underline; }
  a[href]::after{ content: ' (' attr(href) ')'; font-size: .8em; color: #555; }

  .hero{ min-height: auto; background: #eee; }
  .hero-overlay{ display: none; }
  .hero h1{ color: #000; }

  .section,.section-alt,.section-dark{
    background: #fff;
    color: #000;
    padding: 1.5rem 0;
  }
  .section-dark h2,.section-dark h3{ color: #000; }
  .section-dark p{ color: #333; }
}

/* ===========================
   37. MOTION PREFERENCES
   =========================== */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js-reveal .reveal{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===========================
   38. iOS SAFARI — prevent
   auto-zoom on form focus
   =========================== */
@media screen and (max-width: 768px){
  .klc-form input[type="text"],
  .klc-form input[type="tel"],
  .klc-form input[type="email"],
  .klc-form select,
  .klc-form textarea,
  .fg input,.fg select,.fg textarea{
    font-size: 16px;
  }
}
