/* ============================================================
   PALETTE TOKENS
   To apply the client's own brand colours, edit ONLY these
   six values. Everything on the page derives from them.
   Keep the contrast relationships: --ground light,
   --anchor dark, --accent reserved for small highlights.
   ============================================================ */
:root {
  --ground: #ffffff; /* page background */
  --ground-2: #ffeef5; /* alternating band  */
  --anchor: #9f0f4b; /* dark sections, primary button */
  --anchor-deep: #1e0013; /* darkest — footer, spec sheet   */
  --accent: #dd2d7b; /* brass — eyebrows, numbers, tag */
  --ink: #1e0013; /* body text */

  --ink-soft: #5f545b;
  --ink-mute: #776a71;
  --line: #f0c7d9;
  --line-soft: #fae4ed;
  --accent-light: #ffb6d5;
  --sage: #d95791;
  --err: #8b1e46;

  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Karla", system-ui, -apple-system, sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, monospace;

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  overflow-x: hidden;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ground);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
h1,
h2,
h3 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--anchor);
}
h1 {
  font-size: clamp(38px, 5.6vw, 62px);
}
h2 {
  font-size: clamp(30px, 4.2vw, 46px);
}
h3 {
  font-size: clamp(20px, 2.4vw, 25px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 16px;
  padding: 17px 30px;
  border: 1.5px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.18s ease;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--anchor);
  color: #fff;
  border-color: var(--anchor);
}
.btn-primary:hover {
  background: var(--anchor-deep);
  border-color: var(--anchor-deep);
}
.btn-outline {
  background: transparent;
  color: var(--anchor);
  border-color: #e7afc9;
}
.btn-outline:hover {
  border-color: var(--anchor);
  background: var(--ground-2);
}
.btn-light {
  background: #fff;
  color: var(--anchor);
  border-color: #fff;
}
.btn-light:hover {
  background: #fff3f8;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.btn-accent {
  background: var(--accent);
  color: #1e0013;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--anchor-deep);
  color: #ffe4f0;
  font-size: 13.5px;
  padding: 9px 0;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar a {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 600;
}
.topbar a:hover {
  text-decoration: underline;
}

/* ---------- HEADER ---------- */
.hdr {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line);
}
.hdr .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.brand {
  font-family: var(--f-display);
  font-size: 21px;
  letter-spacing: -0.015em;
  text-decoration: none;
  line-height: 1.15;
  color: var(--anchor);
}
.brand span {
  display: block;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 3px;
}
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hdr-tel {
  font-weight: 700;
  text-decoration: none;
  font-size: 16.5px;
  white-space: nowrap;
  color: var(--anchor);
}
.hdr-tel:hover {
  color: var(--accent);
}
@media (max-width: 620px) {
  .hdr-tel span.lbl {
    display: none;
  }
}
@media (max-width: 760px) {
  .hdr-tel {
    display: none;
  }
  .brand {
    font-size: 18px;
  }
  .topbar {
    font-size: 12.5px;
  }
}

/* ---------- HERO ---------- */
.hero {
  background: var(--ground);
  padding: clamp(46px, 7vw, 88px) 0 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }
}
.hero h1 {
  margin: 16px 0 20px;
  max-width: 17ch;
}
.hero-sub {
  font-size: clamp(17px, 1.9vw, 20.5px);
  color: var(--ink-soft);
  max-width: min(46ch, 100%);
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0 28px;
}

