:root {
  --green-950: #16340f;
  --green-900: #214b17;
  --green-800: #2c5d20;
  --green-700: #3d742e;
  --cream: #f7f3eb;
  --sand: #e8dfcf;
  --white: #ffffff;
  --ink: #17201a;
  --muted: #607066;
  --line: #dce3dc;
  --soft: #f3f6f1;
  --shadow: 0 22px 60px rgba(18, 43, 16, 0.12);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 1000;
  padding: 10px 14px;
  background: white;
  color: black;
}
.skip-link:focus { top: 12px; }

.utility-bar {
  background: var(--green-950);
  color: rgba(255,255,255,.78);
  font-size: .82rem;
}
.utility-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.utility-inner a { color: white; font-weight: 700; }

.site-header {
  position: relative;
  z-index: 50;
  background: var(--green-900);
  color: var(--white);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}
.brand-mark { width: 56px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.02rem;
}
.brand-text small {
  margin-top: 5px;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .78;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .92rem;
  font-weight: 600;
}
.nav-links > a:not(.button) { opacity: .88; }
.nav-links > a:hover { opacity: 1; }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}
.menu-toggle span:not(.sr-only) {
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: white;
  display: block;
}

.hero {
  position: relative;
  min-height: 730px;
  display: grid;
  align-items: center;
  color: white;
  background:
    url("assets/blue-ridge-hero.png")
    center center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,22,8,.78) 0%, rgba(8,22,8,.60) 35%, rgba(8,22,8,.22) 66%, rgba(8,22,8,.10) 100%),
    linear-gradient(0deg, rgba(7,19,7,.65) 0%, transparent 52%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 90px;
}
.eyebrow {
  margin: 0 0 18px;
  color: rgba(255,255,255,.82);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow.green { color: var(--green-700); }
.eyebrow.light { color: #bbd3ae; }
.hero h1, .section h2, .contact-section h2, .apply-section h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.13;
  letter-spacing: -.025em;
}
.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 5.5rem);
}
.hero-copy {
  max-width: 660px;
  margin: 25px 0 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.service-pills a {
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(43,93,32,.75);
  font-size: .88rem;
  font-weight: 700;
  backdrop-filter: blur(7px);
}
.service-pills a:hover { background: var(--green-700); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 40px; padding-inline: 18px; font-size: .88rem; }
.button-primary { background: var(--cream); color: var(--green-900); }
.button-primary:hover { background: white; }
.button-light { background: var(--cream); color: var(--green-900); }
.button-outline { border-color: rgba(255,255,255,.5); color: white; background: rgba(0,0,0,.08); }
.button-outline:hover { border-color: white; background: rgba(255,255,255,.1); }

.trust-strip {
  background: var(--green-950);
  color: white;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-grid div {
  padding: 25px 30px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.trust-grid div:first-child { padding-left: 0; }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { margin-bottom: 4px; }
.trust-grid span { color: rgba(255,255,255,.66); font-size: .88rem; }

.section { padding: 105px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--green-950); color: white; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading h2, .partner-section h2, .about-grid h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}
.section-heading > p:last-child {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  min-height: 350px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  background: white;
  box-shadow: 0 10px 35px rgba(20,49,16,.06);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e7efe3;
  color: var(--green-800);
  font-weight: 800;
}
.service-card h3 { margin: 23px 0 12px; font-size: 1.45rem; }
.service-card p { margin: 0 0 24px; color: var(--muted); }
.service-card a {
  margin-top: auto;
  color: var(--green-700);
  font-weight: 700;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}
.steps li {
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: center;
  background: white;
}
.steps > li > span {
  color: var(--green-700);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 2rem;
}
.steps h3 { margin: 0 0 5px; }
.steps p { margin: 0; color: var(--muted); }
.center { text-align: center; margin-top: 36px; }

.partner-grid, .about-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: center;
}
.partner-grid > div > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.text-link { color: var(--green-700); font-weight: 700; }
.partner-panel {
  padding: 38px;
  border-radius: var(--radius);
  background: var(--green-900);
  color: white;
  box-shadow: var(--shadow);
}
.partner-panel h3 { margin-top: 0; font-size: 1.45rem; }
.partner-panel ul { margin: 20px 0 0; padding-left: 21px; }
.partner-panel li { margin: 10px 0; color: rgba(255,255,255,.8); }

.about-grid { align-items: start; }
.about-grid p:not(.eyebrow) { color: rgba(255,255,255,.72); font-size: 1.05rem; }

.apply-section { padding-top: 80px; padding-bottom: 80px; }
.apply-card {
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  background: var(--soft);
}
.apply-card h2 { margin: 0; font-size: clamp(2rem, 3.5vw, 3.2rem); }
.apply-card p:not(.eyebrow) { max-width: 700px; color: var(--muted); }

.contact-section { background: #fbfcfa; }
.contact-grid { align-items: start; }
.contact-section h2 { margin: 0 0 18px; font-size: clamp(2rem, 3.5vw, 3.3rem); }
.contact-section > .container > div > p:not(.eyebrow) { color: var(--muted); }
.contact-details { display: grid; gap: 15px; margin-top: 30px; }
.contact-details a, .contact-details div {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}
.contact-details strong, .contact-details span { display: block; }
.contact-details span { color: var(--muted); margin-top: 4px; }

.contact-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 40px rgba(20,49,16,.07);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
label { display: block; margin-bottom: 15px; font-size: .88rem; font-weight: 700; }
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  border: 1px solid #cbd5cb;
  border-radius: 6px;
  background: white;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(61,116,46,.18);
  border-color: var(--green-700);
}
textarea { resize: vertical; }
.form-note { margin-bottom: 0; color: var(--muted); font-size: .78rem; }

.site-footer {
  padding: 70px 0 25px;
  background: #10260c;
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
}
.footer-brand { margin-bottom: 18px; }
.footer-grid h3 { font-size: .95rem; }
.footer-grid a, .footer-grid span {
  display: block;
  margin: 8px 0;
  color: rgba(255,255,255,.68);
  font-size: .88rem;
}
.footer-grid p { max-width: 360px; color: rgba(255,255,255,.62); }
.legal {
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: grid;
  grid-template-columns: .5fr 1.5fr;
  gap: 30px;
}
.legal p { margin: 0; color: rgba(255,255,255,.5); font-size: .74rem; }

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

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 114px;
    left: 0;
    right: 0;
    padding: 24px 20px 30px;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    background: var(--green-900);
    box-shadow: 0 18px 30px rgba(0,0,0,.25);
  }
  .nav-links.open { display: flex; }
  .nav-links .button { width: 100%; }
  .hero {
    min-height: 700px;
    background-position: 61% center;
  }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8,22,8,.84), rgba(8,22,8,.48)),
      linear-gradient(0deg, rgba(7,19,7,.72), transparent 58%);
  }
  .trust-grid, .cards, .partner-grid, .about-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding-left: 0;
  }
  .trust-grid div:last-child { border-bottom: 0; }
  .partner-grid, .about-grid, .contact-grid { gap: 38px; }
  .apply-card { align-items: flex-start; flex-direction: column; }
  .legal { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .utility-inner span { display: none; }
  .utility-inner { justify-content: flex-end; }
  .nav { min-height: 72px; }
  .nav-links { top: 104px; }
  .brand-mark { width: 47px; }
  .brand-text strong { font-size: .92rem; }
  .hero {
    min-height: 690px;
    background-position: 65% center;
  }
  .hero-content { padding-block: 65px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-copy { font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .section { padding: 78px 0; }
  .service-card { min-height: auto; }
  .steps li { grid-template-columns: 1fr; gap: 8px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .apply-card, .contact-form, .partner-panel { padding: 25px; }
}

.consent-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 400;
  color: var(--muted);
  font-size: .78rem;
}
.consent-check input {
  width: auto;
  margin-top: 4px;
}
.legal-page {
  max-width: 820px;
}
.legal-page h1 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
}
.legal-page h2 {
  margin-top: 2.5rem;
  font-family: "Libre Baskerville", Georgia, serif;
}
.legal-page p, .legal-page li {
  color: var(--muted);
  font-size: 1.02rem;
}
.marketplace-section {
  background: #f7f4ed;
}

.logo-brand img {
  width: 310px;
  height: auto;
  max-height: 68px;
  object-fit: contain;
}
.footer-brand.logo-brand img {
  width: 280px;
  max-height: none;
  filter: brightness(0) invert(1);
  opacity: .95;
}
@media (max-width: 600px) {
  .logo-brand img {
    width: 220px;
    max-height: 56px;
  }
}

.resource-card {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 40px rgba(20,49,16,.07);
}
.resource-card h2 {
  margin-top: 0;
}
.resource-copy ul {
  color: var(--muted);
}
.resource-preview img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(20,49,16,.10);
}
.resource-note {
  margin-top: 20px;
  padding: 18px 22px;
  background: var(--soft);
  border-radius: 12px;
}
.resource-outline {
  color: var(--green-900);
  border-color: var(--green-700);
  background: transparent;
}
.resource-outline:hover {
  background: rgba(43,93,32,.06);
}
@media (max-width: 900px) {
  .resource-card {
    grid-template-columns: 1fr;
  }
}

