:root {
  --ink: #2c3037;
  --muted: #6f7782;
  --navy: #062b43;
  --navy-soft: rgba(6, 43, 67, 0.82);
  --pink: #ff3158;
  --pink-dark: #d51f43;
  --blue: #1598e6;
  --green: #17b46b;
  --peach: #f8d9ae;
  --sky: #e4f6ff;
  --paper: #ffffff;
  --soft: #f7f7f7;
  --line: #d7dbe0;
  --footer: #040404;
  --shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
  --brand-blue: #4765ff;
  --bespoke-accent: #ffffff;
  --bespoke-soft: #f4f6ff;
  --bespoke-support: #4765ff;
  --bespoke-support-light: #e6ebff;
  --bespoke-support-mid: #8fa0ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.top-bar {
  display: none;
}

.site-header,
main,
.site-footer {
  width: 100%;
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 10px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  height: 72px;
  margin: 0;
  padding: 0 0 0 clamp(18px, 5vw, 64px);
  color: #fff;
  background: rgba(5, 32, 51, 0.72);
  border-radius: 0;
  transform: translateX(-50%);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 32, 51, 0.94);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--pink);
  font-size: 0.9rem;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
}

/* Site logo image used in header/footer */
.site-logo {
  height: 36px; /* match the visual height of the brand text */
  width: auto;
  display: inline-block;
  vertical-align: middle;
  border-radius: 6px;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 0;
  font-size: 0.82rem;
  font-weight: 900;
}

.main-nav a {
  display: grid;
  height: 100%;
  min-width: 92px;
  place-items: center;
  padding: 0 18px;
  position: relative;
  white-space: nowrap;
}

.main-nav a:not(.nav-cta):hover,
.main-nav a:not(.nav-cta):focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.main-nav a.is-active:not(.nav-cta) {
  background: rgba(255, 255, 255, 0.13);
}

.main-nav a.is-active:not(.nav-cta)::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #fff;
  border-left: 9px solid transparent;
  content: "";
  transform: translateX(-50%);
}

.nav-cta {
  background: var(--pink);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

main {
  overflow: hidden;
  background: #fff;
  box-shadow: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 620px;
  padding: 128px clamp(32px, 9vw, 148px) 80px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 28, 46, 0.9), rgba(4, 34, 55, 0.72), rgba(4, 34, 55, 0.28)),
    url("https://images.unsplash.com/photo-1542810634-71277d95dcbb?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero-media,
.hero-strip {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  align-self: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  color: var(--green);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
}

h1 {
  max-width: 700px;
  font-size: clamp(2.65rem, 5vw, 4.6rem);
  font-weight: 900;
  text-transform: uppercase;
}

h1::first-line {
  text-shadow: 0 0 0 transparent;
}

h2 {
  max-width: 780px;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 900;
}

h3 {
  font-size: 1.15rem;
}

.hero-lead {
  margin: 20px 0 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
}

.hero-copy {
  max-width: 590px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 11px 18px;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn svg {
  width: 17px;
  height: 17px;
}

.btn-primary {
  color: #fff;
  background: var(--pink);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--pink-dark);
}

.btn-secondary,
.btn-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  box-shadow: 0 8px 24px rgba(4, 20, 48, 0.22);
}

.btn-secondary {
  /* subtle blue tint for the secondary action */
  background: linear-gradient(180deg, rgba(71,101,255,0.08), rgba(71,101,255,0.04));
  border-color: rgba(71,101,255,0.18);
}

.btn-light {
  /* more transparent variant */
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.16);
}

.btn-secondary:hover,
.btn-light:hover,
.btn-secondary:focus-visible,
.btn-light:focus-visible {
  background: rgba(255, 255, 255, 0.10);
  transform: translateY(-3px);
}

.action-section {
  padding: 76px clamp(20px, 7vw, 112px) 72px;
  background: #fff;
  text-align: center;
}

.action-section > p:not(.eyebrow) {
  margin: 10px auto 28px;
  max-width: 640px;
  color: var(--muted);
  font-size: 0.94rem;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 0 auto 18px;
}

.stats-strip article {
  position: relative;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #aeb4ba;
  background: #fff;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.stats-strip article.is-active {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

.stats-strip article.is-active::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 18px;
  height: 18px;
  background: var(--blue);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.stats-strip svg {
  width: 16px;
  height: 16px;
}

.action-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  max-width: 760px;
  margin: 0 auto;
  background: var(--soft);
  text-align: left;
}

.action-feature > div {
  padding: 34px 26px;
}

.action-feature h3 {
  max-width: 300px;
  font-size: 1.5rem;
}

.action-feature h3 strong {
  color: var(--blue);
}

.action-feature p {
  color: var(--muted);
  font-size: 0.92rem;
}

.action-feature img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.section {
  padding: clamp(62px, 8vw, 106px) clamp(20px, 7vw, 112px);
}

.page-hero {
  padding: 138px clamp(20px, 7vw, 112px) 76px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(71, 101, 255, 0.96), rgba(71, 101, 255, 0.78)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.page-hero .eyebrow,
.page-hero .eyebrow::before {
  color: #fff;
  background: #fff;
}

.page-hero .eyebrow {
  background: transparent;
}

.page-hero h1 {
  max-width: 920px;
  text-transform: none;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 650px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.two-column p {
  color: var(--muted);
}

.intro,
.why,
.testimonials {
  background: #fff;
}

.statement-grid,
.trust-grid,
.quote-grid {
  display: grid;
  gap: 18px;
}

.statement-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.statement-grid article,
.service-card,
.feature-row article,
.trust-grid article,
blockquote {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.statement-grid article {
  padding: 24px;
}

.statement-grid svg,
.service-card > svg,
.feature-row svg {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: var(--pink);
}

.statement-grid p,
.service-card p,
.feature-row p,
.trust-grid p {
  color: var(--muted);
}

.services,
.support-cards {
  position: relative;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.2), transparent 18%),
    radial-gradient(circle at 88% 70%, rgba(255, 255, 255, 0.16), transparent 20%),
    var(--peach);
}

.service-grid,
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  padding: 24px;
}

