:root {
  --primary: #111827;
  --primary-dark: #000000;
  --accent: #f59e0b;
  --surface: #ffffff;
  --surface-alt: #f9fafb;
  --text: #111827;
  --text-muted: #4b5563;
  --border: rgba(0,0,0,0.1);
  --shadow: 0 12px 40px rgba(0,0,0,0.08);
  --radius: 16px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: &#39;Lato&#39;, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}
a { color: var(--primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: &#39;Playfair Display&#39;, serif; line-height: 1.1; margin: 0 0 0.7em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
.container.narrow { max-width: 780px; }
.lead { font-size: 1.15rem; color: var(--text-muted); }
.eyebrow {
  text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.16em;
  color: var(--primary-dark); font-weight: 700;
}
.muted { color: var(--text-muted); }
.muted.small { font-size: 0.85rem; }
.center { text-align: center; }

/* Topbar */
.topbar { background: var(--text); color: #fff; font-size: 0.88rem; }
.topbar-inner { display: flex; justify-content: space-between; padding: 0.45rem 1.25rem; }
.topbar-phone { color: var(--accent); font-weight: 700; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; background: var(--surface);
  border-bottom: 1px solid transparent; transition: box-shadow .2s, border-color .2s;
}
.site-header.is-stuck { box-shadow: var(--shadow); border-color: var(--border); }
.header-inner { display: flex; align-items: center; padding: 1rem 1.25rem; gap: 1rem; }
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 800; font-size: 1.15rem; }
.brand-sub { font-size: 0.78rem; color: var(--text-muted); }
.primary-nav { margin-left: auto; display: flex; gap: 1.5rem; align-items: center; }
.primary-nav a { font-weight: 600; color: var(--text); }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.6rem; margin-left: auto; cursor: pointer; }

/* Hero centered */
.hero-centered {
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at 50% 0%, var(--surface-alt), var(--surface) 70%);
  text-align: center;
}
.hero-centered.slim { padding: 3rem 0 2rem; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-actions.center { justify-content: center; }
.trust-pills {
  display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center;
  list-style: none; padding: 0; margin: 1.8rem 0 0;
}
.trust-pills li {
  background: var(--surface); border: 1px solid var(--border);
  padding: 0.4rem 0.9rem; border-radius: 999px; font-size: 0.88rem; font-weight: 600;
}

.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.75rem 1.3rem; border-radius: 10px;
  font-weight: 700; cursor: pointer; border: 0; font-size: 1rem;
}
.btn.big { padding: 1rem 1.6rem; font-size: 1.05rem; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--primary-dark); border: 2px solid var(--primary-dark); }

.intro.alt { background: var(--surface-alt); padding: 2.5rem 0; }
.section-title { text-align: center; margin-bottom: 2rem; }

/* Service rows: alternating left/right with big number */
.services-rows { padding: 4rem 0; }
.service-rows { display: grid; gap: 2rem; }
.service-row {
  display: grid; grid-template-columns: 120px 1fr; gap: 1.5rem;
  align-items: center; padding: 1.4rem; border-radius: var(--radius);
  background: var(--surface-alt); border: 1px solid var(--border);
}
.service-row.reverse { grid-template-columns: 1fr 120px; direction: rtl; }
.service-row.reverse .service-row-body { direction: ltr; }
.service-row-num {
  font-family: &#39;Playfair Display&#39;, serif; font-size: 4rem; font-weight: 800;
  color: var(--primary); line-height: 1; text-align: center;
}
.service-row h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

