:root {
  --ink: #000000;
  --navy: #001d2e;
  --navy-700: #00131c;
  --gold: #d3ac2e;
  --gold-100: #fbf3d8;
  --gold-700: #7e6418;
  --blue: #338ef6;
  --blue-600: #2272cc;
  --paper: #f3f3f3;
  --white: #ffffff;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Roboto", system-ui, sans-serif !important;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, serif !important;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.015em;
}
a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s;
}
a:hover {
  color: var(--gold-700);
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* TYPE TOKENS */
.eyebrow {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.em-italic {
  font-family: "Playfair Display", serif !important;
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  justify-content: center;
}
#communities p.eyebrow {
  margin-bottom: 10px;
}
.btn-gold {
  background: var(--gold) !important;
  color: var(--ink) !important;
}
.btn-gold:hover {
  background: var(--gold-100) !important;
  color: var(--ink) !important;
  transform: translateY(-1px);
}
.btn-paper-outline {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid var(--paper);
}
.btn-paper-outline:hover {
  background: var(--paper);
  color: var(--ink);
}
.btn-ink-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ink-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

/* TOP RAIL Â· over hero, transparent */
.toprail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 14px 0;
  font-family: "Roboto Mono", monospace !important;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  border-bottom: 1px solid rgba(243, 243, 243, 0.08);
}
.toprail .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.toprail span {
  color: rgba(243, 243, 243, 0.85);
}
.toprail .em {
  color: var(--gold);
  font-weight: 700;
}
.toprail a {
  color: var(--paper);
}
.toprail a:hover {
  color: var(--gold);
}

