/* =========================================================
   Bedrock Property Solutions — Global Stylesheet
   Palette: black / charcoal / white / light gray / gold accent
   Matches official logo + brand banner
   ========================================================= */

:root {
  --charcoal: #131417;
  --charcoal-2: #1e2024;
  --charcoal-3: #2b2e33;
  --white: #ffffff;
  --gray-50: #f6f7f8;
  --gray-100: #eceeef;
  --gray-300: #cfd3d6;
  --gray-500: #8a8f96;
  --gray-700: #565b61;
  --gold: #C9A046;
  --gold-dark: #A47F30;
  --gold-light: #E0C179;
  --success: #2e7d4f;

  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 6px;
  --radius-lg: 10px;
  --shadow: 0 2px 10px rgba(26, 29, 33, 0.08);
  --shadow-md: 0 8px 24px rgba(26, 29, 33, 0.14);
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 64px; /* space for mobile sticky CTA bar */
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { color: var(--gray-700); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--dark {
  background: var(--charcoal);
  color: var(--white);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: var(--gray-300); }
.section--gray { background: var(--gray-50); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-head {
  max-width: 680px;
  margin: 0 0 40px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 12px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201, 160, 70, 0.35);
}
.btn--primary:hover { background: var(--gold-dark); }

.btn--dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn--dark:hover { background: var(--charcoal-2); }

.btn--outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn--outline:hover { background: var(--white); color: var(--charcoal); }

.btn--outline-dark {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn--outline-dark:hover { background: var(--charcoal); color: var(--white); }

.btn--block { width: 100%; }
.btn--sm { padding: 11px 20px; font-size: 0.85rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--charcoal);
  color: var(--gray-300);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 12px;
}
.topbar a { color: var(--gray-300); }
.topbar a:hover { color: var(--gold-light); }
.topbar__left { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar__left span { color: var(--gold-light); font-weight: 600; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img { height: 44px; width: auto; }
.brand__text {
  font-family: var(--font-head);
  line-height: 1.05;
}
.brand__text .name {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.brand__text .tag {
  display: block;
  font-size: 0.68rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
  font-weight: 600;
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links a {
  font-family: var(--font-head);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: var(--charcoal-3);
  position: relative;
  padding: 6px 0;
}
.nav__links a:hover, .nav__links a.active { color: var(--gold); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--charcoal);
}
.nav__phone svg { flex-shrink: 0; color: var(--gold); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 26px;
  height: 3px;
  background: var(--charcoal);
  border-radius: 2px;
}

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 600;
  background: var(--charcoal);
  padding: 8px;
  gap: 8px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.25);
}
.mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 13px 10px;
  border-radius: var(--radius);
}
.mobile-cta .call { background: var(--white); color: var(--charcoal); }
.mobile-cta .quote { background: var(--gold); color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--charcoal) 45%, var(--charcoal-2) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 64px;
  min-height: 560px;
}
.hero__content .eyebrow { color: var(--gold-light); }
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 .accent { color: var(--gold); }
.hero__sub {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 520px;
  margin-bottom: 8px;
}
.hero__trustline {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.88rem;
  color: var(--gray-300);
}
.hero__trustline span { display: flex; align-items: center; gap: 7px; }
.hero__trustline svg { color: var(--gold); flex-shrink: 0; }

.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--charcoal-3);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--gold);
}
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.trust-item svg { flex-shrink: 0; }
.trust-item strong {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.trust-item span { font-size: 0.8rem; opacity: 0.9; }

/* ---------- Cards: services ---------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  height: 100%;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.card__icon {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; margin-bottom: 14px; }
.card__link {
  font-family: var(--font-head);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Why choose us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-item__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(201, 160, 70, 0.18);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-item h4 { margin-bottom: 6px; }
.why-item p { font-size: 0.92rem; }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
.step {
  text-align: center;
  position: relative;
}
.step__num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.92rem; }

/* ---------- Gallery / before-after ---------- */
.ba {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}
.ba__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.ba__img img { width: 100%; height: 100%; object-fit: cover; }
.ba__label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
}
.ba__img--after .ba__label { background: var(--gold); }
.ba__caption { padding: 14px 18px; }
.ba__caption h4 { font-size: 0.95rem; }
.ba__caption span { font-size: 0.8rem; color: var(--gray-500); }

