/* ================================================================
   OFP — Local Business Landing Page Styles
   File: assets/css/local.css
   Depends on: assets/css/main.css (loaded as ofp-main)
   Brand tokens inherited from main.css :root
   ================================================================ */

/* ── Hide the site header + mobile nav on this page ─────────────── */
body.page-template-page-local #hdr,
body.page-template-page-local .mob-nav,
body.page-template-page-local .cur,
body.page-template-page-local .cdot {
  display: none !important;
}
body.page-template-page-local {
  cursor: auto !important;
}

/* ── Page wrapper ────────────────────────────────────────────────── */
.lp-page {
  overflow-x: hidden;
}

/* ================================================================
   TOP BAR (logo-only strip)
================================================================ */
.lp-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 clamp(20px, 5vw, 60px);
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.lp-logo-mark {
  color: var(--gold);
  flex: 0 0 auto;
}

.lp-logo-nm {
  display: block;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}

.lp-logo-sb {
  display: block;
  font-family: var(--fh);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  line-height: 1;
}

/* ================================================================
   SHARED UTILITIES
================================================================ */
.lp-eyebrow,
.lp-offer-eyebrow,
.lp-apply-eyebrow,
.lp-fit-col-label {
  font-family: var(--fh);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.lp-section-hed {
  font-family: var(--fh);
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.12;
  color: var(--char);
  margin-bottom: 32px;
}

.lp-br-desk { display: inline; }

/* ================================================================
   SECTION 1 — HERO
================================================================ */
.lp-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--char);
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  background: #0f1113;
  overflow: hidden;
}

.lp-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .55;
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,12,14,.85) 0%,
    rgba(10,12,14,.6) 60%,
    rgba(10,12,14,.8) 100%
  );
}

.lp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 100px clamp(20px, 6vw, 80px) 80px;
}

.lp-hero-eyebrow {
  display: inline-block;
  font-family: var(--fh);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  margin-bottom: 18px;
}

.lp-hero-h1 {
  font-family: var(--fh);
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.06;
  color: var(--white);
  margin: 12px 0 22px;
}

.lp-hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.lp-hero-sub {
  font-family: var(--fb);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255,255,255,.82);
  max-width: 600px;
  margin-bottom: 10px;
}

.lp-hero-support {
  font-family: var(--fh);
  font-size: .78rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.45);
  margin-bottom: 36px;
}

.lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 28px;
  border-radius: 2px;
  text-decoration: none;
  font-family: var(--fh);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .3s ease;
}

.lp-btn-primary {
  background: var(--rust);
  color: var(--white);
  border: none;
}

.lp-btn-primary:hover {
  background: var(--gold);
  color: var(--char);
}

.lp-btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
}

.lp-btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 767px) {
  .lp-hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    align-items: center;
  }

  .lp-hero-content {
    padding: 120px 20px 72px;
    width: 100%;
    box-sizing: border-box;
  }

  .lp-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-btn {
    width: 100%;
  }
}

/* ── Primary CTA button ──────────────────────────────────────────── */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--rust);
  border: none;
  border-radius: 2px;
  padding: 16px 32px;
  overflow: hidden;
  position: relative;
  transition: color .3s;
  cursor: pointer;
}

.lp-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .45s var(--ex);
}

.lp-btn-primary span {
  position: relative;
  z-index: 1;
}

.lp-btn-primary:hover {
  color: var(--char);
}

.lp-btn-primary:hover::after {
  transform: translateY(0);
}

/* ================================================================
   SECTION 2 — THE PROBLEM
================================================================ */
.lp-problem {
  background: var(--sand-l);
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 80px);
}

.lp-problem-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.lp-problem-inner .lp-section-hed {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  margin-bottom: 40px;
}

.lp-problem-copy p {
  font-family: var(--fb);
  font-size: clamp(.95rem, 2vw, 1.1rem);
  line-height: 1.75;
  color: var(--stone);
  margin-bottom: 20px;
}

.lp-problem-copy strong {
  color: var(--char);
}

.lp-problem-close {
  margin-top: 32px;
}

.lp-problem-close strong {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--rust) !important;
}

/* ================================================================
   SECTION 3 — THE OFFER
================================================================ */
.lp-offer {
  background: var(--char);
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 80px);
}

.lp-offer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.lp-offer-eyebrow {
  margin-bottom: 12px;
}

.lp-offer-hed {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 56px;
}

.lp-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: 56px;
  text-align: left;
}

.lp-offer-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  padding: clamp(28px, 3vw, 40px);
  transition: border-color .3s, background .3s;
}

.lp-offer-card:hover {
  border-color: rgba(201,164,108,.3);
  background: rgba(255,255,255,.06);
}

.lp-offer-icon {
  color: var(--gold);
  margin-bottom: 20px;
}

.lp-offer-card-title {
  font-family: var(--fh);
  font-size: clamp(.9rem, 1.8vw, 1.05rem);
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 12px;
}

