/* ==========================================================================
   Doorvest Cleveland — stylesheet
   Design tokens mirrored from doorvest.com
   ========================================================================== */

:root {
  --green: #4EA37C;
  --green-dark: #3F8A68;
  --green-darker: #35745780;
  --green-tint: #F0FDF4;
  --green-tint-2: #DCFCE7;

  --navy: #1D2B3D;
  --ink: #192434;
  --muted: #6B7280;
  --muted-light: #9CA3AF;

  --bg: #FFFFFF;
  --bg-alt: #F8FAFE;
  --border: #E2E8F0;
  --border-light: #EEF2F7;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow: 0 4px 16px rgba(16, 24, 40, 0.06);
  --shadow-lg: 0 12px 40px rgba(16, 24, 40, 0.10);

  --gold: #C8912A;
  --gold-tint: #FDF7E7;
  --gold-line: #EBD9A6;

  --maxw: 1200px;
  --nav-h: 76px;
}

/* --------------------------------------------------------------- reset -- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  margin: 0 0 16px;
  font-weight: 700;
}

h1 { font-size: clamp(38px, 5.4vw, 60px); line-height: 1.06; letter-spacing: -1.5px; }
h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.15; letter-spacing: -0.9px; }
h3 { font-size: clamp(20px, 2vw, 24px); line-height: 1.3; font-weight: 600; letter-spacing: -0.2px; }
h4 { font-size: 18px; line-height: 1.4; font-weight: 600; }

p { margin: 0 0 18px; color: var(--muted); }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }

ul { margin: 0; padding: 0; list-style: none; }

/* ------------------------------------------------------------- layout -- */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.wrap--narrow { max-width: 860px; }

section { padding: 88px 0; }
section.tight { padding: 64px 0; }
.bg-alt { background: var(--bg-alt); }
.bg-green { background: var(--green-tint); }
.bg-navy { background: var(--navy); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy p { color: rgba(255, 255, 255, 0.72); }

.section-head { max-width: 760px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 18px; line-height: 1.75; margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.lead { font-size: 20px; line-height: 1.65; font-weight: 500; }
.accent { color: var(--green); }
.text-center { text-align: center; }

/* ------------------------------------------------------------ buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 0;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); color: #fff; transform: translateY(-1px); }

.btn-outline {
  background: #fff;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 14px 30px;
}
.btn-outline:hover { background: var(--green-tint); color: var(--green-dark); }

.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: #f1f5f9; color: var(--navy); }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 14px 30px;
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: #fff; }

.btn-sm { font-size: 14px; padding: 12px 28px; border-radius: var(--radius-sm); }
.btn-sm.btn-outline { padding: 11px 27px; border-width: 1px; border-color: var(--navy); color: var(--navy); }
.btn-sm.btn-outline:hover { background: var(--bg-alt); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.btn-row.center { justify-content: center; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--green);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.text-link:hover { color: var(--green-dark); }

/* ------------------------------------------------------------- navbar -- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 1.2px;
  color: var(--navy);
  text-transform: uppercase;
  white-space: nowrap;
}
.logo:hover { color: var(--navy); }
.logo .logo-mark { color: var(--green); }
.logo .logo-city {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--green);
  padding-left: 8px;
  border-left: 1px solid var(--border);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--green); }
.nav-links a.active { color: var(--green); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
/* The 7-item nav plus both CTAs needs ~1270px but the container caps at 1200,
   so the phone button is not shown in the header at any width. The number
   still appears in the footer and on the contact page. */
.nav-cta .btn-outline { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}
.nav-toggle span + span { margin-top: 5px; }

/* ---------------------------------------------------------------- hero -- */

.hero {
  padding: 92px 0 76px;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-alt) 100%);
}
.hero h1 { max-width: 980px; margin-left: auto; margin-right: auto; }
.hero .lead { max-width: 720px; margin: 24px auto 20px; color: var(--muted); }
.hero .hero-sub { max-width: 780px; margin: 0 auto 32px; font-size: 16px; }
.hero .btn-row { justify-content: center; }
.hero .after-cta { margin: 22px 0 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-tint);
  color: var(--green-dark);
  border: 1px solid var(--green-tint-2);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(78, 163, 124, 0.22);
}