.leadership-section {
  background: #fbfcfa;
}
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.leader-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 38px rgba(20,49,16,.08);
}
.leader-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  background: #e8ebed;
}
.leader-copy {
  padding: 28px;
}
.leader-copy h3,
.leader-copy h2 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  color: var(--green-950);
}
.leader-title {
  margin: 7px 0 14px;
  color: var(--green-700) !important;
  font-weight: 700;
}
.leader-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}
.about-page-wide {
  max-width: 1100px;
}
.leadership-grid-page {
  margin: 42px 0 56px;
}
@media (max-width: 760px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
}

.hero-disclosure{max-width:680px;margin-top:18px;color:rgba(255,255,255,.72);font-size:.78rem}.newcoast-panel img{background:#fff;border-radius:10px;padding:16px;margin:8px 0 20px;width:100%;max-width:320px}.partner-kicker{text-transform:uppercase;letter-spacing:.15em;font-size:.7rem;color:rgba(255,255,255,.68)}.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.faq-grid details{background:#fff;border:1px solid var(--line);border-radius:12px;padding:20px}.faq-grid summary{cursor:pointer;font-weight:700;color:var(--green-900)}.faq-grid p{color:var(--muted);margin-bottom:0}.inner-hero{padding:110px 0;background:linear-gradient(120deg,var(--green-950),#295a20);color:#fff}.inner-hero h1{font-family:"Libre Baskerville",Georgia,serif;font-size:clamp(3rem,6vw,5.6rem);line-height:1.05;margin:0}.inner-hero p:not(.eyebrow){max-width:760px;font-size:1.15rem;color:rgba(255,255,255,.82)}.content-split{display:grid;grid-template-columns:1.25fr .75fr;gap:70px;align-items:start}.content-split h2{font-family:"Libre Baskerville",Georgia,serif;font-size:clamp(2.2rem,4vw,3.5rem);line-height:1.1}.check-list{padding:0;list-style:none;margin-top:28px}.check-list li{padding:12px 0 12px 34px;border-bottom:1px solid var(--line);position:relative}.check-list li:before{content:"✓";position:absolute;left:0;color:var(--green-700);font-weight:800}@media(max-width:900px){.faq-grid,.content-split{grid-template-columns:1fr}}

.subhero{position:relative;padding:110px 0;color:#fff;background:linear-gradient(120deg,#16340f,#2c5d20)}.subhero .container{max-width:980px}.subhero h1{max-width:850px;margin:0;font-family:"Libre Baskerville",Georgia,serif;font-size:clamp(2.7rem,5vw,5rem);line-height:1.08}.subhero p:not(.eyebrow){max-width:760px;font-size:1.08rem;color:rgba(255,255,255,.82)}.partner-hero{background:linear-gradient(100deg,rgba(16,38,12,.97),rgba(44,93,32,.88)),url("assets/blue-ridge-hero.png") center/cover}.listing-hero{background:linear-gradient(100deg,rgba(16,38,12,.96),rgba(44,93,32,.82)),url("assets/blue-ridge-hero.png") center 58%/cover}.check-list{padding:0;list-style:none}.check-list li{margin:12px 0;padding-left:28px;position:relative}.check-list li:before{content:"✓";position:absolute;left:0;color:var(--green-700);font-weight:800}.newcoast-panel{padding:38px;border:1px solid var(--line);border-radius:var(--radius);background:#fff;box-shadow:var(--shadow)}.newcoast-panel img{max-width:260px;margin:18px auto}.newcoast-panel p{text-align:center;color:var(--muted)}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.field-help {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 400;
}
.center-actions {
  justify-content: center;
}

/* Version 10 visual refinements */
.site-header {
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.nav {
  min-height: 88px;
}
.logo-brand img {
  width: 292px;
  max-height: 72px;
}
.hero {
  min-height: 760px;
}
.hero-content {
  max-width: 790px;
}
.hero h1 {
  max-width: 760px;
}
.hero-disclosure {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255,255,255,.68);
  font-size: .78rem;
}
.service-card {
  border-top: 4px solid var(--green-700);
}
.value-heading p:last-child {
  color: rgba(255,255,255,.68);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-grid article {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
}
.value-grid h3 {
  margin: 12px 0 10px;
  font-size: 1.25rem;
}
.value-grid p {
  margin: 0;
  color: rgba(255,255,255,.68);
}
.value-number {
  color: #a8c49a;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.55rem;
}
.leader-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 900px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}

.light-value-grid article {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(20,49,16,.05);
}
.light-value-grid p {
  color: var(--muted);
}
.light-value-grid .value-number {
  color: var(--green-700);
}

.partner-cards .service-card {
  min-height: 300px;
}
.partner-hero,
.listing-hero {
  background:
    linear-gradient(90deg, rgba(14,48,27,.96), rgba(24,74,43,.88));
}
.newcoast-panel p {
  color: rgba(255,255,255,.76);
}

/* Version 14 final-content refinements */
.entity-line {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  color: rgba(255,255,255,.68);
  font-size: .78rem;
}
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}
.leader-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 40px rgba(20,49,16,.08);
}
.leader-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.leader-copy { padding: 30px; }
.leader-copy h2 { margin: 0 0 14px; }
.leader-copy p:not(.eyebrow) { color: var(--muted); }
@media (max-width: 800px) {
  .leadership-grid { grid-template-columns: 1fr; }
}

