/* Legacy Brick & Stone — PPC landing page design system (v2)
   Block structure modeled on the reference layout Justin shared (legacylp1.webp):
   utility bar, pill-button nav, hero + embedded lead form, floating trust badges,
   why-us with rotating badge, service carousel, 3-step process, before/after slider,
   gallery carousel, testimonial carousel, map + area chips, FAQ accordion,
   split contact form, pulsing CTA banner, mega footer.
   Palette stays warm ivory/stone + ink + brass, matching the client's real logo. */

:root {
  --ink: #1c1a17;
  --ink-soft: #2c2925;
  --stone: #f7f3ea;
  --stone-alt: #eee6d3;
  --brass: #a9822f;
  --brass-light: #cba85c;
  --brass-dark: #7d5f21;
  --brass-tint: #f4ead2;
  --text: #2a2722;
  --text-muted: #6b6558;
  --white: #ffffff;
  --line: #e2d8bf;
  --overlay-top: rgba(10, 9, 6, 0.5);
  --overlay-mid: rgba(10, 9, 6, 0.4);
  --overlay-bottom: rgba(6, 5, 3, 0.94);
  --radius: 4px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --max-width: 1280px;
  --font-serif: "Playfair Display", "Georgia", serif;
  --font-sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-card: 0 18px 40px rgba(28, 26, 23, 0.1);
  --shadow-soft: 0 8px 24px rgba(28, 26, 23, 0.08);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--stone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
}

/* Prevent grid/flex items (and form inputs) from blowing out their
   container's width past the viewport via their default min-width:auto. */
.hero-grid > *,
.why-grid-layout > *,
.faq-grid > *,
.contact-grid > *,
.form-row > *,
.cta-banner > * {
  min-width: 0;
}
input.form-field,
textarea.form-field {
  min-width: 0;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hl {
  color: var(--brass);
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in-view > * {
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: normal;
  min-width: 0;
  text-align: center;
}
.btn-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-arrow svg {
  width: 13px;
  height: 13px;
}
.btn-primary {
  background: var(--brass);
  color: var(--white);
  border-color: var(--brass);
}
.btn-primary:hover {
  background: var(--brass-dark);
  border-color: var(--brass-dark);
}
.btn-primary .btn-arrow {
  background: rgba(255, 255, 255, 0.22);
}
.btn-outline-light {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
}
.btn-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-dark:hover {
  background: var(--ink-soft);
}
.btn-dark .btn-arrow {
  background: var(--brass);
}
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--white);
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.btn-link svg {
  width: 14px;
  height: 14px;
  color: var(--brass);
}
.btn-link:hover {
  color: var(--brass);
  border-color: var(--brass);
}
.btn-round {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brass);
  color: var(--white);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.btn-round.is-outline {
  background: var(--brass-tint);
  color: var(--brass);
}
.btn-round:hover {
  background: var(--brass-dark);
  color: var(--white);
}
.btn-round svg {
  width: 16px;
  height: 16px;
}

/* ---------- Eyebrow pill ---------- */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 7px 16px 7px 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
}
.eyebrow-pill .dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.eyebrow-pill .dot svg {
  width: 13px;
  height: 13px;
}