/* --------------------------------------------------------------- stats -- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
  margin-top: 64px;
}
.stat { text-align: center; }
.stat .num {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
  letter-spacing: -1px;
}
.stat .label {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 6px;
}

/* --------------------------------------------------------------- cards -- */

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: #D7E0EA; }
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 15.5px; }
.card .text-link { margin-top: 18px; font-size: 15px; }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-tint);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; }

/* ------------------------------------------------------------ features -- */

.check-list { display: grid; gap: 18px; }
.check-list.two-col { grid-template-columns: repeat(2, 1fr); gap: 18px 40px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
}
.check-list li strong { color: var(--ink); font-weight: 600; }
.check-list .tick {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check-list .tick svg { width: 12px; height: 12px; }

/* ------------------------------------------------------------- split -- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.narrow-gap { gap: 48px; }

.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

/* --------------------------------------------------------- steps flow -- */

.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: 0; }
.step .step-num {
  counter-increment: step;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step .step-num::before { content: counter(step); }
.step h3 { margin-bottom: 6px; }
.step p { margin-bottom: 0; font-size: 15.5px; }

/* ------------------------------------------------------------- areas -- */

.area-group { margin-bottom: 40px; }
.area-group h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.area-group h3 .county-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-tint);
  border-radius: 999px;
  padding: 4px 10px;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  transition: border-color .15s ease, background .15s ease;
}
.chip:hover { border-color: var(--green); background: var(--green-tint); color: var(--green-dark); }