.marks {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.mark {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.mark svg {
  width: 15px;
  height: 15px;
  flex: none;
  stroke: var(--accent);
  stroke-linecap: round;
}

/* ---------- ZIP CHECKER ---------- */
.zipcard {
  background: var(--ground-2);
  color: var(--ink);
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: 3px;
}
.zipcard h3 {
  font-size: 24px;
  margin: 8px 0 6px;
}
.zipcard p.hint {
  font-size: 14.5px;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.zipform {
  display: flex;
  gap: 8px;
}
.zipform input {
  flex: 1;
  min-width: 0;
  font-family: var(--f-mono);
  font-size: 17px;
  letter-spacing: 0.12em;
  padding: 15px;
  border: 1.5px solid #e7afc9;
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
}
.zipform input:focus {
  border-color: var(--anchor);
  outline: none;
  box-shadow: 0 0 0 3px rgba(221, 45, 123, 0.16);
}
.zipform button {
  padding: 15px 22px;
  font-size: 15px;
}
.zipresult {
  margin-top: 15px;
  font-size: 15.5px;
  display: none;
  padding: 14px 16px;
  border-radius: 2px;
  line-height: 1.5;
}
.zipresult.yes {
  display: block;
  background: #fde6f0;
  border-left: 3px solid var(--anchor);
  color: var(--anchor-deep);
}
.zipresult.no {
  display: block;
  background: #fbe8ed;
  border-left: 3px solid var(--err);
  color: #7b193f;
}
.zipresult strong {
  font-weight: 700;
}
.herocol {
  min-width: 0;
}
.hero-ph {
  margin-top: 16px;
  background: var(--ground-2);
  border: 1px dashed #e7afc9;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  padding: 18px;
  text-transform: uppercase;
  line-height: 1.8;
}
@media (max-width: 900px) {
  .hero-ph {
    aspect-ratio: 16/8;
  }
}

.hero-strip {
  margin-top: clamp(42px, 6vw, 70px);
  border-top: 1px solid var(--line);
  padding: 26px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 760px) {
  .hero-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
.stat .n {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.2vw, 34px);
  color: var(--anchor);
  line-height: 1;
}
.stat .l {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 8px;
}

/* ---------- SECTIONS ---------- */
section {
  padding: clamp(54px, 7.5vw, 96px) 0;
}
.sec-head {
  max-width: 60ch;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.sec-head h2 {
  margin: 12px 0 14px;
}
.sec-head p {
  color: var(--ink-soft);
  font-size: 17.5px;
}

/* ---------- RATES ---------- */
.rates {
  background: var(--ground-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ratecards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 980px) {
  .ratecards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 540px) {
  .ratecards {
    grid-template-columns: minmax(0, 1fr);
  }
}
.rate {
  border: 1px solid var(--line);
  background: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  position: relative;
}
.rate.feature {
  background: var(--anchor);
  color: #fff7fb;
  border-color: var(--anchor);
}
.rate.feature h3,
.rate.feature .rname {
  color: #fff;
}
.rate .tag {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--accent);
  color: #1e0013;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 11px;
  font-weight: 500;
}
.rate .rname {
  font-family: var(--f-display);
  font-size: 22px;
  margin-bottom: 4px;
  color: var(--anchor);
}
.rate .rmeta {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.rate.feature .rmeta {
  color: var(--accent-light);
}
.rate .rprice {
  font-family: var(--f-display);
  font-size: 40px;
  line-height: 1;
  margin-bottom: 3px;
  color: var(--anchor);
}
.rate.feature .rprice {
  color: #fff;
}
.rate .rper {
  font-size: 13.5px;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.rate.feature .rper {
  color: #e7afc9;
}
.rate .rdesc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: auto;
}
.rate.feature .rdesc {
  color: #f3cbdd;
}
.rate-note {
  margin-top: 24px;
  font-size: 14.5px;
  color: var(--ink-soft);
  border-left: 2px solid var(--accent);
  padding-left: 16px;
  max-width: 70ch;
}

/* ---------- SIGNATURE: SPEC SHEET (the one dark moment) ---------- */
.spec {
  background: var(--anchor-deep);
  color: #ffeaf3;
}
.spec h2,
.spec h3 {
  color: #fff;
}
.spec .sec-head p {
  color: #e7afc9;
}
.spec .eyebrow {
  color: var(--accent-light);
}
.specbox {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.14);
}
.spectabs {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.spectab {
  flex: 1;
  min-width: 120px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #d8a5bc;
  padding: 17px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.15s;
}
.spectab:last-child {
  border-right: none;
}
.spectab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.spectab[aria-selected="true"] {
  background: var(--accent);
  color: #1e0013;
  font-weight: 500;
}
.specpanel {
  padding: clamp(22px, 3.5vw, 38px);
  display: none;
}
.specpanel.on {
  display: block;
}
.speclist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(20px, 4vw, 52px);
  counter-reset: spec;
}
@media (max-width: 720px) {
  .speclist {
    grid-template-columns: minmax(0, 1fr);
  }
}
.speclist li {
  list-style: none;
  counter-increment: spec;
  font-family: var(--f-mono);
  font-size: 13.5px;
  line-height: 1.5;
  padding: 11px 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  display: flex;
  gap: 14px;
  color: #ffeaf3;
}
.speclist li::before {
  content: counter(spec, decimal-leading-zero);
  color: var(--accent-light);
  flex: none;
  font-size: 11px;
  padding-top: 2px;
}
.spec-foot {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.spec-foot p {
  font-size: 15px;
  color: #e7afc9;
  max-width: 52ch;
}

/* ---------- COVERAGE ---------- */
.cover {
  background: var(--ground);
}
.towngrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 900px) {
  .towngrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.town {
  background: #fff;
  padding: 22px 20px;
}
.town .tn {
  font-family: var(--f-display);
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--anchor);
}
.town .tz {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.cover-note {
  margin-top: 26px;
  font-size: 15.5px;
  color: var(--ink-soft);
  max-width: 70ch;
}

/* ---------- PROOF ---------- */
.proof {
  background: var(--ground-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 900px) {
  .reviews {
    grid-template-columns: minmax(0, 1fr);
  }
}
.review {
  border: 1px solid var(--line);
  padding: 28px 26px;
  background: #fff;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
}
.review h3 {
  margin-bottom: 4px;
}
.review-source {
  margin-bottom: 14px;
  color: var(--ink-mute);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.slot {
  color: #b8879d;
  font-style: italic;
  background: var(--ground-2);
  border: 1px dashed #e7afc9;
  padding: 16px;
  border-radius: 2px;
  min-height: 96px;
}
.slot-s {
  color: #c394a9 !important;
}
.stars {
  color: var(--accent);
  letter-spacing: 0.15em;
  font-size: 15px;
  margin-bottom: 14px;
}
.review p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.review .who {
  margin-top: auto;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.ratingbar {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  flex-wrap: wrap;
  background: var(--anchor);
  color: #fff7fb;
  padding: 28px clamp(22px, 3vw, 34px);
  margin-bottom: 30px;
  border-radius: 2px;
}
.ratingbar .big {
  font-family: var(--f-display);
  font-size: 46px;
  line-height: 1;
  color: var(--accent-light);
}
.ratingbar .rating-stars {
  color: var(--accent-light);
  font-family: var(--f-body);
  font-size: clamp(25px, 4vw, 34px);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.ratingbar .txt {
  font-size: 15.5px;
  color: #f3cbdd;
  max-width: 44ch;
}
.hero-review-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--anchor);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.hero-review-link:hover,
.hero-review-link:focus-visible {
  text-decoration: underline;
}
.hero-review-stars {
  color: var(--accent);
  letter-spacing: 0.08em;
}
.qreview {
  margin-top: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  background: #fff;
}
.qreview .stars {
  margin-bottom: 8px;
}
.qreview blockquote {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--f-display);
  font-size: 18px;
  line-height: 1.45;
}
.qreview cite {
  color: var(--ink-mute);
  font-family: var(--f-mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ---------- TEAM ---------- */
.team {
  background: var(--ground);
}
.teamgrid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}
@media (max-width: 860px) {
  .teamgrid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.ph {
  background: var(--ground-2);
  border: 1px dashed #e7afc9;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  padding: 20px;
  text-transform: uppercase;
  line-height: 1.7;
}
.team p {
  margin-bottom: 14px;
  color: var(--ink-soft);
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--ground-2);
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
summary {
  cursor: pointer;
  list-style: none;
  padding: 21px 44px 21px 0;
  position: relative;
  font-family: var(--f-display);
  font-size: 20.5px;
  line-height: 1.35;
  color: var(--anchor);
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 19px;
  font-family: var(--f-body);
  font-size: 27px;
  color: var(--accent);
  font-weight: 300;
  line-height: 1;
}
details[open] summary::after {
  content: "–";
}
details p {
  padding: 0 44px 24px 0;
  color: var(--ink-soft);
  font-size: 16.5px;
}

/* ---------- FORM (dark anchor at the conversion point) ---------- */
.quote {
  background: var(--anchor);
}
.quote h2 {
  color: #fff;
}
.quote .sec-head p {
  color: #f2c9dc;
}
.quote .eyebrow {
  color: var(--accent-light);
}
.qgrid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}
@media (max-width: 900px) {
  .qgrid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.qside .qitem {
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.qside .qitem:last-child {
  border-bottom: none;
}
.qside .ql {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 5px;
}
.qside .qv {
  font-size: 16px;
  color: #ffeaf3;
}
.qside .qv a {
  color: #fff;
  font-weight: 600;
}

.formcard {
  background: #fff;
  color: var(--ink);
  padding: clamp(24px, 3.4vw, 40px);
  border-radius: 3px;
  border-top: 4px solid var(--accent);
}
.frow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}
@media (max-width: 600px) {
  .frow {
    grid-template-columns: minmax(0, 1fr);
  }
}
.field {
  margin-bottom: 15px;
}
.field label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
  font-weight: 500;
}
.field .req {
  color: var(--err);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--ink);
  padding: 14px;
  border: 1.5px solid #e7afc9;
  border-radius: 2px;
  background: #fff;
}
.field textarea {
  min-height: 88px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--anchor);
  outline: none;
  box-shadow: 0 0 0 3px rgba(221, 45, 123, 0.16);
}
.field .err {
  color: var(--err);
  font-size: 13.5px;
  margin-top: 5px;
  display: none;
}
.field.invalid input,
.field.invalid select {
  border-color: var(--err);
}
.field.invalid .err {
  display: block;
}
.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 18px 0 6px;
}
.consent input {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 3px;
  accent-color: var(--anchor);
}
.consent label {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-mute);
  font-family: var(--f-body);
  letter-spacing: 0;
  text-transform: none;
}
.consent a {
  color: var(--anchor);
  font-weight: 600;
}
.formcard .btn {
  width: 100%;
  margin-top: 16px;
  padding: 19px;
  font-size: 17px;
}
.formfoot {
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-mute);
  margin-top: 14px;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--anchor-deep);
  color: #d9a9bf;
  padding: clamp(42px, 5vw, 62px) 0 28px;
  font-size: 14.5px;
}
.fgrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
@media (max-width: 800px) {
  .fgrid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
footer h4 {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
  font-weight: 500;
}
footer a {
  color: #f3cbdd;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
  text-decoration: underline;
}
footer ul {
  list-style: none;
}
footer li {
  margin-bottom: 7px;
}
.fbrand {
  font-family: var(--f-display);
  font-size: 23px;
  color: #fff;
  margin-bottom: 10px;
}
.fbot {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

/* ---------- MOBILE STICKY BAR ---------- */
.stickybar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 9px 12px;
  gap: 9px;
  box-shadow: 0 -6px 24px -10px rgba(0, 0, 0, 0.22);
}
.stickybar .btn {
  flex: 1;
  padding: 15px 10px;
  font-size: 15px;
}
@media (max-width: 760px) {
  .stickybar {
    display: flex;
  }
  body {
    padding-bottom: 76px;
  }
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  position: fixed;
  z-index: 200;
  background: var(--accent);
  color: #1e0013;
  padding: 12px 18px;
  border-radius: 2px;
}

/* Brand and functional integrations; the received layout remains unchanged. */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.brand-copy {
  display: block;
  font-family: var(--f-display) !important;
  font-size: 21px !important;
  letter-spacing: -0.015em !important;
  color: var(--anchor) !important;
  text-transform: none !important;
  margin: 0 !important;
}
.brand-copy small {
  display: block;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 500;
}
.hero-photo {
  margin-top: 16px;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 2px;
}
.team-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 25%;
  border: 1px solid var(--line);
  border-radius: 2px;
}
.zipresult a {
  font-weight: 700;
}
.field.invalid textarea,
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--err);
}
.field.is-invalid .err {
  display: block;
}
.form-status.is-error {
  color: var(--err);
  font-weight: 600;
}
.formcard button[disabled] {
  opacity: 0.68;
  cursor: wait;
}
.btn-header {
  padding: 13px 22px;
  font-size: 15px;
}
.section-flush-bottom {
  padding-bottom: 0 !important;
}
.rating-strong {
  color: #fff;
}
.rating-cta {
  margin-left: auto;
}
.team-title {
  margin: 12px 0 18px;
}
.team-cta {
  margin-top: 12px;
}
.honeypot {
  position: absolute;
  left: -9999px;
}
@media (max-width: 760px) {
  .brand-logo {
    width: 42px;
    height: 42px;
  }
  .brand-copy {
    font-size: 18px !important;
  }
}
.hero-photo {
  display: none !important;
}