.leadership-bio-section {
  align-items: center;
}
.leadership-bio-section .leader-card {
  max-width: 430px;
}
.leadership-bio-section .leader-title {
  color: var(--green-700);
  font-weight: 700;
  margin-top: -8px;
}


/* Version 17: mobile navigation and launch-readiness refinements */
.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(77,135,85,.18);
  border-color: var(--green-700);
}
.contact-form button[disabled] {
  cursor: wait;
  opacity: .7;
}
.consent-check {
  align-items: flex-start;
}
.consent-check input {
  width: auto;
  margin-top: 4px;
}
.site-footer a:focus-visible,
.nav a:focus-visible,
.button:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(168,196,154,.65);
  outline-offset: 3px;
}
@media (max-width: 980px) {
  .nav {
    position: relative;
    min-height: 78px;
  }
  .logo-brand img {
    width: 230px;
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .nav-links {
    position: absolute;
    top: calc(100% - 1px);
    right: 20px;
    left: 20px;
    z-index: 1000;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 0 0 14px 14px;
    background: #123a24;
    box-shadow: 0 18px 40px rgba(0,0,0,.22);
  }
  .nav-links.nav-open {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    padding: 13px 14px;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }
  .nav-links a:last-child {
    border-bottom: 0;
  }
  .nav-links .button {
    margin-top: 8px;
    text-align: center;
  }
  body.menu-open {
    overflow: hidden;
  }
}
@media (max-width: 640px) {
  .utility-inner {
    justify-content: center;
    gap: 8px;
    text-align: center;
  }
  .utility-inner span {
    display: none;
  }
  .logo-brand img {
    width: 205px;
  }
  .hero,
  .inner-hero {
    min-height: auto;
  }
  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  .hero h1,
  .inner-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }
  .hero-actions {
    align-items: stretch;
  }
  .hero-actions .button {
    width: 100%;
    text-align: center;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
}

.nav-links a[aria-current="page"] {
  color: #b9d8ad;
}
.site-footer .legal a {
  color: inherit;
}

/* Version 23 live-preview header refinements */
.nav.container,
.utility-inner {
  width: min(calc(100% - 48px), 1440px);
}
.nav {
  gap: 24px;
}
.logo-brand {
  flex: 0 0 auto;
}
.logo-brand img {
  width: 225px;
  max-height: 58px;
  object-fit: contain;
}
.nav-links {
  gap: 20px;
  font-size: .86rem;
  white-space: nowrap;
}
.nav-links > a {
  white-space: nowrap;
}
.nav-links .button {
  padding-inline: 18px;
}
@media (max-width: 1220px) {
  .nav {
    position: relative;
    min-height: 78px;
  }
  .logo-brand img {
    width: 220px;
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .nav-links {
    position: absolute;
    top: calc(100% - 1px);
    right: 20px;
    left: 20px;
    z-index: 1000;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 0 0 14px 14px;
    background: #123a24;
    box-shadow: 0 18px 40px rgba(0,0,0,.22);
    white-space: normal;
  }
  .nav-links.nav-open {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    padding: 13px 14px;
    border-bottom: 1px solid rgba(255,255,255,.09);
    white-space: normal;
  }
  .nav-links a:last-child {
    border-bottom: 0;
  }
  .nav-links .button {
    margin-top: 8px;
    text-align: center;
  }
}


/* Version 24: corrected desktop hero composition */
@media (min-width: 1221px) {
  .hero {
    background-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(8,22,8,.84) 0%,
        rgba(8,22,8,.72) 31%,
        rgba(8,22,8,.34) 49%,
        rgba(8,22,8,.10) 66%,
        rgba(8,22,8,.05) 100%
      ),
      linear-gradient(
        0deg,
        rgba(7,19,7,.65) 0%,
        transparent 52%
      );
  }

  .hero .hero-content {
    width: min(calc(100% - 64px), 1440px);
    max-width: none;
    margin-inline: auto;
    padding-right: 780px;
  }

  .hero h1 {
    max-width: 585px;
    font-size: clamp(3.7rem, 4.8vw, 5.15rem);
  }

  .hero-copy,
  .hero-disclosure {
    max-width: 560px;
  }

  .service-pills,
  .hero-actions {
    max-width: 600px;
  }
}

@media (min-width: 1221px) and (max-width: 1450px) {
  .hero .hero-content {
    width: min(calc(100% - 48px), 1320px);
    padding-right: 650px;
  }

  .hero h1 {
    max-width: 555px;
    font-size: clamp(3.45rem, 4.6vw, 4.75rem);
  }
}


/* Version 25: fit the complete hero comfortably in common desktop viewports */
@media (min-width: 1221px) {
  .hero {
    min-height: 670px;
  }

  .hero .hero-content {
    padding-top: 64px;
    padding-bottom: 58px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(3.45rem, 4.35vw, 4.7rem);
    line-height: 1.08;
  }

  .hero-copy {
    margin-top: 20px;
    line-height: 1.55;
  }

  .service-pills {
    margin-top: 21px;
  }

  .hero-actions {
    margin-top: 21px;
  }

  .hero-disclosure {
    margin-top: 13px;
  }
}


/* Version 27: compact mobile hero layout */
@media (max-width: 600px) {
  .hero {
    min-height: auto;
    align-items: start;
    background-position: 69% center;
  }

  .hero-content {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
    font-size: .65rem;
    letter-spacing: .14em;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 12vw, 3rem);
    line-height: 1.04;
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .service-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 18px;
  }

  .service-pills a {
    padding: 10px 8px;
    font-size: .84rem;
    line-height: 1.2;
    text-align: center;
  }

  .service-pills a:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .button {
    min-height: 54px;
    padding-inline: 16px;
    font-size: 1rem;
  }

  .hero-disclosure {
    max-width: 100%;
    margin-top: 12px;
    font-size: .71rem;
    line-height: 1.45;
  }
}