/* ------------------------------------------------------------ pricing -- */

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; }
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--green);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.price-card .tier-badge {
  position: absolute;
  top: -13px; left: 32px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-card .tier-name { font-size: 20px; margin-bottom: 4px; }
.price-card .tier-for { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.price-card .amount {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1.5px;
}
.price-card .amount .unit { font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-card .amount-note { font-size: 13px; color: var(--muted-light); margin: 10px 0 26px; }
.price-card .check-list { margin-bottom: 28px; }
.price-card .btn { margin-top: auto; width: 100%; }

.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 15px;
}
.fee-table th, .fee-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
}
.fee-table th {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-alt);
}
.fee-table td:first-child { font-weight: 600; color: var(--ink); width: 34%; }
.fee-table td { color: var(--muted); }
.fee-table tr:last-child td { border-bottom: 0; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------------------------------------------------------------- faq -- */

.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  padding: 24px 40px 24px 0;
  text-align: left;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  line-height: 1.5;
}
.faq-q::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .22s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-20%) rotate(225deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a p { padding-right: 40px; font-size: 15.5px; }
.faq-item.open .faq-a { max-height: 480px; }

/* --------------------------------------------------------- testimonial -- */

.quote-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.quote-card .stars { color: var(--green); letter-spacing: 3px; font-size: 15px; margin-bottom: 14px; }
.quote-card blockquote {
  margin: 0 0 20px;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
}
.quote-card .who { display: flex; align-items: center; gap: 12px; }
.quote-card .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.quote-card .who-name { font-weight: 600; font-size: 14.5px; color: var(--ink); line-height: 1.3; }
.quote-card .who-meta { font-size: 13px; color: var(--muted); }

/* ---------------------------------------------------------- cta strip -- */

.cta-band { background: var(--navy); padding: 80px 0; text-align: center; }
.cta-band h2 { color: #fff; max-width: 780px; margin-left: auto; margin-right: auto; }
.cta-band p { color: rgba(255, 255, 255, 0.72); max-width: 640px; margin: 0 auto 32px; font-size: 18px; }

/* ---------------------------------------------------------------- form -- */

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(78, 163, 124, 0.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: 13px; color: var(--muted-light); margin: 16px 0 0; }
.form-success {
  display: none;
  background: var(--green-tint);
  border: 1px solid var(--green-tint-2);
  color: var(--green-dark);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 20px;
}
.form-success.show { display: block; }

/* -------------------------------------------------------- contact info -- */

.info-list li {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.info-list li:last-child { border-bottom: 0; }
.info-list .info-icon {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green-tint);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.info-list .info-icon svg { width: 18px; height: 18px; }
.info-list .info-label { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-light); }
.info-list .info-value { font-size: 15.5px; font-weight: 500; color: var(--ink); }
.info-list .info-value a { font-weight: 500; }

/* -------------------------------------------------------------- footer -- */

.footer { background: var(--navy); color: rgba(255, 255, 255, 0.68); padding: 68px 0 32px; font-size: 14.5px; }
.footer a { color: rgba(255, 255, 255, 0.68); }
.footer a:hover { color: #fff; }
.footer .logo { color: #fff; }
.footer .logo .logo-city { border-left-color: rgba(255, 255, 255, 0.25); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-about p { color: rgba(255, 255, 255, 0.6); font-size: 14.5px; margin: 18px 0 0; max-width: 320px; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; margin-bottom: 18px; }
.footer-links li { margin-bottom: 11px; }

.footer-bottom {
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 20px; }

/* ------------------------------------------------------------- a11y -- */

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ------------------------------------------------------------ reveal -- */

/* Scoped to .js so content is never hidden when scripting is unavailable. */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* --------------------------------------------------------- responsive -- */

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .nav-links { gap: 24px; }
}

/* Seven nav items plus both CTAs stop fitting well before the layout
   breakpoint, so the nav collapses on its own schedule. */
@media (max-width: 1200px) {
  .nav-links { gap: 22px; }
}

@media (max-width: 1024px) {
  .nav-links,
  .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 8px 24px 20px;
  }
  .nav-links.open a { padding: 14px 0; border-bottom: 1px solid var(--border-light); font-size: 16px; }
}

@media (max-width: 900px) {
  section { padding: 64px 0; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .grid-3, .price-grid, .price-grid.two { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .check-list.two-col { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --nav-h: 66px; }
  .wrap { padding: 0 18px; }
  .hero { padding: 60px 0 56px; }
  .grid-2, .grid-4, .field-row { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .nav-cta .btn { width: auto; }
  .card, .price-card, .form-card, .panel { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .step { grid-template-columns: 44px 1fr; gap: 16px; }
  .step .step-num { width: 40px; height: 40px; font-size: 16px; }
  .logo { font-size: 16px; }
  .logo .logo-city { font-size: 13px; }
}

/* ==========================================================================
   Migrated content — location pages, blog, and article prose
   ========================================================================== */

.hero--sub { padding: 62px 0 54px; text-align: left; }
.hero--sub h1 { margin-left: 0; margin-right: 0; }
.hero--sub .lead { margin-left: 0; margin-right: 0; max-width: 720px; }
.hero--post h1 { font-size: clamp(30px, 4vw, 46px); }

.crumbs {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.crumbs a { color: var(--muted); font-weight: 500; }
.crumbs a:hover { color: var(--green); }
.crumbs span[aria-current] { color: var(--ink); font-weight: 600; }

.post-meta { font-size: 14.5px; color: var(--muted); margin: 0; }
.back-link { margin-top: 40px; }

/* ---------------------------------------------------------------- prose -- */

.prose { font-size: 17px; line-height: 1.78; color: var(--muted); }
.prose > *:first-child { margin-top: 0; }
.prose h2 {
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.25;
  margin: 48px 0 16px;
  letter-spacing: -0.5px;
}
.prose h3 { font-size: 21px; margin: 34px 0 12px; }
.prose h4 { font-size: 18px; margin: 28px 0 10px; color: var(--ink); }
.prose p { margin: 0 0 20px; }
.prose a { font-weight: 500; border-bottom: 1px solid rgba(78,163,124,.4); }
.prose a:hover { border-bottom-color: var(--green); }
.prose strong, .prose b { color: var(--ink); font-weight: 600; }

.prose ul, .prose ol { margin: 0 0 22px; padding-left: 22px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 10px; padding-left: 4px; }
.prose li::marker { color: var(--green); }

.prose img {
  border-radius: var(--radius-lg);
  margin: 28px auto;
  box-shadow: var(--shadow);
}

.prose blockquote {
  margin: 32px 0;
  padding: 26px 30px;
  background: var(--green-tint);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.prose blockquote > *:last-child { margin-bottom: 0; }
.prose blockquote h2,
.prose blockquote h3 { margin-top: 0; font-size: 21px; }

.prose hr { border: 0; border-top: 1px solid var(--border); margin: 40px 0; }

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.prose th, .prose td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
  vertical-align: top;
}
.prose th { background: var(--bg-alt); color: var(--ink); font-weight: 600; }

.embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin: 30px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --------------------------------------------------- location index cards -- */

.card--link { display: block; color: inherit; }
.card--link:hover { color: inherit; }
.card--link h3 { margin-bottom: 8px; }
.card--link p { margin-bottom: 14px; font-size: 15px; }
.card--link .text-link { font-size: 14.5px; border-bottom: 0; }

/* ------------------------------------------------------------ blog index -- */

.post-list { display: grid; gap: 0; }
.post-card {
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
.post-card:first-child { padding-top: 0; }
.post-card time {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.post-card h3 { font-size: 23px; margin-bottom: 10px; line-height: 1.3; }
.post-card h3 a { color: var(--navy); }
.post-card h3 a:hover { color: var(--green); }
.post-card p { font-size: 15.5px; margin-bottom: 12px; }
.post-card .text-link { font-size: 14.5px; border-bottom: 0; }

@media (max-width: 620px) {
  .prose { font-size: 16px; }
  .prose img { margin: 22px auto; }
  .prose blockquote { padding: 20px 22px; }
  .post-card h3 { font-size: 20px; }
}

/* ------------------------------------------------------- recognition -- */

.award-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(180deg, #fff 0%, var(--gold-tint) 100%);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow);
}
.award-band .eyebrow { color: var(--gold); }
.award-band .award-mark svg { filter: drop-shadow(0 3px 8px rgba(169, 118, 27, .30)); }
.award-band .award-mark {
  flex: none;
  width: 132px; height: 132px;
  display: flex; align-items: center; justify-content: center;
}
.award-band .award-mark img { width: 100%; height: auto; }
.award-band .award-mark svg { width: 100%; height: auto; }
.award-band .eyebrow { margin-bottom: 8px; }
.award-band h2 { font-size: clamp(21px, 2.3vw, 27px); margin-bottom: 8px; letter-spacing: -0.4px; }
.award-band p { font-size: 15.5px; margin-bottom: 14px; }
.award-band .btn-row { gap: 12px; }

.award-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.award-links a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.award-links a:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-2px); }
.award-links .al-icon {
  flex: none; width: 34px; height: 34px; border-radius: 8px;
  background: var(--green-tint); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.award-links .al-icon svg { width: 16px; height: 16px; }
.award-links .al-title { display: block; font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.35; }
.award-links .al-meta  { display: block; font-size: 13px; color: var(--muted); margin-top: 3px; }

@media (max-width: 760px) {
  .award-band { grid-template-columns: 1fr; text-align: center; gap: 20px; padding: 28px 22px; }
  .award-band .award-mark { margin: 0 auto; width: 88px; height: 88px; }
  .award-band .btn-row { justify-content: center; }
  .award-links { grid-template-columns: 1fr; }
}

/* certificate preview inside the recognition section */
.cert-figure {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.cert-figure .cert-shot {
  display: block;
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cert-figure .cert-shot:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.cert-figure .cert-shot img { width: 100%; height: auto; }
.cert-figure figcaption { margin: 0; }
.cert-figure h3 { margin-bottom: 10px; }
.cert-figure p { font-size: 15.5px; margin-bottom: 16px; }
.cert-figure .cert-meta {
  font-size: 13.5px; color: var(--muted-light);
  border-top: 1px solid var(--border-light); padding-top: 14px; margin-top: 4px;
}

@media (max-width: 760px) {
  .cert-figure { grid-template-columns: 1fr; gap: 22px; padding: 22px; }
  .cert-figure .cert-shot { max-width: 300px; margin: 0 auto; }
}