/* NAV Â· over hero, transparent */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 55;
  padding: 28px 0;
  border-bottom: 1px solid rgba(243, 243, 243, 0.12);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  color: var(--paper);
  text-decoration: none;
  display: inline-block;
  background: transparent;
}
.bo-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  line-height: 1;
  color: currentColor;
  background: transparent;
}
.bo-name {
  display: block;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 5px;
  margin-bottom: 5px;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0;
}
.bo-billy {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0;
  line-height: 1;
  color: currentColor;
  display: inline;
}
.bo-okeefe {
  font-family: "Roboto", sans-serif !important;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 0;
  line-height: 1;
  color: currentColor;
  display: inline;
  margin-left: 0.3em;
}
.bo-tag {
  display: block;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0;
  text-align: justify;
  text-align-last: justify;
  width: 100%;
  line-height: 1;
  color: currentColor;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 26px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-menu > li {
  position: relative;
}
.nav-menu > li > a {
  color: var(--paper);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  text-decoration: none;
}
.nav-menu > li > a .caret {
  font-size: 9px;
  opacity: 0.7;
}
.nav-menu > li > a:hover {
  color: var(--gold);
}
.nav-cta {
  background: transparent;
  color: var(--gold) !important;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-cta:hover {
  color: var(--gold-100);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 60;
}
.mobile-nav {
  display: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--paper);
  transition:
    transform 0.3s ease,
    opacity 0.25s ease;
}
.nav.open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.nav.open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
body.nav-locked {
  overflow: hidden;
}
.submenu,
.nested {
  list-style: none;
  margin: 0;
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(18px);
  min-width: 260px;
  border-top: 2px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
  z-index: 60;
  position: absolute;
}
.submenu {
  top: 100%;
  left: -16px;
}
.nested {
  top: -18px;
  left: 100%;
  transform: translateX(8px);
}
.nav-menu > li:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu li {
  position: relative;
}
.submenu a,
.nested a {
  display: block;
  padding: 10px 24px;
  color: var(--paper);
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  transition:
    color 0.2s,
    background 0.2s;
  text-decoration: none;
}
.submenu a:hover,
.nested a:hover {
  color: var(--gold);
  background: rgba(211, 172, 46, 0.06);
}
.submenu .has-nested > a::after {
  content: "›";
  opacity: 0.7;
  margin-left: 6px;
}
.submenu li:hover > .nested {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* HERO Â· cinematic full-bleed */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
  padding: 216px 0 192px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 29, 46, 0.35) 45%,
    rgba(0, 0, 0, 0.85) 100%
  );
}
.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-eyebrow {
  margin-bottom: 24px;
}
.hero h1 {
  font-family: "Playfair Display", serif !important;
  font-weight: 800;
  color: var(--paper);
  font-size: clamp(48px, 6.2vw, 84px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 1000px;
}
.hero h1 .em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  display: block;
}
.hero .lead {
  font-family: "Roboto", sans-serif !important;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.55;
  color: rgba(243, 243, 243, 0.92);
  max-width: 560px;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* HERO STAT STRIP Â· pinned to hero bottom */
.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    var(--ink) 0%,
    var(--ink) 35%,
    var(--navy) 100%
  );
  border-top: 4px solid var(--gold);
  padding: 28px 0;
  z-index: 3;
}
.hero-strip .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}
.hero-strip .stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-right: 1px solid rgba(243, 243, 243, 0.14);
  padding: 0 24px;
}
.hero-strip .stat:last-child {
  border-right: none;
}
.hero-strip .stat {
  cursor: pointer;
}
.hero-strip .num {
  font-family: "Playfair Display", serif !important;
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: var(--paper);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  transition:
    transform 0.3s ease,
    color 0.5s ease;
}
.hero-strip .stat:hover .num {
  transform: translateY(-2px);
}
.hero-strip .grid .stat:nth-child(2) .num {
  font-size: 56px;
}
.hero-strip .num .digits {
  display: inline-block;
  min-width: 2ch;
  font-variant-numeric: tabular-nums;
  transition: opacity 0.25s ease;
}
.hero-strip .num.spinning .digits {
  opacity: 0.95;
}
.hero-strip .num.landed {
  color: var(--gold);
}
.hero-strip .num .plus {
  color: var(--paper);
  font-style: italic;
  font-weight: 600;
  margin-left: 2px;
}
.hero-strip .lbl {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-size: 13px;
  color: var(--paper);
  line-height: 1.3;
}
.hero-strip .lbl .sub {
  display: block;
  font-family: "Roboto Mono", monospace !important;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(211, 172, 46, 0.85);
  margin-top: 4px;
  font-weight: 700;
}