/* Version 28: remove excess blank space above mobile hero content */
@media (max-width: 600px) {
  .hero {
    padding-top: 0;
    padding-bottom: 0;
    min-height: auto;
    background-position: 67% center;
  }

  .hero-content {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 10.8vw, 2.75rem);
    line-height: 1.02;
  }

  .hero-copy {
    margin-top: 16px;
    font-size: .96rem;
    line-height: 1.48;
  }

  .service-pills {
    margin-top: 16px;
  }

  .hero-actions {
    margin-top: 16px;
  }
}


/* Version 29: Blue Ridge-first partner positioning */
.blue-ridge-service-panel {
  background:
    linear-gradient(145deg, rgba(22,52,15,.98), rgba(44,93,32,.96));
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}

.blue-ridge-service-panel h3 {
  color: #fff;
  margin-top: 8px;
}

.blue-ridge-service-panel ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.blue-ridge-service-panel li {
  margin: 12px 0;
  color: rgba(255,255,255,.9);
}

.blue-ridge-service-panel .partner-kicker {
  color: #bbd3ae;
}

.blue-ridge-service-panel .technology-note {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.68);
  font-size: .82rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .blue-ridge-service-panel {
    padding: 26px;
  }

  .blue-ridge-service-panel .technology-note {
    font-size: .76rem;
  }
}


