/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --dark: #050505;
  --dark-2: #0C0C0C;
  --dark-3: #141414;
  --dark-4: #1C1C1C;
  --text: #E8E0D0;
  --text-muted: #8A8070;
  --white: #FFFFFF;
  --radius: 3px;
}

html { scroll-behavior: smooth; }

/* Visible keyboard focus (tab navigation) */
:focus-visible { outline: 2px solid rgba(201,168,76,0.7); outline-offset: 3px; border-radius: 2px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; font-weight: 400; }
h3 { font-size: 1.05rem; margin-bottom: 0.5rem; font-weight: 400; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  letter-spacing: 0.02em;
  font-family: 'Inter', sans-serif;
}
.btn-gold {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--gold); }
.btn-outline-nav {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-nav:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; justify-content: center; padding: 1rem; font-size: 0.95rem; }

/* ── Nav ── */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5,5,5,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.logo span { color: var(--white); }
.nav-links { display: flex; list-style: none; gap: 2rem; margin-left: auto; }
.nav-links a {
  font-size: 0.83rem;
  font-weight: 400;
  color: var(--gold);
  transition: opacity 0.2s;
  letter-spacing: 0.04em;
}
.nav-links a:hover { opacity: 0.65; }
.nav-cta { margin-left: 1rem; padding: 0.5rem 1.25rem; font-size: 0.83rem; }
.lang-toggle { margin-left: 2rem; background: transparent; border: 1px solid rgba(255,255,255,0.25); color: var(--text); border-radius: var(--radius); padding: 0.4rem 0.8rem; font-size: 0.78rem; font-family: 'Inter', sans-serif; cursor: pointer; transition: all 0.2s; }
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }
.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; margin-left: auto; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu a { padding: 0.6rem 0; font-size: 0.95rem; color: var(--gold); }
.mobile-menu .btn { margin-top: 0.75rem; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1800&q=80') center 30%/cover no-repeat;
  padding: 7rem 2rem 5rem;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(3,3,3,0.97) 0%,
    rgba(3,3,3,0.90) 40%,
    rgba(3,3,3,0.55) 100%);
}
.hero-content {
  position: relative;
  max-width: 620px;
}
.hero-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-tag::before { content: '\2736'; font-size: 0.6rem; }
.hero h1 { color: var(--white); line-height: 1.08; }
.hero h1 .gold-line { color: var(--gold); font-style: italic; display: block; }
.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 1.75rem 0 2.25rem;
  line-height: 1.85;
  font-weight: 300;
}
.hero-actions { display: flex; align-items: center; gap: 0.25rem; flex-wrap: wrap; }

/* ── Gold divider ── */
.gold-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
  margin: 0 0 1.5rem;
}
.gold-divider.center-div { margin: 0 auto 1.5rem; }

/* ── Sections ── */
.section { padding: 6rem 0; }
.section-dark { background: var(--dark-2); }

.section-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-tag::before { content: '\2736'; font-size: 0.58rem; }
.section-tag.center-tag { justify-content: center; }
.section-sub {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0.5rem auto 3.5rem;
  font-size: 0.9rem;
  line-height: 1.85;
}

