/* Colonial Heart — shared PPC landing + thank-you styles */
/* Visual polish ported from AIDesigner runs d512f36e → 40d345da (2026-04-15). */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #C0392B;
  --red-hover: #A93226;
  --red-bg: #FEF0EE;
  --red-border: #F5C6C1;
  --ink: #0F172A;
  --body: #374151;
  --muted: #9CA3AF;
  --border: #E5E7EB;
  --surface: #F9FAFB;
  --white: #fff;
  --shadow-form: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-form-rest: 0 8px 30px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-rev: inset 0 1px 0 0 rgba(255, 255, 255, 1), 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-rev-hover: inset 0 1px 0 0 rgba(255, 255, 255, 1), 0 8px 30px rgba(0, 0, 0, 0.07), 0 4px 10px rgba(0, 0, 0, 0.03);
}
html { scroll-behavior: smooth; }
body {
  font-family: Manrope, system-ui, sans-serif;
  background: var(--white);
  color: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Site header — matches colonial-heart index.html nav (PPC + thank-you) */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo {
  height: 64px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
}
.nav-links a:hover {
  background: var(--surface);
  color: var(--ink);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-phone svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.nav-phone:hover { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-hover); }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger svg {
  width: 22px;
  height: 22px;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 20px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .m-cta {
  background: var(--red);
  color: #fff;
  padding: 12px 20px;
  border-radius: 7px;
  text-align: center;
  margin-top: 8px;
  border-bottom: none;
}
/* PPC + thank-you only use this stylesheet — mobile header shows logo, phone, Book, and text nav (no hamburger-only). */
@media (max-width: 820px) {
  .hamburger {
    display: none !important;
  }
  .mobile-nav {
    display: none !important;
  }
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    height: auto;
    min-height: 0;
    padding: 10px 16px 12px;
    column-gap: 10px;
    row-gap: 6px;
    align-items: center;
  }
  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }
  .nav-actions {
    display: flex !important;
    grid-column: 2;
    grid-row: 1;
    gap: 8px;
    flex-shrink: 0;
  }
  .nav-links {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2px 4px;
    grid-column: 1 / -1;
    grid-row: 2;
    border-top: 1px solid var(--border);
    padding-top: 8px;
    margin-top: 2px;
    width: 100%;
  }
  .nav-links a {
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
  }
  .nav-phone {
    font-size: 12px;
    gap: 4px;
  }
  .nav-phone svg {
    width: 11px;
    height: 11px;
  }
  .nav-cta {
    padding: 8px 14px;
    font-size: 12px;
  }
  .brand-logo {
    height: 48px;
  }
}

/* Hero */
.lp-hero {
  background: var(--white);
  padding: 48px 24px 56px;
}
@media (min-width: 900px) {
  .lp-hero {
    padding: 56px 24px 64px;
  }
}
.lp-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 380px);
  gap: 28px 48px;
  align-items: start;
}
.lp-hero-left-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
}
.lp-hero-inner > .lp-form-sticky-wrap {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}
.lp-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-bg);
  border: 1px solid var(--red-border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  max-width: 100%;
}
.lp-h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.lp-lead {
  font-size: clamp(17px, 1.85vw, 19px);
  color: var(--body);
  max-width: 560px;
  margin-bottom: 24px;
  line-height: 1.65;
  font-weight: 500;
}
.lp-bullets {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
  color: var(--body);
}
.lp-bullets li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}
.lp-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(192, 57, 43, 0.1);
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.phone-block {
  margin-bottom: 0;
  margin-top: 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.phone-anchor {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}
.phone-anchor svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.phone-anchor:hover { color: var(--red); }
.phone-tagline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--body);
  margin-top: 10px;
  line-height: 1.45;
  max-width: 420px;
}
.phone-tagline strong {
  font-size: clamp(17px, 2.4vw, 20px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.phone-tagline-sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  line-height: 1.4;
}

/* Sticky form column (desktop) */
.lp-form-sticky-wrap {
  position: relative;
  align-self: start;
}
@media (min-width: 861px) {
  .lp-form-sticky-wrap .appt-form {
    position: sticky;
    top: 88px;
    box-shadow: var(--shadow-form);
  }
}

/* Form */
.appt-form {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 28px 28px;
  box-shadow: var(--shadow-form-rest);
  transition: box-shadow 0.25s ease;
}
.appt-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  border-radius: 12px 12px 0 0;
}
.form-hd {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.form-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.5;
}
.fg { margin-bottom: 16px; }
label.fl {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.req { color: var(--red); }
input[type="text"],
input[type="tel"],
input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  outline: none;
  background: var(--surface);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus {
  background: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.1);
}
.btn-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 6px;
  box-shadow: 0 2px 8px rgba(192, 57, 43, 0.22);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}
.btn-submit:hover {
  background: var(--red-hover);
  box-shadow: 0 4px 14px rgba(192, 57, 43, 0.28);
}
.btn-submit:active {
  transform: translateY(1px);
}
/* Trust strip (optional; many PPC pages omit when bullets repeat) */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}
@media (min-width: 900px) {
  .trust-strip {
    padding: 22px 24px;
  }
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--body);
  padding: 6px 16px;
}
.trust-item + .trust-item { border-left: 1px solid var(--border); }
.trust-check { color: var(--red); }
@media (max-width: 640px) {
  .trust-item + .trust-item { border-left: none; }
  .trust-inner { flex-direction: column; text-align: center; }
}