/* Version 30: financing-page photographic headers */
.visual-financing-hero {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
  padding: 88px 0;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.visual-financing-hero .container {
  width: min(calc(100% - 56px), 1440px);
}

.visual-financing-hero .inner-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.visual-financing-hero h1 {
  max-width: 680px;
  text-shadow: 0 3px 22px rgba(0,0,0,.32);
}

.visual-financing-hero p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255,255,255,.93);
  text-shadow: 0 2px 12px rgba(0,0,0,.34);
}

.visual-financing-hero .button-outline {
  border-color: rgba(255,255,255,.62);
  color: #fff;
  background: rgba(8,22,8,.16);
  backdrop-filter: blur(4px);
}

.rv-financing-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(8,22,8,.90) 0%,
      rgba(8,22,8,.72) 35%,
      rgba(8,22,8,.24) 64%,
      rgba(8,22,8,.08) 100%
    ),
    url("assets/rv-financing-hero.jpg");
  background-position: 60% center;
}

.marine-financing-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(8,22,8,.91) 0%,
      rgba(8,22,8,.72) 36%,
      rgba(8,22,8,.22) 64%,
      rgba(8,22,8,.06) 100%
    ),
    url("assets/marine-financing-hero.jpg");
  background-position: 58% center;
}

.aircraft-financing-hero {
  background-image:
    linear-gradient(
      270deg,
      rgba(8,22,8,.91) 0%,
      rgba(8,22,8,.72) 38%,
      rgba(8,22,8,.22) 67%,
      rgba(8,22,8,.05) 100%
    ),
    url("assets/aircraft-financing-hero.jpg");
  background-position: 42% center;
}