/* ---------- Utility bar + header ---------- */
.utility-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
}
.utility-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 32px;
  gap: 16px;
}
.utility-item {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.utility-item svg {
  width: 13px;
  height: 13px;
  color: var(--brass-light);
  flex-shrink: 0;
}
.utility-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.utility-right a:hover {
  color: var(--brass-light);
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(28, 26, 23, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 16px;
}
.brand-logo {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.main-nav a:hover {
  color: var(--brass-light);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brass);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 11px 20px 11px 12px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.header-phone-btn:hover {
  background: var(--brass-dark);
}
.header-phone-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header-phone-icon svg {
  width: 14px;
  height: 14px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 6px;
}

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav-top .brand {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 18px;
  text-transform: uppercase;
}
.close-btn {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 20px 28px;
  gap: 4px;
}
.mobile-nav-links a {
  color: var(--white);
  font-family: var(--font-serif);
  text-transform: uppercase;
  font-size: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  padding: 64px 0 0;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--overlay-bottom) 0%, var(--overlay-mid) 42%, var(--overlay-top) 70%, rgba(10,9,6,0.15) 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 32px 90px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 40px;
  align-items: start;
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 9, 6, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-rating .stars {
  color: var(--brass-light);
  letter-spacing: 1px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.14;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17.5px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin-bottom: 32px;
  font-weight: 300;
  text-transform: none;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Hero lead form card ---------- */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 30px;
  align-self: start;
}
.hero-form-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 18px;
}
.hero-form-title .dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brass-tint);
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-form-title .dot svg {
  width: 15px;
  height: 15px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-field {
  width: 100%;
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 15px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
}
.form-field::placeholder {
  color: var(--text-muted);
}
textarea.form-field {
  resize: vertical;
  min-height: 76px;
  margin-bottom: 16px;
}
.hero-form-card .btn {
  width: 100%;
}
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

/* ---------- Trust badge strip (floats over hero bottom) ---------- */
.badge-strip {
  position: relative;
  z-index: 3;
  margin-top: -64px;
}
.badge-strip .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 760px;
  margin: 0 32px;
}
.badge-card {
  background: rgba(20, 18, 15, 0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.badge-card svg {
  width: 26px;
  height: 26px;
  color: var(--brass-light);
  flex-shrink: 0;
}
.badge-card strong {
  display: block;
  color: var(--white);
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.badge-card span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12.5px;
}

/* ---------- Section shared ---------- */
section {
  padding: 120px 0 96px;
}
.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head.centered {
  margin: 0 auto 48px;
  text-align: center;
}
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.22;
}
.section-head p {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 14px;
  text-transform: none;
}
.carousel-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ---------- Why-us / checklist section ---------- */
.why-us {
  background: var(--white);
}
.why-grid-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-photo-wrap {
  position: relative;
}
.why-photo-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.why-badge {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-badge svg.play-icon {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 2;
}
.why-badge svg.spin-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 14s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.why-floating-card {
  position: absolute;
  left: -24px;
  bottom: -24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 300px;
}
.why-floating-card .icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brass-tint);
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-floating-card .icon-circle svg {
  width: 20px;
  height: 20px;
}
.why-floating-card strong {
  display: block;
  font-size: 13.5px;
  text-transform: uppercase;
  color: var(--ink);
}
.why-floating-card span {
  font-size: 12px;
  color: var(--text-muted);
}
.why-copy p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 22px;
  text-transform: none;
}
.why-checklist {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-bottom: 30px;
}
.why-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--text);
  font-weight: 500;
  padding: 8px 0;
}
.why-checklist svg {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--white);
  padding: 4px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------- Carousels (services / gallery / testimonials) ---------- */
.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin: 0 -32px;
  padding-left: 32px;
  padding-right: 32px;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
}
.carousel-dots button.active {
  background: var(--brass);
  width: 24px;
  border-radius: var(--radius-pill);
  transition: width 0.25s ease;
}

/* Service cards */
.service-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.service-card-photo {
  position: relative;
  height: 200px;
}
.service-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-icon {
  position: absolute;
  left: 18px;
  bottom: -22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--brass);
}
.service-card-body {
  padding: 36px 22px 24px;
}
.service-card-body h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.service-card-body p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
  text-transform: none;
  line-height: 1.6;
}

/* Gallery */
.gallery-section {
  background: var(--stone-alt);
}
.gallery-track {
  gap: 16px;
}
.gallery-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover img {
  transform: scale(1.06);
}

/* Testimonials */
.testimonials {
  background: var(--white);
}
.testimonial-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testimonial-stars {
  color: var(--brass);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 22px;
  text-transform: none;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  text-transform: none;
}
.testimonial-source {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ---------- 3-step process ---------- */
.process {
  background: var(--white);
}
.process-photos {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.process-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.process-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process-arrow {
  width: 60px;
  height: 44px;
  color: var(--brass);
  flex-shrink: 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 36px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 16.5%;
  right: 16.5%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-size: 16.5px;
  margin-bottom: 10px;
}
.process-step p {
  color: var(--text-muted);
  font-size: 14.5px;
  text-transform: none;
  max-width: 260px;
  margin: 0 auto;
}

/* ---------- Before / after slider ---------- */
.before-after {
  background: var(--white);
  padding-top: 0;
}
.ba-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/7;
  user-select: none;
  cursor: ew-resize;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after {
  filter: grayscale(1) contrast(1.05);
}
.ba-before-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}
.ba-before-wrap img {
  width: var(--ba-img-width, 100vw);
  max-width: none;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
}
.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.ba-handle-btn svg {
  width: 20px;
  height: 20px;
}
.ba-label {
  position: absolute;
  bottom: 18px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: rgba(10, 9, 6, 0.6);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ba-label.left {
  left: 18px;
}
.ba-label.right {
  right: 18px;
}

/* ---------- Service area / map ---------- */
.service-area {
  background: var(--stone-alt);
}
.map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/8;
  box-shadow: var(--shadow-soft);
}
#service-map {
  width: 100%;
  height: 100%;
  background: var(--stone-alt);
}
#service-map .leaflet-tile-pane {
  filter: saturate(0.55) brightness(1.06);
}
.map-home-marker span {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brass);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(28, 26, 23, 0.35);
}
.leaflet-control-attribution {
  font-size: 10px !important;
}
.map-chips {
  position: absolute;
  z-index: 900;
  left: 0;
  right: 0;
  bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}