/* ── About ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.9rem; line-height: 1.85; }
.about-text .btn { margin-top: 0.75rem; }
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.07);
}
.card {
  background: var(--dark-2);
  padding: 1.75rem 1.5rem;
  transition: background 0.25s;
}
.card:hover { background: var(--dark-3); }
.card-icon { font-size: 1.3rem; margin-bottom: 0.9rem; opacity: 0.8; }
.card h3 { font-size: 0.92rem; margin-bottom: 0.4rem; color: var(--white); letter-spacing: 0.02em; }
.card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.75; }

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.07);
  margin-top: 2.5rem;
}
.service-card {
  background: var(--dark-3);
  padding: 2.5rem 1.75rem;
  transition: background 0.25s;
}
.service-card:hover { background: var(--dark-4); }
.service-icon { font-size: 1.5rem; margin-bottom: 1.25rem; opacity: 0.8; }
.service-card h3 { margin-bottom: 0.6rem; color: var(--white); font-size: 0.95rem; }
.service-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.8; }

/* ── Process ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.07);
  margin-top: 3rem;
}
.step {
  background: var(--dark-2);
  padding: 2.5rem 1.75rem;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.step h3 { font-size: 0.95rem; margin-bottom: 0.6rem; color: var(--white); }
.step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.8; }
.step-arrow { display: none; }

/* ── Form ── */
.lead-form {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  padding: 3rem;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8070' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group select option { background: var(--dark-3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: rgba(201,168,76,0.45); }
.form-group textarea { resize: vertical; }
.form-note { text-align: center; font-size: 0.76rem; color: var(--text-muted); margin-top: 1.25rem; letter-spacing: 0.04em; }
.appt-block {
  border: 1px solid rgba(201,168,76,0.18);
  background: rgba(201,168,76,0.04);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 0.5rem;
  margin-bottom: 1.5rem;
}
.appt-head { font-size: 0.95rem; font-weight: 500; color: var(--gold); margin: 0 0 0.35rem; }
.appt-sub { font-size: 0.8rem; color: var(--text-muted); margin: 0 0 1.25rem; line-height: 1.5; }
.appt-block input[type="date"] { color-scheme: dark; }
.hidden { display: none; }

/* ── Footer ── */
.footer { background: var(--dark); border-top: 1px solid rgba(201,168,76,0.07); padding: 4rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.83rem; margin-top: 1rem; max-width: 280px; line-height: 1.85; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.footer-links a, .footer-contact a { font-size: 0.83rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.83rem; color: var(--text-muted); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); padding: 1.5rem 2rem; text-align: center; }
.footer-bottom p { font-size: 0.76rem; color: var(--text-muted); }
.disclaimer { margin-top: 0.4rem; font-size: 0.7rem !important; opacity: 0.5; }

/* ── Hero trust line ── */
.hero-trust {
  margin-top: 1.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

/* ── Form message box ── */
.form-msg { margin-top: 1rem; padding: 1rem 1.2rem; border-radius: var(--radius); font-size: 0.9rem; text-align: center; }
.form-msg.ok  { background: rgba(95,184,122,0.12); border: 1px solid rgba(95,184,122,0.35); color: #5FB87A; }
.form-msg.err { background: rgba(217,101,91,0.12); border: 1px solid rgba(217,101,91,0.35); color: #D9655B; }

/* ── Scroll reveal (Intersection Observer adds .is-visible) ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  text-align: left;
}
.testimonial-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.15em; }
.testimonial-card blockquote { font-size: 0.92rem; line-height: 1.75; color: var(--text); font-style: italic; }
.testimonial-card figcaption { display: flex; flex-direction: column; gap: 0.15rem; margin-top: auto; }
.t-name { font-weight: 500; color: var(--white); font-size: 0.88rem; }
.t-city { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.04em; }
.testimonial-disclaimer { margin-top: 2rem; font-size: 0.72rem; color: var(--text-muted); opacity: 0.7; }

/* ── Comparison table ── */
.compare-wrap { margin-top: 2.5rem; overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  margin: 0 auto;
  text-align: left;
}
.compare-table th, .compare-table td {
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.compare-table thead th {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.compare-table tbody th[scope="row"] { color: var(--white); font-family: 'Inter', sans-serif; font-weight: 500; }
.compare-table td { color: var(--text-muted); }
.compare-table .col-us {
  background: rgba(201,168,76,0.06);
  color: var(--gold-light);
  font-weight: 500;
  border-left: 1px solid rgba(201,168,76,0.18);
  border-right: 1px solid rgba(201,168,76,0.18);
}
.compare-table thead .col-us {
  color: var(--gold);
  border-top: 1px solid rgba(201,168,76,0.35);
}
.compare-table tbody tr:last-child .col-us { border-bottom: 1px solid rgba(201,168,76,0.35); }
.compare-cta { margin-top: 2.5rem; }

/* ── What's My Home Worth ── */
.worth-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 520px;
  margin: 2.5rem auto 0;
  text-align: left;
}
.worth-result {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
}
.worth-result h3 { color: var(--gold-light); margin-bottom: 0.5rem; }
.worth-result p { font-size: 0.86rem; color: var(--text); line-height: 1.7; margin-bottom: 1rem; }
.worth-result .btn { width: 100%; justify-content: center; }

/* ── Urgency banner ── */
.urgency-banner {
  max-width: 760px;
  margin: 0 auto 1.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  line-height: 1.5;
  text-align: left;
}
.urgency-dot {
  flex-shrink: 0;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #5FB87A;
  box-shadow: 0 0 0 0 rgba(95,184,122,0.6);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(95,184,122,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(95,184,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(95,184,122,0); }
}

/* ── FAQ accordion ── */
.faq-list { max-width: 760px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold-light); }
.faq-icon { color: var(--gold); font-size: 1.3rem; flex-shrink: 0; transition: transform 0.25s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; padding: 0 0 1.35rem; }

/* ── City service areas ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  text-align: left;
}
.area-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.area-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.75rem; }
.area-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.8; }
.area-card-cta { background: rgba(201,168,76,0.05); border-color: rgba(201,168,76,0.25); display: flex; flex-direction: column; }
.area-card-cta .btn { margin-top: auto; align-self: flex-start; }

/* ── Sticky CTA (desktop) ── */
.sticky-cta {
  position: fixed;
  right: 1.75rem; bottom: 1.75rem;
  z-index: 90;
  background: var(--gold);
  color: #111;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.9rem 1.6rem;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.3);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s;
}
.sticky-cta.show { opacity: 1; transform: none; pointer-events: auto; }
.sticky-cta:hover { background: var(--gold-light); }

/* ── Mobile call/offer bar ── */
.mobile-bar { display: none; }

/* ── Buyer form ── */
.buyer-form { max-width: 620px; }

/* ── File upload ── */
.lead-file { color: var(--text-muted); font-size: 0.85rem; cursor: pointer; padding: 0.6rem 0; }
.lead-file::file-selector-button {
  background: rgba(201,168,76,0.12); color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3); border-radius: var(--radius);
  padding: 0.5rem 1rem; margin-right: 0.8rem; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 0.82rem; transition: all 0.2s;
}
.lead-file::file-selector-button:hover { background: rgba(201,168,76,0.2); }
.file-hint { display: block; font-size: 0.74rem; color: var(--text-muted); margin-top: 0.4rem; }

/* ── Quick-offer manual trigger ── */
.quick-link-line { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 1.75rem; }
.link-btn {
  background: none; border: none;
  color: var(--gold); font-family: 'Inter', sans-serif; font-size: 0.85rem;
  cursor: pointer; padding: 0; text-decoration: underline; text-underline-offset: 3px;
}
.link-btn:hover { color: var(--gold-light); }

/* ── Footer additions ── */
.footer-hours { font-size: 0.83rem !important; color: var(--text-muted); }
.https-badge { font-size: 0.76rem !important; color: #5FB87A !important; margin-top: 1rem; letter-spacing: 0.04em; }
.footer-legal { margin-top: 0.5rem; display: flex; gap: 0.6rem; justify-content: center; align-items: center; font-size: 0.76rem; }
.legal-link { color: var(--text-muted); transition: color 0.2s; }
.legal-link:hover { color: var(--gold); }

/* ── Quick-offer popup ── */
.popup-overlay {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.popup-overlay[hidden] { display: none; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.popup {
  position: relative;
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  padding: 2.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
}
@keyframes pop-in { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
/* Entrance animations only when motion is welcome; base state stays visible */
@media (prefers-reduced-motion: no-preference) {
  .popup-overlay { animation: fade-in 0.25s ease; }
  .popup { animation: pop-in 0.25s ease; }
}
.popup .section-tag { justify-content: center; }
.popup-title { margin-top: 0.4rem; }
.popup-sub { font-size: 0.86rem; color: var(--text-muted); margin: 0.5rem 0 1.75rem; line-height: 1.6; }
.quick-form { text-align: left; }
.popup-close {
  position: absolute; top: 0.75rem; right: 1rem;
  background: none; border: none;
  color: var(--text-muted);
  font-size: 1.6rem; line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.popup-close:hover { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .lead-form { padding: 1.75rem; }
  .worth-card { padding: 1.75rem; }
  .hero { padding: 6rem 1.5rem 4rem; }

  /* Hide the round desktop CTA; show the bottom bar instead */
  .sticky-cta { display: none; }
  .mobile-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    display: flex;
    border-top: 1px solid rgba(201,168,76,0.2);
    transform: translateY(100%);
    transition: transform 0.25s ease;
  }
  .mobile-bar.show { transform: none; }
  .mobile-bar-btn {
    flex: 1;
    text-align: center;
    padding: 0.95rem 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .mb-call { background: var(--dark-3); color: var(--white); }
  .mb-text { background: var(--dark-4); color: var(--gold-light); border-left: 1px solid rgba(201,168,76,0.15); border-right: 1px solid rgba(201,168,76,0.15); }
  .mb-offer { background: var(--gold); color: #111; }
  .mobile-bar-btn { font-size: 0.82rem; }
  /* leave room so the bottom bar never covers the footer legal text */
  .footer-bottom { padding-bottom: 5rem; }
}