.aircraft-financing-hero .inner-hero-copy {
  margin-left: auto;
}

@media (max-width: 900px) {
  .visual-financing-hero {
    min-height: 475px;
    padding: 68px 0;
  }

  .visual-financing-hero .container {
    width: min(calc(100% - 34px), 760px);
  }

  .visual-financing-hero h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .aircraft-financing-hero .inner-hero-copy {
    margin-left: 0;
  }

  .rv-financing-hero {
    background-position: 65% center;
  }

  .marine-financing-hero {
    background-position: 68% center;
  }

  .aircraft-financing-hero {
    background-image:
      linear-gradient(
        90deg,
        rgba(8,22,8,.88) 0%,
        rgba(8,22,8,.77) 58%,
        rgba(8,22,8,.38) 100%
      ),
      url("assets/aircraft-financing-hero.jpg");
    background-position: 32% center;
  }
}

@media (max-width: 600px) {
  .visual-financing-hero {
    min-height: 440px;
    padding: 54px 0;
  }

  .visual-financing-hero .inner-hero-copy {
    max-width: 100%;
  }

  .visual-financing-hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.55rem);
    line-height: 1.03;
  }

  .visual-financing-hero p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.5;
  }

  .visual-financing-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .visual-financing-hero .hero-actions .button {
    width: 100%;
    text-align: center;
  }
}