.lp-offer-card-body {
  font-family: var(--fb);
  font-size: .88rem;
  line-height: 1.72;
  color: rgba(255,255,255,.55);
}

.lp-offer-price {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 48px;
}

.lp-offer-price p {
  font-family: var(--fb);
  font-size: clamp(.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
}

.lp-offer-price strong {
  color: var(--white);
}

/* ================================================================
   SECTION 4 — WHO THIS IS FOR
================================================================ */
.lp-fit {
  background: var(--white);
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 80px);
}

.lp-fit-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.lp-fit-hed {
  text-align: center;
  margin-bottom: 56px;
}

.lp-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
}

.lp-fit-col {
  border-radius: 4px;
  padding: clamp(28px, 3vw, 40px);
}

.lp-fit-yes {
  background: rgba(47, 66, 54, .06);
  border: 1px solid rgba(47, 66, 54, .12);
}

.lp-fit-no {
  background: rgba(90, 90, 90, .04);
  border: 1px solid rgba(90, 90, 90, .1);
}

.lp-fit-col-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .58rem;
}

.lp-fit-yes .lp-fit-col-label {
  color: var(--green);
}

.lp-fit-yes .lp-fit-col-label svg {
  stroke: var(--green);
}

.lp-fit-no .lp-fit-col-label {
  color: var(--stl);
}

.lp-fit-no .lp-fit-col-label svg {
  stroke: var(--stl);
}

.lp-fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-fit-list li {
  font-family: var(--fb);
  font-size: .9rem;
  line-height: 1.65;
  color: var(--char);
  padding: 9px 0;
  border-bottom: 1px solid rgba(26,28,30,.06);
  display: flex;
  gap: 10px;
}

.lp-fit-list li::before {
  content: '✓';
  font-family: var(--fh);
  font-size: .75rem;
  font-weight: 700;
  color: var(--green);
  flex: 0 0 auto;
  margin-top: 1px;
}

.lp-fit-list li:last-child {
  border-bottom: none;
}

.lp-fit-list-no li {
  color: var(--stone);
}

.lp-fit-list-no li::before {
  content: '×';
  color: var(--stl);
}

/* ================================================================
   SECTION 5 — PROOF / CREDIBILITY
================================================================ */
.lp-proof {
  background: #111417;
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 80px);
}

.lp-proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.lp-proof-hed {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -.025em;
  color: var(--white);
  margin-bottom: 48px;
  text-align: center;
}

/* Portfolio grid */
.lp-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
  margin-bottom: 56px;
}

/* Portfolio items are now <button> elements */
.lp-portfolio-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.lp-portfolio-thumb {
  aspect-ratio: 16 / 9;
  border-radius: 3px;
  overflow: hidden;
  background: #1a1c1e;
  position: relative;
}

.lp-portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ex), opacity .3s;
}

.lp-portfolio-item:hover .lp-portfolio-thumb img {
  transform: scale(1.04);
  opacity: .85;
}

/* Play button overlay */
.lp-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,12,14,.3);
  transition: background .25s;
}

.lp-play-btn svg {
  width: 48px;
  height: 48px;
  color: var(--white);
  background: rgba(201,164,108,.2);
  border-radius: 50%;
  padding: 14px;
  box-sizing: content-box;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.5));
  transition: transform .25s var(--ex), color .25s, background .25s;
}

.lp-portfolio-item:hover .lp-play-btn {
  background: rgba(10,12,14,.12);
}

.lp-portfolio-item:hover .lp-play-btn svg {
  transform: scale(1.1);
  color: var(--gold);
  background: rgba(201,164,108,.3);
}

.lp-portfolio-caption {
  font-family: var(--fh);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

/* ── Lightbox modal ──────────────────────────────────────────────── */
.lp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}

.lp-lightbox[hidden] { display: none; }

.lp-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,12,14,.94);
  cursor: pointer;
}

.lp-lightbox-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
}

.lp-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.lp-lightbox-close:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.35);
}

.lp-lightbox-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.7);
}

.lp-lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── HoneyBook form wrapper ──────────────────────────────────────── */
.lp-hb-wrap {
  width: 100%;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}

/* Credibility line */
.lp-proof-cred {
  font-family: var(--fb);
  font-size: clamp(.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255,255,255,.45);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 40px;
}

/* Quotes (optional) */
.lp-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.lp-quote {
  background: rgba(255,255,255,.03);
  border-left: 2px solid var(--gold);
  padding: 28px 28px 28px 32px;
  border-radius: 2px;
}

.lp-quote-text {
  font-family: var(--fb);
  font-size: 1.1rem;
  line-height: 1.65;
  font-style: italic;
  color: rgba(255,255,255,.8);
  margin-bottom: 16px;
}

.lp-quote-cite {
  font-family: var(--fh);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ================================================================
   SECTION 6 — ROI MATH
================================================================ */
.lp-roi {
  background: var(--sand-l);
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 80px);
}

.lp-roi-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.lp-roi-inner .lp-section-hed {
  margin-bottom: 40px;
}

