:root {
  --brand-primary: #241c17;
  --brand-secondary: #5b4b3d;
  --brand-accent: #b8894d;
  --bg: #ffffff;
  --bg-alt: #f6f2ec;
  --surface: #ffffff;
  --text: #1f2933;
  --text-muted: #5c6670;
  --border: #e7ded3;
  --cta: #9a642d;
  --cta-hover: #7f4f22;
  --cta-text: #ffffff;
  --ppc-form-bg: #111827;
  --ppc-form-bg-alt: #182231;
  --ppc-form-text: #ffffff;
  --ppc-form-muted: rgba(255,255,255,.76);
  --ppc-form-border: rgba(255,255,255,.16);
  --shadow: 0 18px 50px rgba(31,41,51,.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
svg { width: 1.05em; height: 1.05em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 760px; }
.skip-link { position: absolute; left: -999px; top: 12px; z-index: 20; background: #fff; color: var(--text); padding: 10px 14px; border-radius: 6px; }
.skip-link:focus { left: 12px; }
.top-strip {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 28px;
  background: var(--brand-primary);
  color: #fff;
  font-size: .88rem;
}
.top-strip a { text-decoration: none; }
.nav-wrap,
.ppc-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 28px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 15;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; min-width: 0; }
.brand img { width: 180px; height: auto; max-height: 62px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 20px; }
.site-nav a { text-decoration: none; color: var(--text-muted); font-weight: 700; font-size: .94rem; }
.site-nav a.active,
.site-nav a:hover { color: var(--brand-primary); }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  color: var(--brand-primary);
  white-space: nowrap;
}
.icon-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 6px;
  cursor: pointer;
}
.menu-toggle { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hero,
.inner-hero,
.ppc-hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.inner-hero { min-height: 430px; }
.hero-bg,
.ppc-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay,
.ppc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21,25,30,.86), rgba(21,25,30,.58), rgba(21,25,30,.24));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 72px 0;
}
.hero-content.compact { max-width: 800px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-accent);
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero h1,
.inner-hero h1,
.ppc-hero h1 {
  margin: 0 0 18px;
  font-size: 3.55rem;
  line-height: 1.04;
  letter-spacing: 0;
}
.inner-hero h1 { font-size: 2.75rem; }
.hero p,
.inner-hero p,
.ppc-copy p {
  margin: 0 0 24px;
  font-size: 1.12rem;
  max-width: 680px;
}
.hero-actions,
.ppc-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn-primary { background: var(--cta); color: var(--cta-text); }
.btn-primary:hover { background: var(--cta-hover); }
.btn-light { background: #fff; color: var(--brand-primary); }
.btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.text-link,
.text-call {
  font-weight: 900;
  color: var(--cta);
  text-decoration: none;
}
.text-call.light { color: #fff; }
.trust-strip { background: var(--brand-secondary); color: #fff; }
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}
.trust-strip span {
  padding: 18px 14px;
  text-align: center;
  font-weight: 800;
  background: rgba(255,255,255,.06);
}
.section { padding: 74px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: #16212e; color: #fff; }
.section-heading { max-width: 820px; margin-bottom: 30px; }
.section-heading h2,
.split-section h2,
.cta-inner h2,
.legal-section h2,
.contact-grid h2 {
  margin: 0 0 14px;
  font-size: 2.2rem;
  line-height: 1.12;
  letter-spacing: 0;
}
.section-heading p,
.split-section p,
.service-detail p,
.legal-section p,
.contact-grid p {
  color: var(--text-muted);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card,
.market-card,
.proof-panel,
.process-step,
.feature-panel,
.contact-form-card,
.ppc-form-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.service-card { overflow: hidden; }
.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.service-card h3,
.market-card h2,
.process-step h3,
.feature-row h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}
.service-card h3,
.service-card p,
.service-card a { margin-left: 18px; margin-right: 18px; }
.service-card h3 { margin-top: 18px; }
.service-card p { color: var(--text-muted); min-height: 126px; }
.service-card a { display: inline-flex; margin-bottom: 18px; }
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: 44px;
  align-items: center;
}
.image-feature img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.feature-panel { padding: 18px; display: grid; gap: 14px; }
.feature-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}
.feature-row svg { color: var(--brand-secondary); margin-top: 2px; }
.feature-row p { margin: 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.process-step { padding: 24px; }
.process-step span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--brand-accent);
  font-weight: 900;
  font-size: 1.3rem;
}
.process-step p { color: var(--text-muted); margin: 0; }
.cta-band { background: var(--brand-primary); color: #fff; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-inner p { color: rgba(255,255,255,.78); }
.detail-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 34px;
  align-items: start;
}
.check-list,
.contact-list,
.site-footer ul {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}
.check-list li,
.contact-list a,
.contact-list p {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 10px 0;
}
.check-list svg,
.contact-list svg { color: var(--brand-secondary); flex: 0 0 auto; }
.proof-panel { padding: 24px; }
.market-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.market-card { padding: 20px; }
.market-card p { color: var(--text-muted); margin-bottom: 0; }
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-list article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}
.faq-list h2 { margin: 0 0 8px; font-size: 1.25rem; }
.faq-list p { color: var(--text-muted); margin: 0; }
.contact-form-card,
.ppc-form-card {
  padding: 24px;
  background: var(--ppc-form-bg);
  color: var(--ppc-form-text);
  border-color: var(--ppc-form-border);
}
.contact-form-card p,
.ppc-form-card p { color: var(--ppc-form-muted); }
.form-embed-wrap {
  min-height: 500px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ppc-form-bg-alt);
  border: 1px solid var(--ppc-form-border);
}
.contact-form-card .form-embed-wrap { min-height: 640px; }
.form-embed-placeholder {
  min-height: inherit;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
  color: var(--ppc-form-text);
}
.form-embed-placeholder span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
}
.form-embed-placeholder span:nth-child(2) { width: 72%; }
.scheduler-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--ppc-form-border);
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 12px;
  margin: 16px 0;
}
.scheduler-option p { margin: 0; font-size: .92rem; }
.mini-button {
  border: 1px solid rgba(255,255,255,.24);
  background: #fff;
  color: var(--brand-primary);
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}
.form-choice-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  color: var(--ppc-form-muted);
  font-size: .86rem;
}
.form-choice-divider:before,
.form-choice-divider:after {
  content: "";
  height: 1px;
  background: var(--ppc-form-border);
  flex: 1;
}
.legal-page { padding: 54px 0; }
.legal-section {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.legal-section p { max-width: 860px; }
.sitemap-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.sitemap-list a {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}
.site-footer { background: #111827; color: #fff; padding: 54px 0 22px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
}
.site-footer h2 { font-size: 1rem; margin: 0 0 12px; }
.site-footer p,
.site-footer a { color: rgba(255,255,255,.76); }
.site-footer a { text-decoration: none; }
.footer-brand img { filter: brightness(0) invert(1); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.ppc-header { position: fixed; width: 100%; background: rgba(17,24,39,.88); border-bottom-color: rgba(255,255,255,.12); }
.ppc-brand img { filter: brightness(0) invert(1); }
.ppc-header .nav-phone { color: #fff; }
.ppc-hero {
  min-height: 760px;
  padding-top: 86px;
}
.ppc-hero-overlay {
  background: linear-gradient(90deg, rgba(12,18,29,.92), rgba(12,18,29,.70), rgba(12,18,29,.36));
}
.ppc-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 34px;
  align-items: center;
  padding: 70px 0;
}
.ppc-copy h1 { font-size: 3.15rem; }
.ppc-bullets {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.ppc-bullets li { display: flex; gap: 10px; align-items: center; font-weight: 800; }
.ppc-bullets svg { color: var(--brand-accent); flex: 0 0 auto; }
.ppc-form-card { box-shadow: 0 26px 80px rgba(0,0,0,.35); }
.ppc-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.ppc-trust article {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.ppc-trust strong,
.ppc-trust span { display: block; }
.ppc-trust span { color: var(--text-muted); margin-top: 5px; }
.section-dark .eyebrow { color: #d6b27c; }
.section-dark p { color: rgba(255,255,255,.78); }
.ppc-footer { background: #0b1220; color: rgba(255,255,255,.78); padding: 22px 0; }
.ppc-footer-inner { display: flex; gap: 18px; align-items: center; justify-content: center; flex-wrap: wrap; }
.ppc-footer a { text-decoration: none; }
.booking-modal[hidden] { display: none; }
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
}
.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8,13,22,.72);
}
.booking-modal-dialog {
  position: relative;
  width: min(900px, 100%);
  max-height: min(92vh, 980px);
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 24px 90px rgba(0,0,0,.32);
}
.booking-modal-close { position: absolute; top: 14px; right: 14px; }
.calendar-embed-wrap { min-height: 560px; background: var(--ppc-form-bg); border-radius: 8px; overflow: hidden; }
@media (max-width: 1060px) {
  .cards-grid,
  .market-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ppc-hero-grid { grid-template-columns: 1fr; padding-top: 50px; }
  .ppc-form-card { max-width: 620px; }
}
@media (max-width: 820px) {
  .top-strip { display: none; }
  .nav-wrap { position: sticky; top: 0; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    padding: 16px 28px 22px;
    background: #fff;
    border-bottom: 1px solid var(--border);
  }
  .site-nav[data-open] { display: grid; }
  .site-nav a { padding: 9px 0; }
  .hero h1,
  .ppc-copy h1 { font-size: 2.45rem; }
  .inner-hero h1 { font-size: 2.15rem; }
  .hero,
  .ppc-hero { min-height: auto; }
  .hero-content,
  .ppc-hero-grid { padding: 120px 0 54px; }
  .inner-hero .hero-content { padding: 92px 0 54px; }
  .trust-strip .container,
  .process-grid,
  .ppc-trust,
  .footer-grid,
  .split-section,
  .detail-grid,
  .contact-grid,
  .sitemap-list {
    grid-template-columns: 1fr;
  }
  .cta-inner,
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav-wrap,
  .ppc-header { padding: 10px 14px; }
  .brand img { width: 142px; }
  .nav-phone span { display: none; }
  .hero h1,
  .ppc-copy h1 { font-size: 2.05rem; }
  .section-heading h2,
  .split-section h2,
  .cta-inner h2,
  .contact-grid h2 { font-size: 1.7rem; }
  .cards-grid,
  .market-grid { grid-template-columns: 1fr; }
  .scheduler-option { display: grid; }
  .form-embed-wrap { min-height: 480px; }
  .contact-form-card .form-embed-wrap { min-height: 560px; }
}