.service-card:nth-child(4) {
  grid-column: 2;
}

.service-card ul,
.check-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.check-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-card li::before,
.check-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  content: "";
  transform: translateY(-50%);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-row article {
  padding: 24px;
}

.support-band {
  background: #fff;
}

.support-list,
.referral-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Make the tags look and feel clickable */
.support-list span,
.referral-tags span {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
  user-select: none;
}

.support-list span:hover,
.referral-tags span:hover,
.support-list span:focus,
.referral-tags span:focus {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
  outline: none;
}

/* Smaller variant used when there are many tags */
.support-list.small span,
.referral-tags.small span {
  padding: 10px 16px;
  font-weight: 800;
}

.support-list span,
.referral-tags span {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.impact {
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(3, 33, 53, 0.96), rgba(3, 33, 53, 0.72), rgba(3, 33, 53, 0.2)),
    url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1800&q=82") center / cover;
  color: #fff;
}

.impact .section-heading,
.impact-panel {
  text-align: left;
}

.impact .eyebrow {
  color: var(--green);
}

.impact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 40px;
  align-items: start;
  max-width: 980px;
}

.impact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.impact .check-list {
  padding: 24px;
  background: rgba(0, 0, 0, 0.18);
}

.impact .check-list li {
  color: #fff;
}

.campaign-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow);
}

.campaign-grid img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.campaign-grid article > div {
  padding: 18px;
}

.mini-label,
.campaign-grid span {
  display: inline-block;
  margin-bottom: 8px;
  border-radius: 3px;
  padding: 3px 7px;
  color: #fff;
  background: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 99px;
  margin: 16px 0 4px;
  background: #dedede;
}

.progress-track span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.referrals {
  background: #fff;
}

.referrals .btn {
  margin-top: 18px;
}

.cta-band {
  display: flex;
  min-height: 350px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(54px, 8vw, 92px) clamp(20px, 7vw, 112px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 33, 53, 0.96), rgba(3, 33, 53, 0.74), rgba(3, 33, 53, 0.24)),
    url("https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?auto=format&fit=crop&w=1600&q=82") center / cover;
}

.cta-band .btn-primary {
  flex: 0 0 auto;
}

.trust {
  background: #fff;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-grid article {
  padding: 24px;
}

.quote-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

blockquote {
  margin: 0;
  padding: 28px;
}

blockquote p {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(6, 43, 67, 0.24), rgba(6, 43, 67, 0.24)) left / 50% 100% no-repeat,
    var(--sky);
}

.faq::before {
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(6, 43, 67, 0.12), rgba(6, 43, 67, 0.12)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1000&q=82") center / cover;
  content: "";
}

.faq .section-heading {
  margin: 0 0 24px;
  text-align: left;
}

.faq-list {
  max-width: 620px;
}

.faq-item {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-bottom: 1px solid #dbe8ee;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item svg {
  flex: 0 0 auto;
  transition: transform 160ms ease;
}

.faq-item[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  margin: 0;
  padding: 12px 14px 16px;
  background: #fff;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-answer.is-open {
  display: block;
}

.contact {
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 12px;
}

.contact-details a,
.contact-details p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 15px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 900;
}

.contact-details svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--pink);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #ccd2d8;
  border-radius: 4px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 49, 88, 0.18);
  border-color: var(--pink);
}

.full-span {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.site-footer {
  padding: 58px clamp(20px, 7vw, 112px) 28px;
  color: #fff;
  background: var(--footer);
  border-radius: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px 220px;
  gap: 34px;
}

.footer-brand {
  margin-bottom: 16px;
  color: #fff;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.65);
}

.site-footer p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.66);
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--pink);
}

.copyright {
  margin: 34px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  font-size: 0.84rem;
}