/* ---------- Service areas ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.area-chip {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.92rem;
  box-shadow: var(--shadow);
}
.area-chip svg { color: var(--gold); flex-shrink: 0; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  height: 450px;
  width: 100%;
}
.map-embed iframe { display: block; }

.map-placeholder {
  background: var(--gray-50);
  border: 1.5px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gray-500);
  padding: 30px;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--charcoal);
  gap: 20px;
}
.faq-q .icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gray-50);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--gold); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p { padding-bottom: 20px; font-size: 0.95rem; }
.faq-item.open .faq-a { max-height: 400px; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(120deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  color: var(--white);
  text-align: center;
  padding: 70px 0;
}
.final-cta h2 { color: var(--white); }
.final-cta p { color: var(--gray-300); max-width: 560px; margin: 14px auto 0; }
.final-cta .btn-row { justify-content: center; }

/* ---------- Reviews ---------- */
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
}
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-card p { font-size: 0.92rem; font-style: italic; margin-bottom: 14px; }
.review-name { font-family: var(--font-head); font-size: 0.85rem; text-transform: uppercase; color: var(--charcoal); }

.reviews-placeholder {
  background: var(--gray-50);
  border: 1.5px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: var(--gray-500);
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px;
  border: 1px solid var(--gray-100);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--charcoal);
}
.form-group .req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--gray-50);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.file-drop {
  border: 1.5px dashed var(--gray-300);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  background: var(--gray-50);
  color: var(--gray-500);
  font-size: 0.88rem;
  cursor: pointer;
}
.file-drop:hover { border-color: var(--gold); color: var(--gold); }
.file-drop svg { margin: 0 auto 8px; display: block; color: var(--gray-500); }

.form-note {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 10px;
}

.form-error {
  display: none;
  background: rgba(196, 62, 46, 0.08);
  border: 1.5px solid #c43e2e;
  color: #c43e2e;
  padding: 16px 18px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  margin-bottom: 18px;
  font-weight: 500;
}
.form-error a { color: #c43e2e; text-decoration: underline; }

.form-success {
  display: none;
  background: rgba(46, 125, 79, 0.1);
  border: 1.5px solid var(--success);
  color: var(--success);
  padding: 16px 18px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  margin-bottom: 18px;
  font-weight: 500;
}

/* ---------- Contact info cards ---------- */
.contact-info {
  display: grid;
  gap: 18px;
}
.contact-info .card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; }
.contact-info .card__icon { margin-bottom: 0; flex-shrink: 0; }
.contact-info h4 { margin-bottom: 4px; }
.contact-info p { font-size: 0.9rem; margin: 0; }
.contact-info a { color: var(--gold); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: var(--gray-300);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--charcoal-3);
}
.footer-brand .brand__text .name { color: var(--white); }
.footer-brand p { margin-top: 14px; font-size: 0.88rem; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--charcoal-3);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.footer-social a:hover { background: var(--gold); }
.footer-col h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 0.04em; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col address { font-style: normal; font-size: 0.9rem; line-height: 1.8; }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray-500);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 56px 0 46px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: var(--gray-300); max-width: 600px; margin: 0 auto; }
.breadcrumb {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--gold-light); }

/* ---------- Service detail rows (services page) ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--gray-100);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { grid-template-columns: 1.3fr 1fr; }
.service-detail.reverse .service-detail__media { order: 2; }
.service-detail--solo {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0;
}
.service-detail__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.service-detail__body .eyebrow { margin-bottom: 8px; }
.service-detail__body h2 { margin-bottom: 14px; }
.service-detail__body p { margin-bottom: 16px; }
.service-detail__list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 22px; }
.service-detail__list li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--charcoal-3);
}
.service-detail__list li svg { color: var(--gold); flex-shrink: 0; }

/* ---------- Values (about page) ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-row strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--gold);
}
.stat-row span { font-size: 0.85rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.03em; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  justify-content: center;
}
.filter-btn {
  border: 1.5px solid var(--gray-100);
  background: var(--white);
  padding: 9px 18px;
  border-radius: 30px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero .container { grid-template-columns: 1fr; padding-top: 40px; padding-bottom: 40px; min-height: unset; }
  .hero__media { order: -1; max-height: 320px; }
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; }
  .service-detail__media { order: -1 !important; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 760px) {
  .nav__links, .nav__phone-wrap { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta .btn { display: none; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 70px; }

  .site-header.nav-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--gray-100);
  }
  .site-header.nav-open .nav__links a { padding: 12px 0; border-bottom: 1px solid var(--gray-100); width: 100%; }

  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .trust-bar .container { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail__list { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .ba__images { grid-template-columns: 1fr 1fr; }
  .topbar__left { gap: 10px; }
  .topbar .container { flex-direction: row; font-size: 0.72rem; }
  .section { padding: 50px 0; }
}