/* SECTION FRAME */
section {
  padding: 120px 0;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.section-head--dark {
  border-bottom-color: rgba(243, 243, 243, 0.12);
}
.section-head h2 {
  font-family: "Playfair Display", serif !important;
  font-weight: 700;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.section-head.section-head--solo {
  display: block;
  text-align: center;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 40px;
}
.section-head.section-head--solo .eyebrow {
  color: var(--ink);
  margin-bottom: 18px;
}
.section-head.section-head--solo h2 {
  max-width: 880px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.01em;
}
.section-head--dark h2 {
  color: var(--paper);
}
.section-head h2 .em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}
.section-head .deck {
  font-family: "Roboto", sans-serif !important;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
}
.section-head--dark .deck {
  color: rgba(243, 243, 243, 0.85);
}

/* MEET BILLY Â· Paper, full-frame photo left / text right */
.meet-billy {
  background: var(--paper);
  padding: 0;
}
.meet-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  align-items: stretch;
}
.meet-photo-block {
  position: relative;
  background: var(--ink);
  aspect-ratio: 1952/2186;
  overflow: hidden;
  border-bottom: 4px solid var(--gold);
}
.meet-photo-block img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.meet-photo-block .meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 32px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  font-family: "Roboto Mono", monospace !important;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.meet-photo-block .meta .em {
  color: var(--gold);
}
.meet-content {
  padding: 64px 80px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.meet-content .eyebrow {
  margin-bottom: 18px;
}
.meet-content h2 {
  font-family: "Playfair Display", serif !important;
  font-weight: 700;
  font-size: clamp(32px, 3.1vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 18px;
}
.meet-content h2 .em {
  font-style: normal;
  color: var(--ink);
  font-weight: 700;
}
.meet-content p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 16px;
  max-width: 560px;
}
.meet-content .lead-stat {
  font-family: "Playfair Display", serif !important;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.1;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: -0.015em;
  display: block;
}
.meet-content .lead-stat .pull-mark {
  font-weight: 700;
  margin-right: 6px;
  font-size: 0.85em;
  line-height: 0;
}
.meet-content p.pullquote {
  font-family: "Playfair Display", serif !important;
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding: 0 0 0 18px;
  margin: 18px 0;
}
.meet-content p.pullquote .em {
  color: var(--gold);
}
.signature {
  font-family: "Playfair Display", serif !important;
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  color: var(--gold);
  margin-top: 18px;
}

/* WHY WORK WITH BILLY Â· Ink, decisive moment */
.why-billy {
  background: var(--ink);
  color: var(--paper);
  padding: 140px 0 0;
}
.why-billy .container {
  position: relative;
}
.why-billy .eyebrow {
  margin-bottom: 28px;
  display: inline-block;
}
.why-billy h2 {
  font-family: "Playfair Display", serif !important;
  font-weight: 700;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--paper);
  max-width: 1080px;
  margin-bottom: 20px;
}
.why-billy h2 .em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}
.why-billy .deck {
  font-family: "Roboto", sans-serif !important;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(243, 243, 243, 0.78);
  max-width: 760px;
  margin-bottom: 64px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(243, 243, 243, 0.12);
}
.supports {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}
.support {
  padding-right: 8px;
}
.support .num {
  font-family: "Roboto Mono", monospace !important;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.support h3 {
  font-family: "Playfair Display", serif !important;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  color: var(--paper);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.support p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(243, 243, 243, 0.78);
}
.why-summary-band {
  background: linear-gradient(
    90deg,
    var(--ink) 0%,
    var(--ink) 35%,
    var(--navy) 100%
  );
  padding: 64px 0;
  margin-top: 64px;
  position: relative;
}
.why-summary-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 25%,
    rgba(243, 243, 243, 0.22) 100%
  );
  pointer-events: none;
}
.why-summary {
  padding-top: 0;
}
.why-summary .summary {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(243, 243, 243, 0.92);
  margin-bottom: 24px;
  max-width: 880px;
}
.why-summary .kicker {
  font-family: "Playfair Display", serif !important;
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  color: var(--gold);
  margin: 20px 0 32px;
}

/* COMMUNITIES Â· Paper, image cards on light */
.communities {
  background: var(--paper);
}
.comm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.comm-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.comm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}
.comm-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.comm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.comm-card:hover .comm-img img {
  transform: scale(1.04);
}
.comm-img .tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--ink);
  color: var(--paper);
  font-family: "Roboto Mono", monospace !important;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  padding: 8px 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-left: 3px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.comm-img .tag .pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: var(--paper);
  opacity: 0.85;
}
.comm-img .tag .em {
  color: var(--gold);
}
.comm-body {
  padding: 36px;
}
/* .comm-body .num Â· removed (zip code line) */
.comm-body h3 {
  font-family: "Playfair Display", serif !important;
  font-weight: 700;
  font-size: 32px;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.comm-body h3 .em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}
.comm-body .em-tag {
  font-family: "Playfair Display", serif !important;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.7;
  font-size: 17px;
  margin-bottom: 18px;
  display: block;
  line-height: 1.3;
}
.comm-body p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 24px;
  opacity: 0.82;
}
.comm-body a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.comm-body a:hover {
  color: var(--gold-700);
  border-color: var(--gold-700);
}