@media (max-width: 1040px) {
  .site-header,
  main,
  .site-footer {
    width: 100%;
  }

  .main-nav a:not(.nav-cta) {
    min-width: auto;
  }

  .service-grid,
  .campaign-grid,
  .feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card:nth-child(4) {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    width: 100%;
    top: 0;
    border-radius: 0;
    padding-right: 14px;
  }

  main,
  .site-footer {
    width: 100%;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    right: 14px;
    left: 14px;
    display: none;
    height: auto;
    border-radius: 8px;
    padding: 12px;
    background: rgba(5, 32, 51, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    min-width: 0;
    height: auto;
    padding: 13px;
  }

  .hero {
    padding-top: 116px;
  }

  .stats-strip,
  .action-feature,
  .two-column,
  .impact-panel,
  .contact-layout,
  .footer-grid,
  .statement-grid,
  .trust-grid,
  .quote-grid,
  .faq {
    grid-template-columns: 1fr;
  }

  .faq {
    background: var(--sky);
  }

  .faq::before {
    min-height: 300px;
  }

  .cta-band {
    display: grid;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 66px;
    padding-left: 14px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero {
    min-height: 560px;
    padding-inline: 20px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .service-grid,
  .campaign-grid,
  .feature-row,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .section,
  .action-section,
  .cta-band {
    padding-inline: 20px;
  }
}

/* Navigator Trading inspired sections: hero, FAQ, and contact */
:root {
  --forest: #182d09;
  --forest-mid: #213d10;
  --forest-light: #2f4f18;
  --gold: #c5a059;
  --gold-light: #d9bd7a;
  --cream-soft: #f7f4ed;
}

.site-header {
  top: 0;
  background: rgba(12, 18, 8, 0.74);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(12, 18, 8, 0.94);
}

.brand-mark,
.nav-cta,
.btn-primary {
  background: var(--gold);
  color: #10150d;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-light);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8.5rem clamp(18px, 6vw, 92px) 5rem;
  background:
    radial-gradient(ellipse 54% 42% at 50% 24%, rgba(197, 160, 89, 0.24) 0%, rgba(197, 160, 89, 0.08) 36%, transparent 72%),
    linear-gradient(90deg, rgba(8, 13, 6, 0.7), rgba(8, 13, 6, 0.44), rgba(8, 13, 6, 0.7)),
    linear-gradient(180deg, rgba(8, 13, 6, 0.28), rgba(8, 13, 6, 0.86)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1900&q=84") center / cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197, 160, 89, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 160, 89, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  width: clamp(240px, 28vw, 430px);
  height: clamp(240px, 28vw, 430px);
  border: 1px solid rgba(197, 160, 89, 0.13);
  border-radius: 50%;
  content: "";
  transform: rotate(18deg);
}

.hero-content {
  width: min(1500px, 100%);
  max-width: none;
  min-height: min(62vh, 620px);
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(13, 22, 9, 0.5), rgba(13, 22, 9, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 28px 80px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.hero .eyebrow {
  justify-content: center;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero .eyebrow::before {
  width: 36px;
  height: 1px;
  border-radius: 0;
  background: var(--gold);
}

.hero h1 {
  max-width: 1080px;
  font-size: clamp(3rem, 6.4vw, 7rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: none;
}

.hero-lead {
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 900px;
  color: rgba(244, 247, 243, 0.68);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  line-height: 1.9;
}

.hero-actions {
  justify-content: center;
  gap: 1.5rem;
}

.btn-secondary,
.btn-light {
  color: #f4f7f3;
  border-color: rgba(197, 160, 89, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover,
.btn-light:hover {
  background: rgba(197, 160, 89, 0.13);
}

.hero-scroll-indicator {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 2.2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(244, 247, 243, 0.42);
}

.scroll-line {
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.hero-scroll-indicator span {
  writing-mode: vertical-rl;
  color: rgba(244, 247, 243, 0.44);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.35fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: start;
  background: linear-gradient(135deg, var(--forest), var(--forest-mid) 52%, var(--forest-light));
  color: #f4f7f3;
}

.faq::before {
  display: none;
}

.faq .section-heading {
  position: sticky;
  top: 120px;
  margin: 0;
  text-align: left;
}

.faq .section-heading h2 {
  color: #f4f7f3;
}

.faq .section-heading p {
  color: rgba(244, 247, 243, 0.55);
}

.faq .eyebrow {
  color: var(--gold);
}

.faq .eyebrow::before {
  background: var(--gold);
}

.faq-list {
  max-width: none;
}

.faq-item {
  min-height: auto;
  border-bottom: 1px solid rgba(197, 160, 89, 0.16);
  padding: 1.65rem 0;
  background: transparent;
  color: #f4f7f3;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.faq-item:hover,
.faq-item:focus-visible {
  color: var(--gold-light);
}

.faq-item svg {
  color: var(--gold);
}

.faq-answer {
  padding: 0 0 1.6rem;
  background: transparent;
  color: rgba(244, 247, 243, 0.62);
  font-size: 0.98rem;
  line-height: 1.8;
}

.contact {
  background:
    radial-gradient(circle at 15% 18%, rgba(197, 160, 89, 0.12), transparent 28%),
    var(--cream-soft);
}

.contact .section-heading h2 {
  color: var(--forest);
}

.contact .eyebrow {
  color: var(--gold);
}

.contact .eyebrow::before {
  background: var(--gold);
}

.contact-card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin: 0 auto 2rem;
  max-width: 1120px;
}

.contact-card {
  flex: 1 1 220px;
  min-height: 210px;
  max-width: 280px;
  padding: 1.85rem;
  border: 1px solid rgba(24, 45, 9, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(24, 45, 9, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(197, 160, 89, 0.5);
  box-shadow: 0 22px 55px rgba(24, 45, 9, 0.1);
}

.contact-card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(197, 160, 89, 0.14);
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card h3 {
  margin-bottom: 0.55rem;
  color: var(--forest);
  font-size: 1rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card p {
  margin: 0;
  color: rgba(24, 45, 9, 0.7);
  overflow-wrap: anywhere;
}

.contact-note {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  border-top: 1px solid rgba(24, 45, 9, 0.1);
  padding-top: 1.4rem;
  color: rgba(24, 45, 9, 0.7);
  text-align: center;
}

.contact-note strong {
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-note span {
  max-width: 680px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.contact-layout {
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.contact-details a,
.contact-details p {
  border: 0;
  border-bottom: 1px solid rgba(24, 45, 9, 0.1);
  border-radius: 0;
  background: transparent;
  padding: 0 0 1rem;
  font-size: clamp(0.98rem, 1.8vw, 1.18rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-details svg {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
  color: var(--gold);
}

.contact-form {
  border-color: rgba(24, 45, 9, 0.1);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(24, 45, 9, 0.08);
}

input:focus,
select:focus,
textarea:focus {
  outline-color: rgba(197, 160, 89, 0.24);
  border-color: var(--gold);
}

@media (max-width: 860px) {
  .site-header {
    top: 0;
  }

  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding: 7.5rem 1rem 6rem;
  }

  .hero-content {
    width: 100%;
    min-height: auto;
    padding: 1.35rem;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 11.5vw, 3.35rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq .section-heading {
    position: static;
  }

  .contact-note {
    display: grid;
  }
}

@media (max-width: 520px) {
  .contact-card {
    flex-basis: 100%;
    max-width: none;
    min-height: 176px;
  }

  .hero-scroll-indicator {
    right: 1rem;
    bottom: 1.4rem;
  }
}

/* Blue and white brand theme */
body {
  background: #fff;
}

.site-header,
.site-header.is-scrolled {
  background: rgba(7, 26, 134, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 48px rgba(7, 26, 134, 0.22);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.brand-mark,
.nav-cta,
.btn-primary {
  background: #fff;
  color: var(--brand-blue);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  background: rgba(255, 255, 255, 0.88);
}

.hero {
  background:
    linear-gradient(90deg, rgba(71, 101, 255, 0.96), rgba(71, 101, 255, 0.86), rgba(71, 101, 255, 0.52)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1900&q=84") center / cover;
}

.hero::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
}

.hero::after {
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-content {
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
}

.hero .eyebrow,
.hero-lead {
  color: #fff;
}

.hero .eyebrow::before,
.scroll-line,
.eyebrow::before {
  background: #fff;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
}

.btn-secondary,
.btn-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover,
.btn-light:hover {
  background: rgba(255, 255, 255, 0.22);
}

.eyebrow,
.action-feature h3 strong,
.statement-grid svg,
.service-card > svg,
.feature-row svg,
.contact .eyebrow,
.contact-card-icon,
.contact-note strong,
.contact-details svg {
  color: var(--brand-blue);
}

.action-section,
.intro,
.why,
.support-band,
.referrals,
.trust,
.testimonials,
.contact {
  background: #fff;
}

.services,
.support-cards,
.faq {
  background: #f4f6ff;
}

.service-card,
.campaign-grid article,
.statement-grid article,
.feature-row article,
.trust-grid article,
blockquote,
.contact-form,
.contact-card,
.support-list span,
.referral-tags span {
  border-color: rgba(71, 101, 255, 0.16);
}

/* Ensure consistency: force service cards to white regardless of theme variants */
.services .service-grid .service-card,
.services .service-card,
.faq .service-card,
.support-cards .service-card,
.service-grid .service-card {
  background: #fff !important;
  border-color: var(--line) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06) !important;
}

/* Service list bullets should use the site brand blue */
.service-card li::before,
.check-list li::before,
.service-grid .service-card li::before {
  background: var(--brand-blue) !important;
}

.service-card li::before,
.check-list li::before {
  background: var(--brand-blue);
}

.impact,
.cta-band {
  background:
    linear-gradient(90deg, rgba(71, 101, 255, 0.96), rgba(71, 101, 255, 0.76), rgba(71, 101, 255, 0.34)),
    url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.impact .eyebrow,
.cta-band .eyebrow {
  color: #fff;
}

.faq {
  color: var(--ink);
}

.faq .section-heading {
  position: static;
}

.faq .section-heading h2,
.faq .section-heading p {
  color: var(--ink);
}

.faq .eyebrow,
.faq-item,
.faq-item:hover,
.faq-item:focus-visible,
.faq-item svg {
  color: var(--brand-blue);
}

.faq-answer {
  color: var(--muted);
}

.faq-item {
  border-bottom-color: rgba(71, 101, 255, 0.22);
}

.contact-card-icon {
  background: rgba(71, 101, 255, 0.1);
}

.contact-note {
  border-top-color: rgba(71, 101, 255, 0.14);
}

input:focus,
select:focus,
textarea:focus {
  outline-color: rgba(71, 101, 255, 0.2);
  border-color: var(--brand-blue);
}

.site-footer {
  background: var(--brand-blue);
}

.btn-primary {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: #263fb9;
  background: #263fb9;
  color: #fff;
}

@media (max-width: 860px) {
  .main-nav {
    top: 82px;
    right: 18px;
    left: 18px;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(71, 101, 255, 0.18);
    border-top: 4px solid var(--brand-blue);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.97);
    color: var(--ink);
    box-shadow: 0 18px 44px rgba(16, 24, 32, 0.22);
    backdrop-filter: blur(12px);
  }

  .main-nav.is-open {
    display: grid;
    grid-template-columns: 1fr;
  }

  .main-nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-width: 0;
    padding: 13px 15px;
    border: 1px solid rgba(71, 101, 255, 0.12);
    border-radius: 8px;
    background: #fff;
    color: var(--navy);
    text-align: left;
  }

  .main-nav a::before {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: rgba(71, 101, 255, 0.24);
    content: "";
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-active {
    background: var(--bespoke-soft);
    color: var(--brand-blue);
  }

  .main-nav a:hover::before,
  .main-nav a:focus-visible::before,
  .main-nav a.is-active::before {
    background: var(--brand-blue);
  }
}

/* Ensure the Vision card (second item in any statement-grid) is white */
.statement-grid article:nth-child(2) {
  background: #fff !important;
  border-color: var(--line) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06) !important;
}

/* Normalize card-like elements site-wide so they match visually */
.statement-grid article,
.feature-row article,
.service-card,
.trust-grid article,
.contact-card,
blockquote,
.contact-form,
.campaign-grid article,
.support-list span,
.referral-tags span {
  background: #fff !important;
  border-color: var(--line) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06) !important;
  color: var(--ink) !important;
}

/* Ensure any themed nth-child overrides do not change visuals */
.statement-grid article:nth-child(2),
.feature-row article:nth-child(2),
.service-card:nth-child(2),
.trust-grid article:nth-child(2) {
  background: #fff !important;
  border-color: var(--line) !important;
}

/* Professional text rhythm and responsive alignment */
body {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
p,
li,
a,
button,
label,
span {
  overflow-wrap: break-word;
  word-break: normal;
}

h1,
h2,
h3 {
  color: inherit;
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  margin: 0;
  max-width: 68ch;
}

p + p {
  margin-top: 1rem;
}

.hero,
.page-hero,
.section,
.action-section,
.cta-band,
.site-footer {
  padding-inline: clamp(22px, 6vw, 96px);
}

body.home-page .hero {
  min-height: 610px;
  padding-top: clamp(118px, 14vw, 152px);
  padding-bottom: clamp(72px, 9vw, 112px);
}

.hero-content {
  width: min(100%, 880px);
}

body.home-page .hero h1,
.hero h1 {
  max-width: 880px;
  font-size: clamp(2.65rem, 5.4vw, 4.9rem);
  line-height: 1.04;
  font-weight: 900;
  text-transform: none;
}

.hero-lead {
  margin-top: 1.2rem;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.4;
  font-weight: 800;
}

body.home-page .hero-copy,
.hero-copy {
  max-width: 720px;
  margin-top: 1rem;
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.8;
}

.hero-actions {
  align-items: center;
  gap: 14px;
  margin-top: 2rem;
}

.btn {
  min-height: 48px;
  padding: 0.82rem 1.15rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.15;
  text-align: center;
}

.page-hero {
  min-height: 360px;
  display: grid;
  align-content: center;
  padding-top: clamp(118px, 13vw, 148px);
  padding-bottom: clamp(56px, 7vw, 84px);
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.35rem, 4.8vw, 4.25rem);
  line-height: 1.06;
  font-weight: 900;
}

.page-hero p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 1rem;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.section {
  padding-top: clamp(64px, 8vw, 104px);
  padding-bottom: clamp(64px, 8vw, 104px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto clamp(32px, 5vw, 52px);
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading h2,
.action-section h2,
.impact h2,
.cta-band h2 {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  font-weight: 900;
  text-transform: none;
}

.section-heading p:not(.eyebrow),
.action-section > p:not(.eyebrow),
.impact-panel p,
.cta-band p {
  max-width: 680px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.two-column {
  align-items: start;
  gap: clamp(32px, 6vw, 72px);
}

.two-column > div:first-child > p {
  font-size: 1.03rem;
  line-height: 1.86;
}

.statement-grid,
.service-grid,
.feature-row,
.trust-grid,
.quote-grid,
.contact-card-grid {
  align-items: stretch;
}

.statement-grid article,
.service-card,
.feature-row article,
.trust-grid article,
.contact-card,
blockquote {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.statement-grid h3,
.service-card h3,
.feature-row h3,
.trust-grid h3,
.contact-card h3,
.action-feature h3 {
  font-size: clamp(1.16rem, 1.7vw, 1.45rem);
  line-height: 1.22;
  font-weight: 900;
}

.service-card p,
.feature-row p,
.trust-grid p,
.statement-grid p,
.contact-card p,
.faq-answer,
blockquote p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.service-card ul,
.check-list {
  display: grid;
  gap: 0.72rem;
}

.service-card li,
.check-list li {
  line-height: 1.55;
}

.support-list,
.referral-tags {
  align-items: stretch;
}

.support-list span,
.referral-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  line-height: 1.35;
  text-align: center;
}

.impact-panel {
  gap: clamp(32px, 6vw, 80px);
}

.impact-panel > div p {
  margin-inline: 0;
}

.faq-list {
  max-width: 920px;
}

.faq-item {
  gap: 1rem;
  padding: 1rem 0;
  font-size: 1rem;
  line-height: 1.35;
  text-align: left;
}

.faq-item span {
  flex: 1;
}

.faq-answer {
  padding-right: clamp(0px, 4vw, 52px);
}

.contact-card p {
  overflow-wrap: anywhere;
}

.contact-form label {
  line-height: 1.35;
}

.site-footer p {
  line-height: 1.75;
}

.footer-grid {
  gap: clamp(28px, 6vw, 76px);
}

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

.policy-wrap h2 {
  margin-top: 2.35rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.22;
}

.policy-wrap p {
  max-width: 78ch;
  font-size: 1.02rem;
  line-height: 1.86;
}

@media (max-width: 860px) {
  .site-header {
    height: 68px;
    padding-left: 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand strong {
    font-size: 1rem;
    line-height: 1.1;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
  }

  .main-nav {
    top: 78px;
  }

  body.home-page .hero {
    min-height: 590px;
    padding-top: 116px;
    padding-bottom: 58px;
  }

  body.home-page .hero h1,
  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 10.8vw, 3.55rem);
    line-height: 1.02;
  }

  .hero-lead {
    max-width: 100%;
    margin-top: 1.25rem;
    font-size: 1.05rem;
  }

  body.home-page .hero-copy,
  .hero-copy {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .page-hero {
    min-height: 310px;
    padding-top: 108px;
    padding-bottom: 54px;
  }

  .page-hero h1 {
    font-size: clamp(2.05rem, 9vw, 3rem);
    line-height: 1.08;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.7;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .section-heading .eyebrow {
    justify-content: flex-start;
  }

  .section-heading h2,
  .action-section h2,
  .impact h2,
  .cta-band h2 {
    margin-inline: 0;
    font-size: clamp(1.85rem, 8vw, 2.55rem);
    line-height: 1.1;
  }

  .section-heading p:not(.eyebrow),
  .action-section > p:not(.eyebrow),
  .impact-panel p,
  .cta-band p {
    margin-left: 0;
    margin-right: 0;
    font-size: 1rem;
    line-height: 1.72;
  }

  .two-column {
    gap: 26px;
  }

  .service-grid,
  .campaign-grid,
  .feature-row,
  .statement-grid,
  .trust-grid,
  .quote-grid,
  .contact-card-grid {
    gap: 16px;
  }

  .service-card,
  .statement-grid article,
  .feature-row article,
  .trust-grid article,
  .contact-card,
  blockquote {
    padding: 22px;
  }

  .support-list span,
  .referral-tags span {
    justify-content: flex-start;
    text-align: left;
  }

  .faq {
    gap: 26px;
  }

  .faq-item {
    min-height: 56px;
    padding: 1rem 0;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 0 0 1.1rem;
    font-size: 0.96rem;
  }

  .contact-note {
    align-items: flex-start;
  }

  .policy-wrap h2 {
    margin-top: 2rem;
    font-size: 1.28rem;
  }

  .policy-wrap p {
    font-size: 1rem;
    line-height: 1.78;
  }
}

@media (max-width: 480px) {
  .hero,
  .page-hero,
  .section,
  .action-section,
  .cta-band,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  body.home-page .hero h1,
  .hero h1 {
    max-width: 10.5ch;
    font-size: clamp(2.25rem, 11.4vw, 3.1rem);
  }

  .btn {
    min-height: 50px;
  }
}

.btn-primary {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: #263fb9;
  background: #263fb9;
  color: #fff;
}

@media (max-width: 860px) {
  .main-nav {
    top: 84px;
    right: 16px;
    left: 16px;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(71, 101, 255, 0.18);
    border-top: 4px solid var(--brand-blue);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: 0 18px 42px rgba(16, 24, 32, 0.2);
    backdrop-filter: blur(12px);
  }

  .main-nav.is-open {
    display: grid;
    grid-template-columns: 1fr;
  }

  .main-nav a {
    justify-content: start;
    min-height: 48px;
    padding: 13px 16px;
    border: 1px solid rgba(71, 101, 255, 0.12);
    border-radius: 8px;
    background: #fff;
    color: var(--navy);
    text-align: left;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-active {
    background: var(--bespoke-soft);
    color: var(--brand-blue);
  }
}

.policy-hero h1 {
  max-width: 980px;
  text-transform: none;
}

.policy-page {
  background: #fff;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.policy-summary {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(71, 101, 255, 0.18);
  border-radius: 8px;
  background: var(--bespoke-soft);
  color: var(--ink);
}

.policy-summary strong {
  margin-top: 8px;
  color: var(--navy);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.policy-summary strong:first-child {
  margin-top: 0;
}

.policy-summary a {
  color: var(--bespoke-support);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.policy-content {
  max-width: 880px;
}

.policy-content h2 {
  margin-top: 34px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  text-transform: none;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  font-size: 1rem;
}

.policy-content ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.policy-content a {
  color: var(--bespoke-support);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 860px) {
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-summary {
    position: static;
  }
}

/* Habitat-style charity palette */
.site-header,
.site-header.is-scrolled {
  background: rgba(4, 184, 107, 0.92);
  box-shadow: 0 18px 48px rgba(4, 184, 107, 0.22);
}

.brand-mark,
.nav-cta,
.btn-primary {
  background: var(--bespoke-accent);
  color: #111820;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #e3ad00;
  color: #111820;
}

.hero {
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.94), rgba(17, 24, 32, 0.74), rgba(4, 184, 107, 0.34)),
    url("https://images.unsplash.com/photo-1542810634-71277d95dcbb?auto=format&fit=crop&w=1900&q=84") center / cover;
}

.hero::before {
  background-image:
    linear-gradient(rgba(4, 184, 107, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 184, 107, 0.16) 1px, transparent 1px);
}

.hero .eyebrow,
.hero-lead {
  color: var(--bespoke-accent);
}

.hero .eyebrow::before,
.scroll-line {
  background: var(--bespoke-accent);
}

.btn-secondary,
.btn-light {
  border-color: rgba(255, 196, 0, 0.56);
  background: rgba(255, 196, 0, 0.1);
}

.btn-secondary:hover,
.btn-light:hover {
  background: rgba(255, 196, 0, 0.18);
}

.eyebrow,
.action-feature h3 strong,
.statement-grid svg,
.service-card > svg,
.feature-row svg,
.contact .eyebrow,
.contact-card-icon,
.faq .eyebrow,
.faq-item,
.faq-item:hover,
.faq-item:focus-visible,
.faq-item svg {
  color: var(--bespoke-support);
}

.contact-note strong {
  color: var(--bespoke-accent);
}

.eyebrow::before,
.contact .eyebrow::before,
.faq .eyebrow::before {
  background: var(--bespoke-support);
}

.services,
.support-cards,
.faq,
.contact {
  background: var(--bespoke-soft);
}

.service-card,
.campaign-grid article,
.statement-grid article,
.feature-row article,
.trust-grid article,
blockquote,
.contact-form,
.contact-card,
.support-list span,
.referral-tags span {
  border-color: rgba(4, 184, 107, 0.16);
}

.service-card li::before,
.check-list li::before,
.progress-track span {
  background: var(--bespoke-support);
}

.impact,
.cta-band {
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.95), rgba(17, 24, 32, 0.74), rgba(4, 184, 107, 0.34)),
    url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.faq-item {
  border-bottom-color: rgba(4, 184, 107, 0.24);
}

.contact-card-icon {
  background: rgba(4, 184, 107, 0.1);
}

.contact-note {
  border-top-color: rgba(4, 184, 107, 0.14);
}

input:focus,
select:focus,
textarea:focus {
  outline-color: rgba(4, 184, 107, 0.18);
  border-color: var(--bespoke-support);
}

.site-footer {
  background: #111820;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--bespoke-accent);
}

/* Requested green/yellow palette */
.site-header,
.site-header.is-scrolled {
  background: rgba(1, 125, 16, 0.92);
  box-shadow: 0 18px 48px rgba(1, 125, 16, 0.22);
}

.hero {
  background:
    linear-gradient(90deg, rgba(1, 125, 16, 0.94), rgba(1, 125, 16, 0.84), rgba(53, 162, 67, 0.62)),
    url("https://images.unsplash.com/photo-1542810634-71277d95dcbb?auto=format&fit=crop&w=1900&q=84") center / cover;
}

.hero::before {
  background-image:
    linear-gradient(rgba(255, 196, 0, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 196, 0, 0.12) 1px, transparent 1px);
}

.impact,
.cta-band {
  background:
    linear-gradient(90deg, rgba(1, 125, 16, 0.94), rgba(1, 125, 16, 0.78), rgba(53, 162, 67, 0.42)),
    url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.service-card,
.campaign-grid article,
.statement-grid article,
.feature-row article,
.trust-grid article,
blockquote,
.contact-form,
.contact-card,
.support-list span,
.referral-tags span {
  border-color: rgba(1, 125, 16, 0.18);
}

.faq-item {
  border-bottom-color: rgba(1, 125, 16, 0.24);
}

.contact-card-icon {
  background: var(--bespoke-support-light);
}

.contact-note {
  border-top-color: rgba(1, 125, 16, 0.14);
}

input:focus,
select:focus,
textarea:focus {
  outline-color: rgba(1, 125, 16, 0.18);
  border-color: var(--bespoke-support);
}

.services,
.support-cards,
.faq,
.contact {
  background: var(--bespoke-soft);
}

.hero-content {
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, rgba(1, 125, 16, 0.2), rgba(255, 255, 255, 0.09));
}

.intro,
.why,
.support-band,
.referrals,
.trust,
.testimonials,
.action-section {
  background: #fff;
}

.statement-grid article,
.feature-row article,
.trust-grid article,
blockquote,
.service-card,
.campaign-grid article,
.contact-card,
.contact-form {
  background: #fff;
}

.statement-grid article:nth-child(2),
.feature-row article:nth-child(2),
.service-card:nth-child(2),
.trust-grid article:nth-child(2) {
  background: var(--bespoke-support-light);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(1, 125, 16, 0.94), rgba(1, 125, 16, 0.76)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero p:not(.eyebrow) {
  color: #fff;
}

.page-hero .eyebrow::before {
  background: var(--bespoke-accent);
}

/* Final light blue theme restore */
.site-header,
.site-header.is-scrolled {
  background: rgba(71, 101, 255, 0.82);
  box-shadow: 0 18px 48px rgba(71, 101, 255, 0.2);
}

.brand-mark,
.nav-cta,
.btn-primary {
  background: #fff;
  color: var(--brand-blue);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand-blue);
}

.hero {
  background:
    linear-gradient(90deg, rgba(71, 101, 255, 0.94), rgba(71, 101, 255, 0.78), rgba(143, 160, 255, 0.54)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1900&q=84") center / cover;
}

.hero::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
}

.hero .eyebrow,
.hero-lead,
.impact .eyebrow,
.cta-band .eyebrow {
  color: #fff;
}

.hero .eyebrow::before,
.scroll-line,
.page-hero .eyebrow::before {
  background: #fff;
}

.hero-content {
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
}

.btn-secondary,
.btn-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover,
.btn-light:hover {
  background: rgba(255, 255, 255, 0.22);
}

.eyebrow,
.action-feature h3 strong,
.statement-grid svg,
.service-card > svg,
.feature-row svg,
.contact .eyebrow,
.contact-card-icon,
.contact-note strong,
.faq .eyebrow,
.faq-item,
.faq-item:hover,
.faq-item:focus-visible,
.faq-item svg {
  color: var(--brand-blue);
}

.eyebrow::before,
.contact .eyebrow::before,
.faq .eyebrow::before {
  background: var(--brand-blue);
}

.services,
.support-cards,
.faq,
.contact {
  background: var(--bespoke-soft);
}

.statement-grid article:nth-child(2),
.feature-row article:nth-child(2),
.service-card:nth-child(2),
.trust-grid article:nth-child(2) {
  background: var(--bespoke-support-light);
}

.service-card,
.campaign-grid article,
.statement-grid article,
.feature-row article,
.trust-grid article,
blockquote,
.contact-form,
.contact-card,
.support-list span,
.referral-tags span {
  border-color: rgba(71, 101, 255, 0.16);
}

.service-card li::before,
.check-list li::before,
.progress-track span {
  background: var(--brand-blue);
}

.impact,
.cta-band,
.page-hero {
  background:
    linear-gradient(90deg, rgba(71, 101, 255, 0.94), rgba(71, 101, 255, 0.74), rgba(143, 160, 255, 0.38)),
    url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero p:not(.eyebrow) {
  color: #fff;
}

.faq-item {
  border-bottom-color: rgba(71, 101, 255, 0.22);
}

.contact-card-icon {
  background: rgba(71, 101, 255, 0.1);
}

.contact-note {
  border-top-color: rgba(71, 101, 255, 0.14);
}

input:focus,
select:focus,
textarea:focus {
  outline-color: rgba(71, 101, 255, 0.2);
  border-color: var(--brand-blue);
}

.site-footer {
  background: var(--brand-blue);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Clean mobile menu and policy pages */
.policy-content {
  background: #fff;
}

.policy-wrap {
  max-width: 920px;
  margin: 0 auto;
  color: var(--ink);
}

.policy-wrap h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--brand-blue);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.2;
}

.policy-wrap p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.policy-wrap a {
  color: var(--brand-blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.policy-updated {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: var(--bespoke-support-light);
  color: var(--brand-blue) !important;
  font-weight: 800;
}

@media (max-width: 860px) {
  .main-nav {
    top: 82px;
    right: 18px;
    left: 18px;
    overflow: hidden;
    border: 1px solid rgba(71, 101, 255, 0.16);
    border-radius: 18px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 55px rgba(13, 23, 80, 0.22);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
  }

  .main-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .main-nav a {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    padding: 0 18px;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 900;
  }

  .main-nav a::before {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(71, 101, 255, 0.22);
    content: "";
  }

  .main-nav a::after {
    border: 0 !important;
    width: auto !important;
    height: auto !important;
    color: rgba(44, 48, 55, 0.42);
    content: ">";
    position: static !important;
    transform: none !important;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-active {
    background: var(--bespoke-support-light);
    color: var(--brand-blue);
  }

  .main-nav a.is-active::before {
    background: var(--brand-blue);
  }

  .main-nav a.is-active::after {
    color: var(--brand-blue);
  }

  .nav-toggle {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
  }
}

/* Match homepage hero to inner page blue treatment */
body.home-page .hero {
  min-height: 520px;
  display: grid;
  align-items: center;
  justify-content: stretch;
  padding: 138px clamp(20px, 7vw, 112px) 76px;
  background:
    linear-gradient(90deg, rgba(71, 101, 255, 0.96), rgba(71, 101, 255, 0.78)),
    url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1800&q=82") center / cover;
}

body.home-page .hero::before,
body.home-page .hero::after,
body.home-page .hero-scroll-indicator {
  display: none;
}

body.home-page .hero-content {
  width: min(920px, 100%);
  min-height: auto;
  display: block;
  justify-items: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

body.home-page .hero .eyebrow {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
}

body.home-page .hero .eyebrow::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}

body.home-page .hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  text-transform: none;
}

body.home-page .hero-lead {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
}

body.home-page .hero-copy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

body.home-page .hero-actions {
  justify-content: flex-start;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Bespoke housing-support palette */
.brand-mark,
.nav-cta,
.btn-primary {
  background: var(--bespoke-accent);
  color: #fff;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #9f7638;
  color: #fff;
}

.site-header,
.site-header.is-scrolled {
  background: rgba(16, 24, 32, 0.78);
  box-shadow: 0 18px 48px rgba(16, 24, 32, 0.22);
}

.hero {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.96), rgba(16, 24, 32, 0.82), rgba(47, 111, 104, 0.5)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1900&q=84") center / cover;
}

.hero::before {
  background-image:
    linear-gradient(rgba(184, 138, 68, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 138, 68, 0.12) 1px, transparent 1px);
}

.hero .eyebrow,
.hero-lead {
  color: var(--bespoke-accent);
}

.hero .eyebrow::before,
.scroll-line {
  background: var(--bespoke-accent);
}

.btn-secondary,
.btn-light {
  border-color: rgba(184, 138, 68, 0.46);
  background: rgba(184, 138, 68, 0.1);
}

.btn-secondary:hover,
.btn-light:hover {
  background: rgba(184, 138, 68, 0.18);
}

.eyebrow,
.action-feature h3 strong,
.statement-grid svg,
.service-card > svg,
.feature-row svg,
.contact .eyebrow,
.contact-card-icon,
.contact-note strong,
.faq .eyebrow,
.faq-item,
.faq-item:hover,
.faq-item:focus-visible,
.faq-item svg {
  color: var(--bespoke-support);
}

.eyebrow::before,
.contact .eyebrow::before,
.faq .eyebrow::before {
  background: var(--bespoke-support);
}

.services,
.support-cards,
.faq,
.contact {
  background: var(--bespoke-soft);
}

.service-card,
.campaign-grid article,
.statement-grid article,
.feature-row article,
.trust-grid article,
blockquote,
.contact-form,
.contact-card,
.support-list span,
.referral-tags span {
  border-color: rgba(47, 111, 104, 0.16);
}

.service-card li::before,
.check-list li::before,
.progress-track span {
  background: var(--bespoke-accent);
}

.impact,
.cta-band {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.96), rgba(16, 24, 32, 0.74), rgba(47, 111, 104, 0.34)),
    url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.faq-item {
  border-bottom-color: rgba(47, 111, 104, 0.22);
}

.contact-card-icon {
  background: rgba(47, 111, 104, 0.1);
}

.contact-note {
  border-top-color: rgba(47, 111, 104, 0.14);
}

input:focus,
select:focus,
textarea:focus {
  outline-color: rgba(184, 138, 68, 0.24);
  border-color: var(--bespoke-accent);
}

.site-footer {
  background: var(--brand-blue);
}

.btn-primary {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: #263fb9;
  background: #263fb9;
  color: #fff;
}

@media (max-width: 860px) {
  .main-nav {
    top: 82px;
    right: 18px;
    left: 18px;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(71, 101, 255, 0.18);
    border-top: 4px solid var(--brand-blue);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.97);
    color: var(--ink);
    box-shadow: 0 18px 44px rgba(16, 24, 32, 0.22);
    backdrop-filter: blur(12px);
  }

  .main-nav.is-open {
    display: grid;
    grid-template-columns: 1fr;
  }

  .main-nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-width: 0;
    padding: 13px 15px;
    border: 1px solid rgba(71, 101, 255, 0.12);
    border-radius: 8px;
    background: #fff;
    color: var(--navy);
    text-align: left;
  }

  .main-nav a::before {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: rgba(71, 101, 255, 0.24);
    content: "";
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-active {
    background: var(--bespoke-soft);
    color: var(--brand-blue);
  }

  .main-nav a:hover::before,
  .main-nav a:focus-visible::before,
  .main-nav a.is-active::before {
    background: var(--brand-blue);
  }
}