.quote-band { padding: 4rem 0; background: var(--surface-alt); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.card-form {
  background: var(--surface); padding: 1.8rem; border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  display: grid; gap: 0.7rem;
}
.contact-form label { display: grid; gap: 0.3rem; font-weight: 600; color: var(--text-muted); font-size: 0.9rem; }
input, select, textarea {
  font-family: inherit; font-size: 1rem; padding: 0.7rem 0.9rem;
  border: 1px solid var(--border); border-radius: 10px; background: #fff; color: var(--text);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--primary); outline-offset: 1px; }

.about-body { padding: 3rem 0; }
.trust-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem; margin: 2rem 0;
}
.trust-block {
  background: var(--surface-alt); padding: 0.9rem 1.1rem;
  border-radius: 10px; border-left: 4px solid var(--primary); font-weight: 600;
}

.contact-grid { padding: 3rem 0; }
.contact-side { padding: 1.5rem; background: var(--surface-alt); border-radius: var(--radius); }
.big-phone { font-size: 2rem; font-weight: 800; }

.service-body { padding: 3rem 0; }
.bulleted { padding-left: 1.2rem; line-height: 1.9; }
.faq-cards { display: grid; gap: 1rem; margin-top: 1.5rem; }
.faq-card { background: var(--surface-alt); padding: 1.2rem 1.4rem; border-radius: 10px; }
.faq-card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.link-arrow { color: var(--primary-dark); font-weight: 700; display: inline-block; margin-top: 0.6rem; }

.form-status { font-weight: 600; min-height: 1.2em; }
.form-status.error { color: #b91c1c; }
.form-status.success { color: #15803d; }

/* Footer */
.site-footer { background: var(--text); color: #d1d5db; padding: 3rem 0 1.5rem; text-align: center; }
.footer-brand { font-weight: 800; color: #fff; font-size: 1.2rem; margin: 0 0 0.4rem; }
.site-footer a { color: #fff; }
.footer-services {
  list-style: none; display: flex; gap: 1rem 1.6rem; flex-wrap: wrap;
  justify-content: center; padding: 0; margin: 1.5rem 0;
}
.footer-address { font-size: 0.9rem; line-height: 1.5; margin: 0.4rem 0; color: #d1d5db; }
.footer-disclaimer {
  padding-top: 1.2rem; margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem; color: #9ca3af; line-height: 1.55;
  text-align: center; max-width: 820px; margin-left: auto; margin-right: auto;
}
.footer-disclaimer p { margin: 0.4rem 0; }
.footer-copy { color: #d1d5db; font-weight: 500; }
.footer-legal-links a { color: #d1d5db; }

/* How It Works section (homepage) */
.how-it-works { padding: 4rem 0; background: var(--surface); }
.how-it-works h2 { text-align: center; margin-bottom: 0.5rem; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 2rem; }
.how-step { text-align: center; }
.how-step-num {
  display: inline-grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: var(--text); font-weight: 800; font-size: 1.4rem;
  margin-bottom: 1rem;
}
.how-step h3 { font-size: 1.15rem; margin: 0.3rem 0 0.5rem; }
.how-step p { color: var(--text-muted); margin: 0; }

/* Why Use cards */
.why-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 1.8rem; }
.why-card {
  background: var(--surface); padding: 1.4rem; border-radius: var(--radius);
  border: 1px solid var(--border); text-align: left;
}
.why-card h3 { font-size: 1.05rem; margin: 0 0 0.4rem; color: var(--primary-dark); }
.why-card p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* Legal pages */
.legal-body { padding: 3rem 0; }
.legal-body h2 { margin-top: 1.8rem; }
.legal-body h3 { margin-top: 1.2rem; }
.legal-body p, .legal-body li { line-height: 1.65; }

[data-reveal] { opacity: 0; transform: translateY(15px); transition: opacity .5s, transform .5s; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 880px) {
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute; top: 64px; left: 0; right: 0; background: var(--surface);
    flex-direction: column; padding: 1rem 1.25rem; gap: 0.8rem; box-shadow: var(--shadow);
    display: none;
  }
  .primary-nav.is-open { display: flex; }
  .two-col { grid-template-columns: 1fr; }
  .service-row, .service-row.reverse {
    grid-template-columns: 1fr; direction: ltr;
  }
  .service-row.reverse .service-row-body { direction: ltr; }
  .service-row-num { text-align: left; font-size: 3rem; }
}