/* GUARANTEES Â· Ink, two promise cards on dark */
.guarantees {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 80px;
}
.guarantees .section-head h2 {
  color: var(--paper);
}
.guarantees .section-head .deck {
  color: rgba(243, 243, 243, 0.82);
}
.guarantees .section-head {
  border-bottom-color: rgba(243, 243, 243, 0.12);
}
.guar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.guar-card {
  background: transparent;
  padding: 0;
  position: relative;
  padding-top: 24px;
}
.guar-card .seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  font-family: "Playfair Display", serif !important;
  font-style: italic;
  color: var(--gold);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}
.guar-card .eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
}
.guar-card h3 {
  font-family: "Playfair Display", serif !important;
  font-weight: 700;
  font-size: 32px;
  color: var(--paper);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.guar-card h3 .em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}
.guar-card p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(243, 243, 243, 0.82);
  margin-bottom: 28px;
  max-width: 480px;
}
.guar-card a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.guar-card a:hover {
  color: var(--paper);
  border-color: var(--paper);
}

/* TESTIMONIALS Â· Paper, white cards */
.testimonials {
  background: var(--paper);
}
.testimonials .pullquote-feature {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  padding: 24px 0;
}
.testimonials .qm {
  font-family: "Playfair Display", serif !important;
  font-style: italic;
  font-weight: 700;
  font-size: 56px;
  color: var(--gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 14px;
}
.testimonials blockquote.lead-quote {
  font-family: "Playfair Display", serif !important;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--gold);
  letter-spacing: -0.005em;
  margin-bottom: 18px;
}
.testimonials blockquote.lead-quote .em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.testimonials .attrib {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  background: var(--white);
  padding: 36px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 3px solid var(--gold);
}
.test-card .stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.test-card blockquote {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 24px;
  opacity: 0.88;
}
.test-card .who {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.test-card .where {
  font-family: "Roboto Mono", monospace !important;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 700;
  text-transform: uppercase;
}
.reviews-cta {
  margin-top: 56px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.reviews-link {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  display: inline-block;
  transition:
    color 0.25s,
    border-color 0.25s;
}
.reviews-link:hover {
  color: var(--gold-700);
  border-color: var(--gold-700);
}
.deck-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}
.deck-link:hover {
  color: var(--gold-700);
  border-color: var(--gold-700);
}

/* TEAM Â· Paper, white cards */
.team {
  background: var(--paper);
  padding-top: 64px;
  padding-bottom: 24px;
}
.team-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: 0 auto;
  max-width: 1280px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.team-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  border-top: 3px solid var(--gold);
}
.team-card img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--paper);
  border: 2px solid var(--gold);
}
.team-card .role-tag {
  font-family: "Roboto Mono", monospace !important;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.team-card h4 {
  font-family: "Playfair Display", serif !important;
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.team-card p {
  font-family: "Roboto", sans-serif !important;
  font-size: 14px;
  color: var(--ink);
  opacity: 0.78;
  line-height: 1.5;
}

/* FAQ Â· Ink, accordion */
.faq {
  background: var(--ink);
  color: var(--paper);
}
.faq .section-head h2 {
  color: var(--paper);
}
.faq .section-head .deck {
  color: rgba(243, 243, 243, 0.82);
}
.faq .section-head {
  border-bottom-color: rgba(243, 243, 243, 0.12);
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid rgba(243, 243, 243, 0.1);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  gap: 28px;
  align-items: center;
  transition: background-color 0.2s ease;
}
.faq-item summary:hover {
  background: rgba(211, 172, 46, 0.04);
}
.faq-item summary:hover .q {
  color: var(--gold);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item .num {
  font-family: "Roboto Mono", monospace !important;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
}
.faq-item .q {
  font-family: "Playfair Display", serif !important;
  font-weight: 600;
  font-size: 22px;
  color: var(--paper);
  line-height: 1.25;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.faq-item .icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif !important;
  font-weight: 300;
  font-size: 18px;
  transition: all 0.25s;
  justify-self: end;
}
.faq-item[open] .icon {
  background: var(--gold);
  color: var(--ink);
  transform: rotate(45deg);
}
.faq-item .a {
  padding: 0 40px 32px 108px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(243, 243, 243, 0.82);
  max-width: 880px;
}
.faq-item .a strong {
  color: var(--gold);
  font-weight: 700;
}
.faq-item .a ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}
.faq-item .a ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}
.faq-item .a ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: rgba(243, 243, 243, 0.55);
}