/* Version 31: high-contrast white logo in dark website headers */
.site-header .logo-brand img {
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 1px 1px rgba(0,0,0,.16));
  opacity: .98;
}

/* Keep footer branding white and consistent */
.site-footer .footer-brand.logo-brand img {
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 1px 1px rgba(0,0,0,.12));
  opacity: .95;
}


/* Version 32: photographic headers for remaining primary interior pages */
.visual-secondary-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 86px 0;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
}

.visual-secondary-hero .container {
  width: min(calc(100% - 56px), 1440px);
}

.visual-secondary-hero .secondary-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.visual-secondary-hero h1 {
  max-width: 720px;
  color: #fff;
  text-shadow: 0 3px 22px rgba(0,0,0,.34);
}

.visual-secondary-hero p:not(.eyebrow) {
  max-width: 670px;
  color: rgba(255,255,255,.93);
  text-shadow: 0 2px 12px rgba(0,0,0,.34);
}

.visual-secondary-hero .button-outline {
  border-color: rgba(255,255,255,.65);
  color: #fff;
  background: rgba(8,22,8,.16);
  backdrop-filter: blur(4px);
}

.partner-visual-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(8,22,8,.91) 0%,
      rgba(8,22,8,.74) 36%,
      rgba(8,22,8,.28) 65%,
      rgba(8,22,8,.08) 100%
    ),
    url("assets/partner-financing-hero.jpg");
  background-position: 58% center;
}

.listings-visual-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(8,22,8,.93) 0%,
      rgba(8,22,8,.76) 38%,
      rgba(8,22,8,.30) 68%,
      rgba(8,22,8,.10) 100%
    ),
    url("assets/free-listings-hero.jpg");
  background-position: center;
}

.about-visual-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(8,22,8,.93) 0%,
      rgba(8,22,8,.78) 38%,
      rgba(8,22,8,.34) 65%,
      rgba(8,22,8,.14) 100%
    ),
    url("assets/about-leadership-hero.jpg");
  background-position: center;
}

@media (max-width: 1000px) {
  .visual-secondary-hero {
    min-height: 470px;
    padding: 66px 0;
  }

  .visual-secondary-hero .container {
    width: min(calc(100% - 34px), 760px);
  }

  .about-visual-hero {
    background-position: 40% center;
  }
}

@media (max-width: 600px) {
  .visual-secondary-hero {
    min-height: 445px;
    padding: 54px 0;
  }

  .visual-secondary-hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.55rem);
    line-height: 1.03;
  }

  .visual-secondary-hero p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.5;
  }

  .visual-secondary-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .visual-secondary-hero .hero-actions .button {
    width: 100%;
    text-align: center;
  }

  .partner-visual-hero {
    background-position: 66% center;
  }

  .listings-visual-hero {
    background-position: 57% center;
  }

  .about-visual-hero {
    background-image:
      linear-gradient(
        90deg,
        rgba(8,22,8,.92) 0%,
        rgba(8,22,8,.82) 62%,
        rgba(8,22,8,.52) 100%
      ),
      url("assets/about-leadership-hero.jpg");
    background-position: 26% center;
  }
}