.lp-roi-copy {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 48px;
}

.lp-roi-copy p {
  font-family: var(--fb);
  font-size: clamp(.95rem, 2vw, 1.1rem);
  line-height: 1.72;
  color: var(--stone);
}

.lp-roi-copy strong {
  color: var(--char);
}

/* ROI table */
.lp-roi-table-wrap {
  overflow-x: auto;
  border-radius: 4px;
}

.lp-roi-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--fh);
  font-size: .82rem;
  text-align: left;
}

.lp-roi-table th {
  background: var(--char);
  color: rgba(255,255,255,.6);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 18px;
}

.lp-roi-table td {
  padding: 14px 18px;
  color: var(--char);
  border-bottom: 1px solid rgba(26,28,30,.07);
}

.lp-roi-table tr:nth-child(even) td {
  background: rgba(26,28,30,.03);
}

.lp-roi-table tr:last-child td {
  border-bottom: none;
}

/* ================================================================
   SECTION 7 — APPLICATION FORM
================================================================ */
.lp-apply {
  background: #0f1113;
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 80px);
}

.lp-apply-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.lp-apply-eyebrow {
  margin-bottom: 12px;
}

.lp-apply-hed {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -.025em;
  color: var(--white);
  margin-bottom: 16px;
}

.lp-apply-sub {
  font-family: var(--fb);
  font-size: clamp(.9rem, 2vw, 1rem);
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* HoneyBook embed fix */
.lp-hb-wrap {
  position: relative;
  overflow: hidden;
}

.lp-hb-wrap iframe {
  display: block;
  border: none !important;
}

.lp-hb-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24px;
  background: #0f1113;
  pointer-events: none;
  z-index: 10;
}

/* Form */
.lp-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-form-row {
  display: flex;
  gap: 20px;
}

.lp-form-row-2 > .lp-form-group {
  flex: 1 1 0;
  min-width: 0;
}

.lp-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-label {
  font-family: var(--fh);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.lp-label span {
  color: var(--gold);
}

.lp-input {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--fb);
  font-size: .95rem;
  color: var(--white);
  outline: none;
  transition: border-color .25s, background .25s;
  -webkit-appearance: none;
  appearance: none;
}

.lp-input::placeholder {
  color: rgba(255,255,255,.2);
}

.lp-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.08);
}

.lp-select-wrap {
  position: relative;
}

.lp-select {
  cursor: pointer;
  padding-right: 36px;
}

.lp-select option {
  background: #1a1c1e;
  color: var(--white);
}

.lp-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(255,255,255,.35);
}

.lp-textarea {
  resize: vertical;
  min-height: 110px;
}

.lp-form-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 8px;
}

.lp-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--rust);
  border: none;
  border-radius: 2px;
  padding: 18px 44px;
  overflow: hidden;
  position: relative;
  transition: color .3s;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
}

.lp-btn-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .45s var(--ex);
}

.lp-btn-submit span {
  position: relative;
  z-index: 1;
}

.lp-btn-submit:hover {
  color: var(--char);
  cursor: pointer;
}

.lp-btn-submit:hover::after {
  transform: translateY(0);
}

.lp-form-fine {
  font-family: var(--fh);
  font-size: .62rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  text-align: center;
}

/* ================================================================
   SECTION 8 — FOOTER (minimal)
================================================================ */
.lp-footer {
  background: #272b2e;
  padding: clamp(32px, 4vw, 48px) clamp(20px, 6vw, 80px);
  border-top: 1px solid rgba(255,255,255,.06);
}

.lp-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lp-footer-logo {
  color: var(--gold);
  flex: 0 0 auto;
  display: flex;
}

.lp-footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lp-footer-links a {
  font-family: var(--fh);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .2s;
}

.lp-footer-links a:hover {
  color: var(--gold);
}

.lp-footer-copy {
  margin-left: auto;
  font-family: var(--fh);
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
}

/* ================================================================
   SCROLL-REVEAL (matches theme's [data-sr] pattern)
================================================================ */
[data-sr] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ex), transform .75s var(--ex);
}

[data-sr].in {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   MOBILE RESPONSIVE
================================================================ */
@media (max-width: 900px) {
  .lp-offer-grid {
    grid-template-columns: 1fr;
  }
  .lp-fit-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .lp-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-quotes {
    grid-template-columns: 1fr;
  }
  .lp-footer-copy {
    margin-left: 0;
    width: 100%;
  }
  .lp-br-desk { display: none; }
}

@media (max-width: 640px) {
  .lp-topbar { height: 56px; }
  .lp-logo-nm { font-size: 11px; }
  .lp-logo-sb { font-size: 6px; }

  .lp-hero-content {
    padding: 80px 20px 60px;
  }

  .lp-form-row-2 {
    flex-direction: column;
  }

  .lp-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .lp-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .lp-footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .lp-roi-table {
    font-size: .75rem;
  }

  .lp-roi-table th,
  .lp-roi-table td {
    padding: 10px 12px;
  }
}