.map-chips .map-chip {
  pointer-events: auto;
}
.map-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.map-chip svg {
  width: 13px;
  height: 13px;
  color: var(--brass);
}
.map-chip.active {
  background: var(--brass);
  color: var(--white);
}
.map-chip.active svg {
  color: var(--white);
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.faq-intro p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 16px 0 28px;
  text-transform: none;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--stone);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: background 0.25s ease;
}
.faq-item.open {
  background: var(--brass);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
}
.faq-item.open .faq-question {
  color: var(--white);
}
.faq-question .q-mark {
  color: var(--brass);
  margin-right: 4px;
}
.faq-item.open .faq-question .q-mark {
  color: var(--white);
}
.faq-chevron {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brass-tint);
  color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.faq-item.open .faq-chevron {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  transform: rotate(180deg);
}
.faq-chevron svg {
  width: 13px;
  height: 13px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 24px 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14.5px;
  line-height: 1.65;
  text-transform: none;
}

/* ---------- Contact split ---------- */
.contact-split {
  background: var(--stone-alt);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 32px;
  align-items: stretch;
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 40px;
}
.contact-form-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.contact-form-card > p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 26px;
  text-transform: none;
}
.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--brass-dark), var(--brass));
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 32px;
  position: relative;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15.5px;
  max-width: 460px;
  margin-bottom: 28px;
  text-transform: none;
}
.cta-input-group {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 6px;
  max-width: 460px;
  gap: 6px;
}
.cta-input-group input {
  flex: 1;
  border: none;
  background: none;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-sans);
  min-width: 0;
}
.cta-input-group input:focus {
  outline: none;
}
.cta-rings {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  animation: pulse-ring 3s ease-out infinite;
}
.cta-ring.r1 { width: 55%; height: 55%; animation-delay: 0s; }
.cta-ring.r2 { width: 75%; height: 75%; animation-delay: 0.5s; }
.cta-ring.r3 { width: 95%; height: 95%; animation-delay: 1s; }
@keyframes pulse-ring {
  0% { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.05); opacity: 0; }
}
.cta-phone-btn {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--white);
  color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.cta-phone-btn svg {
  width: 30px;
  height: 30px;
}
.cta-phone-bubble {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translate(-50%, -100%);
  background: var(--white);
  color: var(--brass-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}
.cta-phone-bubble::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: var(--white) transparent transparent;
}

/* ---------- Footer ---------- */
footer {
  background: #14120f;
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
  font-family: var(--font-serif);
  text-transform: uppercase;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 6px;
  text-transform: none;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.66);
}
.footer-col a:hover {
  color: var(--brass-light);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.75);
}
.footer-contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--brass-light);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social a:hover {
  background: var(--brass);
  border-color: var(--brass);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Mobile sticky CTA ---------- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 14px;
}
.mobile-sticky-actions {
  display: flex;
  gap: 8px;
}
.mobile-sticky-actions .btn {
  flex: 1;
  padding: 12px 10px;
  font-size: 12px;
  min-width: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-form-card {
    max-width: 480px;
  }
  .why-grid-layout {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-photo {
    min-height: 280px;
  }
  .cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-banner p {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-input-group {
    margin-left: auto;
    margin-right: auto;
  }
  .badge-strip .wrap {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .process-photos {
    grid-template-columns: 1fr;
  }
  .process-arrow {
    display: none;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .process-steps::before {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .utility-bar {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .site-header .wrap {
    padding: 0 16px;
    height: 70px;
  }
  .brand-logo {
    height: 34px;
  }
  .header-phone-btn > span:last-child {
    display: none;
  }
  .header-phone-btn {
    padding: 8px;
  }
  section {
    padding: 72px 0 56px;
  }
  .hero {
    min-height: auto;
    padding-top: 40px;
  }
  .hero-grid {
    padding: 40px 20px 56px;
  }
  .badge-strip {
    margin-top: 28px;
  }
  .badge-strip .wrap {
    margin: 0 20px;
  }
  .why-badge,
  .why-floating-card {
    display: none;
  }
  .section-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .process-steps::before {
    display: none;
  }
  .map-frame {
    aspect-ratio: auto;
    height: 420px;
  }
  .map-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    bottom: 14px;
    padding: 0 14px;
    -webkit-overflow-scrolling: touch;
  }
  .map-chip {
    flex-shrink: 0;
  }
  .contact-form-card {
    padding: 26px;
  }
  .cta-banner {
    padding: 40px 24px;
  }
  .mobile-sticky-cta {
    display: block;
  }
  footer {
    padding-bottom: 100px;
  }
}