/* Reviews — tight rhythm; single column below 960px to avoid 2+1 orphan cards (AIDesigner ref d16dd293). */
.reviews { padding: 40px 0 56px; }
.section-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
h2.section-h {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.rev-header .section-h::after,
.rev-top-text .section-h::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-top: 10px;
}
.rev-intro {
  font-size: 15px;
  color: var(--body);
  max-width: 36rem;
  margin-bottom: 0;
  line-height: 1.55;
}
.rev-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 168px);
  gap: 16px 22px;
  align-items: center;
  margin-bottom: 18px;
}
.rev-top-text {
  min-width: 0;
}
.rev-inline-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: 10px;
}
.rev-top .rev-intro {
  margin-top: 16px;
  margin-bottom: 0;
}
.rev-top-photo {
  text-align: center;
}
.rev-top-photo img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.rev-photo-caption {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}
.rev-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.rev-stars-large { color: #f59e0b; font-size: 20px; }
.rev-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.rev-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: var(--shadow-rev);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.rev-card:hover {
  box-shadow: var(--shadow-rev-hover);
}
.rev-card-stars { color: #f59e0b; font-size: 13px; margin-bottom: 10px; }
.rev-card-text {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
  flex: 1;
}
.rev-card-meta { font-size: 12px; color: var(--muted); font-weight: 600; }
@media (max-width: 959px) {
  .rev-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .lp-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .lp-hero-left-col {
    display: contents;
  }
  .lp-hero-main {
    order: 1;
  }
  .lp-hero-inner > .lp-form-sticky-wrap {
    order: 2;
    align-self: stretch;
  }
  /* Stack sits under full-width form: center as a block (text-align is not enough for inline-flex). */
  .lp-hero-phone {
    order: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
  }
  .lp-hero-phone .phone-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 420px;
  }
  .lp-hero-phone .phone-anchor {
    justify-content: center;
  }
  .lp-hero-phone .phone-tagline {
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    text-align: center;
  }
  .lp-form-sticky-wrap .appt-form {
    position: static;
    box-shadow: var(--shadow-form-rest);
  }
}
@media (max-width: 720px) {
  .rev-top {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 16px;
  }
  .rev-top-photo {
    order: -1;
    justify-self: center;
  }
  .rev-top-photo img {
    max-width: 200px;
  }
  .rev-top-text {
    text-align: center;
  }
  .rev-top-text .section-h::after {
    margin-left: auto;
    margin-right: auto;
  }
  .rev-inline-meta {
    justify-content: center;
  }
  .rev-top .rev-intro {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/* =====================================================
   PPC-specific header: logo + phone only, no nav links, no Book Appointment
   ===================================================== */
.ppc-page .nav-links,
.ppc-page .nav-cta,
.ppc-page .hamburger,
.ppc-page .mobile-nav {
  display: none !important;
}
.ppc-page .header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.ppc-page .nav-actions {
  display: flex !important;
  align-items: center;
  gap: 0;
}
.ppc-page .nav-phone {
  font-size: 15px;
  font-weight: 800;
}

/* =====================================================
   Services module (PPC pages — non-linkable)
   ===================================================== */
.ppc-services {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 52px 0 60px;
}
.ppc-services .section-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.ppc-services-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  text-align: center;
}
.ppc-services-h {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  text-align: center;
}
.ppc-services-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.ppc-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ppc-service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ppc-service-card-icon {
  width: 36px;
  height: 36px;
  background: var(--red-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.ppc-service-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ppc-service-card-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.ppc-service-card-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 860px) {
  .ppc-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .ppc-services-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ppc-service-card { padding: 14px 12px; }
}

/* =====================================================
   Sticky bottom CTA bar (PPC pages)
   ===================================================== */
.ppc-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--ink);
  border-top: 2px solid var(--red);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-wrap: wrap;
}
.ppc-sticky-cta.visible {
  transform: translateY(0);
}
.ppc-sticky-cta-label {
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
  white-space: nowrap;
}
.ppc-sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.ppc-sticky-cta-btn:hover { background: var(--red-hover); }
.ppc-sticky-cta-btn svg {
  width: 15px; height: 15px;
  fill: none; stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
@media (max-width: 520px) {
  .ppc-sticky-cta { padding: 12px 16px; gap: 10px; }
  .ppc-sticky-cta-label { font-size: 12px; }
  .ppc-sticky-cta-btn { font-size: 13px; padding: 9px 18px; }
}

/* =====================================================
   Hero → Reviews gap fix
   ===================================================== */
.lp-hero {
  padding-bottom: 0;
  margin-bottom: 0;
}
.ppc-page .reviews {
  padding-top: 48px;
}

/* Footer */
.lp-foot {
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  font-size: 12px;
  color: #64748b;
}
.lp-foot a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}
.lp-foot a:hover { text-decoration: underline; }

/* Thank-you main */
.ty-main {
  max-width: 520px;
  margin: 0 auto;
  padding: 32px 24px 36px;
  text-align: center;
}
.ty-main h1 {
  font-size: clamp(24px, 3.6vw, 32px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.ty-lead {
  color: var(--body);
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
  font-size: 16px;
}
.ty-tagline-block {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.ty-tagline-block .phone-tagline {
  margin: 0 auto;
  max-width: 420px;
  align-items: center;
  text-align: center;
}
.ty-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 0;
}
.ty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.ty-btn-primary {
  background: var(--red);
  color: #fff;
}
.ty-btn-primary:hover { background: var(--red-hover); }
.ty-btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.ty-btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
}
.ty-reviews-wrap { text-align: left; }
.ty-reviews-wrap .reviews { padding-top: 24px; }