/* CONTACT Â· Paper, form on ink card */
.contact {
  background: var(--paper);
  padding: 48px 0 96px;
}
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media all and (min-width: 1024px) {
  .contact .container {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .contact-info,
  .contact-info .lead {
    text-align: center;
    margin: 0px auto;
  }
  .one-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
.contact-info .eyebrow {
  margin-bottom: 24px;
}
.contact-info h2 {
  font-family: "Playfair Display", serif !important;
  font-weight: 700;
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.contact-info h2 .em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}
.contact-info .lead {
  font-family: "Roboto", sans-serif !important;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 40px;
  max-width: 500px;
  opacity: 0.85;
}
.contact-detail {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding: 22px 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: baseline;
}
.contact-detail:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.contact-detail .label {
  font-family: "Roboto Mono", monospace !important;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
}
.contact-detail .value {
  font-family: "Playfair Display", serif !important;
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.contact-detail .value a {
  color: var(--ink);
}
.contact-detail .value a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--ink);
  color: var(--paper);
  padding: 48px;
  border-top: 4px solid var(--gold);
}
.contact-form h3 {
  font-family: "Playfair Display", serif !important;
  font-weight: 700;
  font-size: 28px;
  color: var(--paper);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.contact-form .sub {
  font-family: "Roboto", sans-serif !important;
  font-weight: 300;
  font-size: 15px;
  color: rgba(243, 243, 243, 0.78);
  margin-bottom: 28px;
}
.field {
  margin-bottom: 22px;
}
.field label {
  display: block;
  font-family: "Roboto Mono", monospace !important;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(243, 243, 243, 0.25);
  padding: 10px 0;
  font-family: "Roboto", sans-serif !important;
  font-size: 16px;
  color: var(--paper);
  transition: border-color 0.2s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field textarea {
  resize: vertical;
  min-height: 80px;
}
.contact-form .btn {
  margin-top: 6px;
  width: 100%;
}

/* FOOTER Â· Ink, Signal Blue lives here */
footer {
  background: linear-gradient(
    90deg,
    var(--ink) 0%,
    var(--ink) 30%,
    var(--navy) 100%
  );
  color: var(--paper);
  padding: 72px 0 28px;
  border-top: 6px solid var(--gold);
}
.foot-logo {
  display: block;
  text-decoration: none;
  color: var(--paper);
}
.foot-logo .brand {
  font-family: "Playfair Display", serif !important;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--paper);
  display: block;
  margin-bottom: 8px;
}
.foot-logo .brokerage {
  font-family: "Playfair Display", serif !important;
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--gold);
  display: block;
}
.foot-logo .brokerage .dot {
  margin: 0 4px;
  opacity: 0.65;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.foot-tagline {
  font-family: "Playfair Display", serif !important;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: var(--paper);
  margin-top: 20px;
  max-width: 360px;
}
.foot-tagline .em {
  color: var(--gold);
}
.foot-col h5 {
  font-family: "Roboto Mono", monospace !important;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 243, 243, 0.65);
  margin-bottom: 18px;
}
.foot-col ul {
  list-style: none;
}
.foot-col li {
  margin-bottom: 10px;
}
.foot-col a {
  font-family: "Roboto", sans-serif !important;
  font-size: 14px;
  color: var(--paper);
}
.foot-col a:hover {
  color: var(--gold);
}
/* Signal Blue here Â· phone, email, social */
.foot-col a[href^="tel:"],
.foot-col a[href^="mailto:"],
.foot-col a.social-link {
  color: var(--blue);
}
.foot-col a[href^="tel:"]:hover,
.foot-col a[href^="mailto:"]:hover,
.foot-col a.social-link:hover {
  color: var(--blue-600);
}
.foot-bottom {
  border-top: 1px solid rgba(243, 243, 243, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.foot-bottom p {
  font-family: "Roboto Mono", monospace !important;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 243, 243, 0.5);
}
.foot-badges {
  display: flex;
  gap: 14px;
}
.badge {
  border: 1px solid rgba(211, 172, 46, 0.45);
  padding: 7px 12px;
  font-family: "Roboto Mono", monospace !important;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* RESPONSIVE Â· TABLET â‰¤980 */
@media (max-width: 980px) {
  .nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 18px 0;
    background: transparent;
  }
  .nav .container {
    flex-wrap: wrap;
    gap: 16px;
  }
  .nav .container > nav {
    display: none;
  }
  .nav-menu {
    display: none;
  }
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
  .nav.open .mobile-nav {
    display: block;
  }
  .mobile-nav {
    display: none;
    flex-basis: 100%;
    background: var(--ink);
    padding: 8px 0 16px;
    border-top: 1px solid rgba(243, 243, 243, 0.12);
    margin-top: 16px;
  }
  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-nav > ul > li {
    border-bottom: 1px solid rgba(243, 243, 243, 0.08);
  }
  .mobile-nav > ul > li:last-child {
    border-bottom: none;
  }
  .mobile-nav details summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 4px;
    color: var(--paper);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .mobile-nav details summary::-webkit-details-marker {
    display: none;
  }
  .mobile-nav details summary::after {
    content: "+";
    color: var(--gold);
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.25s;
  }
  .mobile-nav details[open] summary::after {
    transform: rotate(45deg);
  }
  .mobile-nav details > ul {
    padding: 4px 0 12px 16px;
    background: rgba(243, 243, 243, 0.03);
  }
  .mobile-nav details > ul li a,
  .mobile-nav > ul > li > a {
    display: block;
    padding: 10px 0;
    color: var(--paper);
    font-size: 14px;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: color 0.2s;
  }
  .mobile-nav details > ul li a:hover,
  .mobile-nav > ul > li > a:hover {
    color: var(--gold);
  }
  .mobile-nav .nav-cta-mobile {
    display: inline-block;
    background: transparent;
    color: var(--gold) !important;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 12px;
  }
  .hero {
    display: block;
    min-height: 72vh;
    padding: 144px 0 72px;
  }
  .hero-bg {
    background-size: auto 140%;
    background-position: center bottom;
  }
  .hero h1 {
    font-size: clamp(38px, 7vw, 56px);
  }
  .hero .lead {
    font-size: 18px;
    margin-bottom: 32px;
  }
  .hero-ctas {
    gap: 10px;
    margin-bottom: 48px;
  }
  .hero-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 0;
    padding: 24px 0;
  }
  .hero-strip .grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-strip .stat {
    border-right: none;
    border-bottom: 1px solid rgba(243, 243, 243, 0.14);
    padding: 0 24px 14px;
  }
  .hero-strip .stat:last-child {
    border-bottom: none;
  }
  .hero-strip .num {
    font-size: 38px;
  }
  .hero-strip .grid .stat:nth-child(2) .num {
    font-size: 48px;
  }
  .meet-billy {
    padding: 56px 0;
  }
  .meet-split {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
  }
  .meet-photo-block {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
  .meet-content {
    padding: 0;
  }
  .meet-content h2 {
    font-size: clamp(28px, 5vw, 38px);
  }
  .meet-content p {
    font-size: 15.5px;
  }
  .meet-content h2 + p::first-letter {
    font-size: 48px;
  }
  .supports {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .why-billy {
    padding: 72px 0 0;
  }
  .why-billy h2 {
    font-size: clamp(26px, 4.4vw, 38px);
  }
  .why-summary-band {
    padding: 48px 0;
    margin-top: 0;
  }
  .comm-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .comm-body {
    padding: 28px;
  }
  .comm-body h3 {
    font-size: 26px;
  }
  .guarantees {
    padding: 64px 0;
  }
  .guar-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .guar-card {
    padding-top: 24px;
  }
  .test-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .testimonials blockquote.lead-quote {
    font-size: clamp(17px, 2.8vw, 22px);
    line-height: 1.35;
  }
  .testimonials .qm {
    font-size: 46px;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .team-card {
    padding: 28px;
    grid-template-columns: auto 1fr;
    gap: 20px;
  }
  .team-card img {
    width: 80px;
    height: 80px;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 48px;
    padding-bottom: 24px;
  }
  .section-head h2 {
    font-size: clamp(28px, 5vw, 40px);
  }
  .section-head .deck {
    font-size: 16px;
  }
  .team {
    padding-bottom: 24px;
  }
  .contact {
    padding: 40px 0 64px;
  }
  .contact .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-info .lead {
    margin-bottom: 20px;
  }
  .contact-info h2 {
    font-size: clamp(32px, 5.5vw, 44px);
  }
  .contact-info .lead {
    font-size: 17px;
  }
  .contact-form {
    padding: 36px 28px;
  }
  .contact-form h3 {
    font-size: 24px;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .faq-item summary {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 22px 0;
  }
  .faq-item .num {
    display: none;
  }
  .faq-item .q {
    font-size: 18px;
  }
  .faq-item .a {
    padding: 0 0 22px 0;
    font-size: 15px;
  }
  .faq-item .icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  section {
    padding: 56px 0;
  }
}

/* RESPONSIVE Â· MOBILE â‰¤640 */
@media (max-width: 640px) {
  .container,
  .meet-split {
    padding-left: 22px;
    padding-right: 22px;
  }
  .bo-billy,
  .bo-okeefe {
    font-size: 27px;
  }
  .bo-tag {
    font-size: 8.5px;
    letter-spacing: 0;
  }
  .hero {
    min-height: 66vh;
    padding: 115px 0 48px;
  }
  .hero h1 {
    font-size: clamp(34px, 8vw, 46px);
    line-height: 1.05;
  }
  .hero .lead {
    font-size: 17px;
    margin-bottom: 28px;
  }
  .hero-ctas .btn {
    padding: 14px 22px;
    font-size: 12px;
    letter-spacing: 0.16em;
  }
  .hero-strip {
    padding: 20px 0;
  }
  .hero-strip .stat {
    padding: 0 18px 12px;
  }
  .hero-strip .num {
    font-size: 34px;
  }
  .hero-strip .grid .stat:nth-child(2) .num {
    font-size: 42px;
  }
  .hero-strip .lbl {
    font-size: 12px;
  }
  .hero-strip .lbl .sub {
    font-size: 9px;
    letter-spacing: 0.18em;
  }
  .meet-billy {
    padding: 48px 0;
  }
  .meet-split {
    gap: 28px;
  }
  .meet-photo-block .meta {
    font-size: 9.5px;
    padding: 12px 16px;
  }
  .meet-content h2 {
    font-size: clamp(26px, 6vw, 32px);
    margin-bottom: 16px;
  }
  .meet-content p {
    font-size: 15px;
    line-height: 1.6;
    max-width: none;
  }
  .meet-content p .pull-mark {
    font-size: 44px;
  }
  .meet-content p .pull-opener {
    font-size: 1.05em;
  }
  .meet-content h2 + p::first-letter {
    font-size: 40px;
    margin: 2px 8px 0 0;
  }
  .meet-content p.pullquote {
    font-size: 17px;
    padding-left: 12px;
    margin: 14px 0;
  }
  .signature {
    font-size: 20px;
  }
  .why-billy {
    padding: 64px 0 0;
  }
  .why-billy h2 {
    font-size: clamp(22px, 5.2vw, 30px);
    line-height: 1.2;
  }
  .why-billy .deck {
    font-size: 16px;
    margin-bottom: 40px;
    padding-bottom: 24px;
  }
  .support h3 {
    font-size: 19px;
  }
  .support p {
    font-size: 14.5px;
  }
  .why-summary-band {
    padding: 36px 0;
    margin-top: 0;
  }
  .why-summary .summary {
    font-size: 16.5px;
  }
  .why-summary .kicker {
    font-size: 22px;
    margin: 16px 0 24px;
  }
  .comm-img .tag {
    font-size: 9.5px;
    padding: 6px 10px;
    top: 12px;
    left: 12px;
  }
  .comm-body {
    padding: 22px;
  }
  .comm-body h3 {
    font-size: 22px;
  }
  .comm-body p {
    font-size: 14.5px;
  }
  .guarantees {
    padding: 64px 0;
  }
  .guar-card {
    padding-top: 20px;
  }
  .guar-card .seal {
    width: 54px;
    height: 54px;
    font-size: 18px;
  }
  .guar-card h3 {
    font-size: 24px;
  }
  .guar-card p {
    font-size: 15px;
  }
  .testimonials {
    padding: 64px 0;
  }
  .testimonials .pullquote-feature {
    padding: 32px 0;
    margin-bottom: 48px;
  }
  .testimonials .qm {
    font-size: 38px;
  }
  .testimonials blockquote.lead-quote {
    font-size: clamp(15px, 3.8vw, 19px);
    line-height: 1.35;
  }
  .test-card {
    padding: 24px;
  }
  .test-card blockquote {
    font-size: 14.5px;
  }
  .team {
    padding-top: 36px;
    padding-bottom: 24px;
  }
  .team-card {
    padding: 24px;
    gap: 18px;
  }
  .team-card img {
    width: 72px;
    height: 72px;
  }
  .team-card h4 {
    font-size: 20px;
  }
  .contact {
    padding: 36px 0 56px;
  }
  .contact-info h2 {
    font-size: clamp(28px, 6vw, 36px);
  }
  .contact-detail {
    grid-template-columns: 90px 1fr;
    padding: 18px 0;
    gap: 16px;
  }
  .contact-detail .label {
    font-size: 9.5px;
  }
  .contact-detail .value {
    font-size: 17px;
  }
  .contact-form {
    padding: 30px 22px;
  }
  .contact-form h3 {
    font-size: 22px;
  }
  .contact-form .sub {
    font-size: 14px;
  }
  .faq {
    padding: 64px 0;
  }
  .faq-item summary {
    padding: 18px 0;
  }
  .faq-item .q {
    font-size: 16.5px;
  }
  .faq-item .a {
    font-size: 14.5px;
    line-height: 1.6;
  }
  .faq-item .icon {
    width: 26px;
    height: 26px;
    font-size: 15px;
  }
  footer {
    padding: 56px 0 22px;
  }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 36px;
  }
  .foot-tagline {
    font-size: 17px;
    margin-top: 14px;
  }
  .foot-col h5 {
    font-size: 10px;
  }
  .foot-col a {
    font-size: 13.5px;
  }
  .foot-bottom p {
    font-size: 9px;
    letter-spacing: 0.16em;
  }
  .foot-badges {
    flex-wrap: wrap;
  }
  .badge {
    font-size: 8.5px;
    padding: 6px 10px;
  }
  section {
    padding: 48px 0;
  }
}

.foot-address {
  color: rgba(243, 243, 243, 0.7);
  font-size: 13px;
}
.foot-social {
  margin-top: 14px;
}

body.bsv-new-homepage .mkdf-wrapper,
body.bsv-new-homepage .mkdf-content {
  display: block;
}
