@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=DM+Sans:wght@400;500;600;700&family=Montserrat:wght@600;700;800&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  color-scheme: light;
  --navy: #071d54;
  --ink: #0d2d73;
  --blue: #087df4;
  --blue-deep: #123da9;
  --blue-soft: #eaf4ff;
  --green: #159442;
  --lime: #a3e86f;
  --surface: #ffffff;
  --surface-soft: #f5faff;
  --surface-blue: #eef7ff;
  --line: rgba(15, 59, 139, 0.12);
  --muted: #526a88;
  --shadow: 0 18px 55px rgba(30, 86, 161, 0.13);
  --shadow-soft: 0 8px 24px rgba(30, 86, 161, 0.1);
  --radius-card: 24px;
  --radius-button: 14px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.page-shell { overflow: hidden; }
.botanical-layer {
  position: fixed;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: multiply;
}
.botanical-layer::before,
.botanical-layer::after {
  content: "";
  position: absolute;
  display: block;
  background-image: url("assets/botanical-edge-web.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  filter: saturate(1.55) contrast(1.05);
}
.botanical-layer::before {
  right: auto;
  bottom: -24px;
  left: -12px;
  width: clamp(300px, 34vw, 560px);
  height: clamp(220px, 30vw, 410px);
  background-position: left bottom;
  opacity: 0.18;
  clip-path: inset(28% 34% 0 0);
}
.botanical-layer::after {
  top: 0;
  right: -8px;
  bottom: auto;
  left: auto;
  width: clamp(220px, 24vw, 360px);
  height: clamp(150px, 20vw, 260px);
  background-position: right top;
  background-size: 300% auto;
  opacity: 0.18;
}
.button,
.review-card,
.trust-card,
.about-grid,
.service-card,
.work-card,
.step-card,
.quote-card,
.section-heading,
.reviews-heading,
.hero-content,
.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 9;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 12px max(20px, 3vw);
  background: transparent;
  transition: background 220ms ease, box-shadow 220ms ease, padding 260ms var(--ease), border-color 220ms ease;
}
.site-header.is-scrolled {
  padding: 8px max(20px, 3vw);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: 0 2px 10px rgba(31, 76, 140, 0.08);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}
.site-header.is-scrolled .nav-shell { min-height: 54px; }
.nav-shell {
  width: 100%;
  max-width: none;
  min-height: 72px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; opacity: 1; pointer-events: auto; }
.brand img { width: 238px; height: 62px; object-fit: cover; object-position: center; transition: width 220ms var(--ease), height 220ms var(--ease); }
.site-header.is-scrolled .brand img { width: 210px; height: 52px; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.2vw, 42px); }
.desktop-nav a, .mobile-menu a:not(.button) {
  position: relative;
  color: var(--navy);
  font-size: clamp(0.88rem, 1vw, 1.02rem);
  font-weight: 600;
  white-space: nowrap;
}
.desktop-nav a::after, .mobile-menu a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--green);
  transition: transform 180ms ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after,
.mobile-menu a:not(.button):hover::after, .mobile-menu a:not(.button):focus-visible::after { transform: scaleX(1); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 17px 28px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms ease, border-color 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(0.98); }
.button:focus-visible, .desktop-nav a:focus-visible, .mobile-menu a:focus-visible,
.menu-toggle:focus-visible, .modal-close:focus-visible, .lightbox-close:focus-visible,
.work-card:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(21, 148, 66, 0.34);
  outline-offset: 4px;
}
.button-small { min-height: 48px; padding: 13px 20px; font-size: 0.9rem; border-radius: 14px; }
.button-primary, .nav-quote, .card-button, .quote-submit {
  color: #fff;
  background: linear-gradient(115deg, var(--blue) 0%, #1241bd 100%);
  box-shadow: 0 10px 24px rgba(8, 125, 244, 0.25);
}
.nav-quote { min-width: 0; padding: 11px 24px; border-radius: 100px; font-size: 0.84rem; }
.button-primary:hover, .nav-quote:hover, .card-button:hover, .quote-submit:hover { box-shadow: 0 14px 30px rgba(8, 125, 244, 0.35); }
.button-outline { color: var(--green); background: rgba(255, 255, 255, 0.78); border-color: var(--green); }
.button-outline:hover { background: var(--surface); box-shadow: var(--shadow-soft); }
.button .icon-sprite { width: 34px; height: 34px; }
.button-phone-icon { width: 28px; height: 28px; object-fit: contain; }
.button-sparkle-icon { width: 30px; height: 30px; object-fit: contain; }
.hero .button-sparkle-icon { width: 38px; height: 38px; }
.hero .button { min-height: 72px; padding: 20px 28px; border-radius: 16px; font-size: 1.1rem; }
.hero .button-primary { width: 310px; min-width: 310px; height: 80px; min-height: 80px; padding: 15px 32px; border-radius: 100px; font-family: "Montserrat", Arial, sans-serif; font-size: 0.92rem; font-weight: 600; gap: 8px; }
.hero .button-outline { min-width: 236px; border-width: 2px; }
.instant-quote-arrow { flex: 0 0 auto; width: 18px; height: 18px; }
.sparkle { color: var(--lime); font-size: 1.05em; }
.arrow { font-size: 1.25em; line-height: 0.7; }
.icon-sprite {
  display: inline-block;
  flex: 0 0 auto;
  background-image: url("assets/bomfim-icon-sprite-web.png");
  background-repeat: no-repeat;
  background-size: 400% 300%;
}
.icon-shield { background-position: 0 0; }
.icon-location { background-position: 33.333% 0; }
.icon-medal { background-position: 66.667% 0; }
.icon-sparkle { background-position: 100% 0; }
.icon-heart-home { background-position: 0 50%; }
.icon-shield-leaf { background-position: 33.333% 50%; }
.icon-house-sparkle { background-position: 66.667% 50%; }
.icon-house-check { background-position: 100% 50%; }
.icon-checklist-home { background-position: 0 100%; }
.icon-calendar-clock { background-position: 33.333% 100%; }
.icon-cleaning-house { background-position: 66.667% 100%; }
.icon-calendar { background-position: 100% 100%; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--navy); transition: transform 180ms ease, opacity 180ms ease; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: min(960px, 100dvh);
  display: flex;
  align-items: center;
  padding: 196px 5vw 122px;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -12vw;
  bottom: -120px;
  left: -12vw;
  height: 180px;
  background: linear-gradient(105deg, #093ca7 0 18%, #11c8d0 38%, #0e9b57 60%, #082875 78%);
  clip-path: polygon(0 50%, 17% 75%, 34% 38%, 52% 66%, 70% 30%, 84% 60%, 100% 36%, 100% 100%, 0 100%);
  opacity: 0.96;
}
.hero-media { position: absolute; z-index: -2; inset: 0; overflow: hidden; background: var(--surface-soft); }
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(1.08) brightness(1.02); }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.46) 34%, rgba(255, 255, 255, 0.12) 62%, transparent 82%), linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 46%, rgba(255, 255, 255, 0.04) 100%);
}
.hero-content { width: min(760px, 57vw); margin-left: max(0px, 0.5vw); }
.eyebrow { margin: 0 0 14px; color: var(--green); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.17em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Playfair Display", Georgia, "Times New Roman", serif; color: var(--navy); }
h1 { margin-bottom: 24px; font-size: clamp(3.8rem, 5.55vw, 6.8rem); font-weight: 700; letter-spacing: -0.058em; line-height: 0.98; }
h1 span, h2 span { color: var(--green); }
.hero-copy { max-width: 540px; margin-bottom: 34px; color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.28rem); line-height: 1.55; }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 42px; color: var(--navy); font-size: 0.92rem; font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: 10px; }
.trust-icon { display: inline-block; width: 34px; height: 34px; border-radius: 50%; }
.family-owned-symbol { display: inline-block; flex: 0 0 auto; object-fit: contain; object-position: center; padding: 4px; border-radius: 50%; background: var(--blue-soft); }
.hero-trust .family-owned-symbol { width: 35px; height: 35px; }
.blue-icon { color: var(--blue-deep); background-color: var(--blue-soft); }
.green-icon { color: var(--green); background-color: rgba(21, 148, 66, 0.12); }
.hero-sentinel { position: absolute; top: 40px; height: 1px; width: 1px; pointer-events: none; }

.section { position: relative; padding: 132px max(28px, 6vw); }
.section-heading { max-width: 800px; margin: 0 auto 44px; text-align: center; }
.section-heading h2, .about-copy h2, .quote-copy h2 { margin-bottom: 18px; font-size: clamp(3rem, 5.35vw, 5.8rem); letter-spacing: -0.06em; line-height: 0.98; }
.section-heading > p:last-child { margin: 0 auto; max-width: 520px; color: var(--muted); font-size: 1.05rem; line-height: 1.55; }
.section-logo { width: 360px; max-height: 92px; margin: 0 auto 28px; object-fit: cover; object-position: center; }
.section-rule { display: flex; align-items: center; gap: 16px; max-width: 1100px; margin: 0 auto 48px; color: var(--green); font-size: 1.8rem; text-align: center; }
.section-rule::before, .section-rule::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, rgba(21, 148, 66, 0.48)); }
.section-rule::after { transform: scaleX(-1); }
.reviews-section {
  overflow: hidden;
  scroll-margin-top: 104px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.96), transparent 36%),
    linear-gradient(135deg, #f5faff 0%, #edf7ff 58%, #f5fff9 100%);
}
.reviews-shell { width: min(1460px, 100%); margin: 0 auto; }
.reviews-heading { max-width: 980px; margin: 0 auto; text-align: center; }
.reviews-heading h2 span { color: var(--navy); }
.reviews-heading h2 { margin-bottom: 24px; font-size: clamp(3.2rem, 5.45vw, 6.2rem); letter-spacing: -0.06em; line-height: 0.98; }
.reviews-summary { display: inline-flex; align-items: center; justify-content: center; gap: 13px; color: var(--navy); font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 700; }
.review-stars, .review-card-stars { color: #efa916; letter-spacing: 0.08em; }
.review-stars { font-size: 1.2em; line-height: 1; }
.reviews-heading > p { margin: 18px 0 0; color: var(--muted); font-size: 1.15rem; line-height: 1.5; }
.review-grid { width: 100%; margin-top: 52px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.review-card { min-height: 344px; padding: 38px 36px 32px; display: flex; flex-direction: column; border: 1px solid rgba(255, 255, 255, 0.98); border-radius: 20px; background: rgba(255, 255, 255, 0.9); box-shadow: 0 18px 44px rgba(31, 104, 190, 0.14); }
.review-card-stars { font-size: 1.35rem; line-height: 1; }
.review-card blockquote { margin: 30px 0 28px; color: var(--navy); font-family: "Playfair Display", Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 2vw, 2.05rem); font-weight: 600; letter-spacing: -0.035em; line-height: 1.2; }
.review-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.review-avatar { display: grid; place-items: center; flex: 0 0 auto; width: 64px; height: 64px; border: 3px solid rgba(255, 255, 255, 0.94); border-radius: 50%; color: var(--navy); font-size: 0.92rem; font-weight: 800; box-shadow: 0 8px 18px rgba(30, 86, 161, 0.16); }
.avatar-ana { background: radial-gradient(circle at 32% 28%, #fff 0 13%, transparent 14%), linear-gradient(145deg, #f6d2bc, #a9d9dd 64%, #2469ba); }
.avatar-jordan { background: radial-gradient(circle at 64% 28%, #fff 0 13%, transparent 14%), linear-gradient(145deg, #f1c39f, #567fa7 58%, #173b77); }
.avatar-maya { background: radial-gradient(circle at 34% 27%, #fff 0 13%, transparent 14%), linear-gradient(145deg, #f4d0b3, #c8e5cb 58%, #2a72c6); }
.review-author strong, .review-author small { display: block; }
.review-author strong { color: var(--navy); font-size: 1rem; }
.review-author small { margin-top: 4px; color: var(--muted); font-size: 0.86rem; }
.reviews-cta { margin: 42px auto 0; min-width: 258px; }
.trust-section { background: var(--surface-soft); }
.vanessa-section { display: block; background: linear-gradient(180deg, #eff7ff 0%, #eaf4ff 100%); }
.trust-section::before, .services-section::before, .work-section::before, .steps-section::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.65; background: radial-gradient(circle at 8% 38%, rgba(8, 125, 244, 0.08), transparent 27%), radial-gradient(circle at 96% 6%, rgba(163, 232, 111, 0.12), transparent 24%); }
.trust-grid { width: min(1200px, 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.trust-card { min-height: 300px; padding: 38px 26px 32px; border: 1px solid rgba(255, 255, 255, 0.96); border-radius: var(--radius-card); background: rgba(255, 255, 255, 0.78); box-shadow: var(--shadow); text-align: center; }
.feature-icon { display: inline-grid; place-items: center; width: 76px; height: 76px; margin-bottom: 22px; border-radius: 50%; font-family: Arial, Helvetica, sans-serif; font-size: 1.8rem; font-weight: 700; }
.trust-card .family-owned-symbol { padding: 7px; }
.trust-card h3 { margin-bottom: 15px; font-size: clamp(1.5rem, 2.3vw, 2rem); letter-spacing: -0.04em; }
.mini-rule { display: block; width: 42px; height: 3px; margin: 0 auto 18px; background: var(--green); border-radius: 3px; }
.green-rule { background: var(--green); }
.trust-card p { max-width: 260px; margin: 0 auto; color: var(--muted); line-height: 1.55; }

.vanessa-grid { width: min(1460px, 100%); margin: 0 auto; padding: 48px 50px; display: grid; grid-template-columns: minmax(400px, 0.92fr) minmax(0, 1.08fr); align-items: center; gap: clamp(48px, 6vw, 96px); border: 1px solid rgba(255, 255, 255, 0.95); border-radius: 32px; background: linear-gradient(125deg, rgba(239, 247, 255, 0.96), rgba(255, 255, 255, 0.9) 58%, rgba(232, 246, 255, 0.95)); box-shadow: var(--shadow); }
.vanessa-portrait-card { position: relative; min-width: 0; margin: 0; padding: 12px; overflow: hidden; border-radius: 28px; background: linear-gradient(135deg, var(--blue-soft), rgba(163, 232, 111, 0.3)); box-shadow: var(--shadow); }
.vanessa-portrait-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; border-radius: 20px; }
.vanessa-copy { min-width: 0; }
.vanessa-copy > .eyebrow { display: inline-flex; align-items: center; min-height: 58px; margin: 0 0 30px; padding: 14px 38px; border-radius: 999px; background: rgba(255, 255, 255, 0.9); box-shadow: var(--shadow-soft); color: var(--navy); font-size: 1.05rem; letter-spacing: 0; text-transform: none; }
.vanessa-copy h2 { max-width: 780px; margin: 0 0 22px; font-size: clamp(3.6rem, 6.1vw, 6.8rem); letter-spacing: -0.06em; line-height: 0.98; }
.vanessa-story { max-width: 570px; margin: 0 0 32px; text-align: left; }
.vanessa-story p { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.vanessa-highlights { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.vanessa-highlights span { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 12px; min-width: 0; padding: 18px 14px; border: 1px solid rgba(255, 255, 255, 0.96); border-radius: 18px; background: rgba(255, 255, 255, 0.78); box-shadow: var(--shadow-soft); color: var(--navy); font-size: 0.92rem; font-weight: 700; text-align: center; }
.vanessa-highlights strong { display: block; line-height: 1.25; }
.vanessa-symbol { display: block; flex: 0 0 auto; width: 82px; height: 82px; margin: 0 auto; object-fit: contain; object-position: center; }

.video-banner {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 24px;
  text-align: center;
  background: var(--navy);
}
.video-banner video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 27, 45, 0.55) 0%, rgba(15, 27, 45, 0.75) 100%);
}
.video-banner-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  color: var(--surface);
}
.video-banner-eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.video-banner h2 {
  margin: 0 0 16px;
  color: var(--surface);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.1;
}
.video-banner h2 .script {
  color: var(--blue);
  font-family: "Dancing Script", cursive;
  font-size: 1.1em;
  font-weight: 700;
}
.video-banner-content > p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.2rem);
  line-height: 1.55;
}
.about-grid { width: min(1460px, 100%); margin: 0 auto; padding: 48px 50px; display: grid; grid-template-columns: minmax(400px, 0.92fr) minmax(0, 1.08fr); align-items: center; gap: clamp(48px, 6vw, 96px); border: 1px solid rgba(255, 255, 255, 0.95); border-radius: 32px; background: linear-gradient(125deg, rgba(239, 247, 255, 0.96), rgba(255, 255, 255, 0.9) 58%, rgba(232, 246, 255, 0.95)); box-shadow: var(--shadow); }
.portrait-card { position: relative; min-width: 0; margin: 0; padding: 12px; border-radius: 28px; background: linear-gradient(135deg, var(--blue-soft), rgba(163, 232, 111, 0.3)); box-shadow: var(--shadow); }
.portrait-card::after { content: ""; position: absolute; right: -18px; bottom: -18px; z-index: -1; width: 45%; height: 45%; border-radius: 26px; background: linear-gradient(145deg, var(--blue), var(--green)); opacity: 0.24; }
.portrait-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 20px; }
.portrait-card figcaption { padding: 14px 8px 2px; color: var(--muted); font-size: 0.83rem; font-weight: 700; }
.about-copy > .eyebrow { display: inline-flex; align-items: center; min-height: 58px; margin: 0 0 30px; padding: 14px 38px; border-radius: 999px; background: rgba(255, 255, 255, 0.9); box-shadow: var(--shadow-soft); color: var(--navy); font-size: 1.05rem; letter-spacing: 0; text-transform: none; }
.about-copy h2 { margin-bottom: 22px; }
.about-copy > p:not(.eyebrow) { max-width: 570px; margin-bottom: 32px; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.about-highlights { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.about-highlights span { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: 18px 14px; border-radius: 18px; background: var(--surface-blue); color: var(--navy); font-size: 0.82rem; font-weight: 700; }
.about-highlights .feature-icon { width: 42px; height: 42px; margin: 0; font-size: 1.2rem; }

.services-section { background: var(--surface-soft); }
.services-grid { width: min(1460px, 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.service-card { position: relative; overflow: hidden; padding-bottom: 24px; border: 1px solid rgba(255, 255, 255, 0.98); border-radius: var(--radius-card); background: rgba(255, 255, 255, 0.9); box-shadow: var(--shadow); }
.service-card.is-expanded { box-shadow: 0 22px 62px rgba(30, 86, 161, 0.18); }
.service-card > img { width: 100%; aspect-ratio: 1.72 / 1; object-fit: cover; }
.service-icon { display: grid; place-items: center; width: 86px; height: 86px; margin: -38px auto 14px; position: relative; border: 6px solid #fff; border-radius: 50%; color: var(--blue); background-color: var(--blue-soft); box-shadow: var(--shadow-soft); font-size: 2rem; font-weight: 700; }
.green-service-icon { color: var(--green); background-color: rgba(163, 232, 111, 0.24); }
.service-card h3 { margin: 0 18px 12px; text-align: center; font-size: clamp(1.55rem, 2.1vw, 2.15rem); letter-spacing: -0.04em; }
.service-card p { min-height: 70px; margin: 0 28px 24px; color: var(--muted); font-size: 1rem; line-height: 1.5; text-align: center; }
.card-button { display: flex; width: fit-content; min-width: 215px; margin: 0 auto; }
.service-toggle { border: 0; }
.service-toggle-icon { display: inline-grid; place-items: center; width: 22px; height: 22px; font-size: 1.4rem; font-weight: 500; line-height: 1; transition: transform 280ms var(--ease); }
.service-card.is-expanded .service-toggle-icon { transform: rotate(45deg); }
.service-details { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 420ms var(--ease), opacity 220ms ease; }
.service-details-inner { min-height: 0; overflow: hidden; padding: 0 28px; transition: padding 420ms var(--ease); }
.service-card.is-expanded .service-details { grid-template-rows: 1fr; opacity: 1; }
.service-card.is-expanded .service-details-inner { padding: 0 28px 2px; }
.service-details-content { padding-top: 24px; border-top: 1px solid var(--line); }
.service-details-lead { min-height: 0 !important; margin: 0 0 20px !important; color: var(--muted); font-size: 0.95rem !important; line-height: 1.55 !important; text-align: left !important; }
.service-details h4 { margin: 0 0 12px; color: var(--navy); font-size: 0.92rem; letter-spacing: 0.04em; text-transform: uppercase; }
.service-details ul { margin: 0; padding: 0; list-style: none; }
.service-details li { position: relative; margin: 0 0 10px; padding-left: 22px; color: var(--muted); font-size: 0.92rem; line-height: 1.45; }
.service-details li::before { content: "✓"; position: absolute; top: 0; left: 0; color: var(--green); font-weight: 800; }
.service-detail-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; color: var(--blue-deep); font-size: 0.92rem; font-weight: 800; }
.service-detail-link:hover, .service-detail-link:focus-visible { color: var(--green); }

.work-section { background: var(--surface); }
.work-grid { width: min(1460px, 100%); margin: 0 auto 38px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.work-card { min-width: 0; padding: 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.96); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow-soft); text-align: left; transition: transform 180ms var(--ease), box-shadow 180ms var(--ease); }
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.work-image { --slider: 50%; position: relative; display: block; overflow: hidden; aspect-ratio: 0.92 / 1; background: #eef5f8; cursor: ew-resize; }
.work-half { position: absolute; inset: 0; background-image: var(--work-image); background-repeat: no-repeat; background-size: 200% 100%; pointer-events: none; }
.work-after { background-position: right center; }
.work-before { background-position: left center; clip-path: inset(0 calc(100% - var(--slider)) 0 0); }
.work-range { position: absolute; inset: 0; z-index: 4; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.work-range:focus-visible { opacity: 0.01; outline: 3px solid rgba(21, 148, 66, 0.34); outline-offset: -6px; }
.work-label { position: absolute; top: 18px; z-index: 1; padding: 8px 14px; border-radius: 8px; color: #fff; font-size: 0.78rem; font-weight: 700; line-height: 1; }
.work-label-before { left: 14px; background: rgba(41, 48, 58, 0.72); }
.work-label-after { right: 14px; background: rgba(10, 144, 62, 0.88); }
.work-divider { position: absolute; inset: 0 auto 0 var(--slider); z-index: 3; width: 3px; transform: translateX(-50%); background: rgba(255,255,255,0.96); box-shadow: 0 0 0 1px rgba(7,29,84,0.08); pointer-events: none; }
.work-divider::after { content: "‹  ›"; position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 46px; height: 46px; transform: translate(-50%, -50%); border-radius: 50%; color: var(--navy); background: #fff; box-shadow: var(--shadow-soft); font-size: 1.25rem; letter-spacing: 0.12em; }
.work-caption { display: flex; align-items: center; gap: 12px; min-height: 72px; padding: 14px 18px; color: var(--ink); font-size: 1rem; font-weight: 700; }
.room-sprite { display: inline-block; flex: 0 0 auto; width: 34px; height: 34px; background-image: url("assets/bomfim-room-icon-sprite-web.png"); background-repeat: no-repeat; background-size: 400% 100%; }
.room-bed { background-position: 0 0; }
.room-oven { background-position: 33.333% 0; }
.room-tub { background-position: 66.667% 0; }
.room-washer { background-position: 100% 0; }
.centered-button { display: flex; width: fit-content; margin: 0 auto; }

.steps-section { background: var(--surface-soft); }
.steps-grid { position: relative; width: min(1120px, 100%); margin: 0 auto 34px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.steps-grid::before { content: ""; position: absolute; top: 64px; right: 14%; left: 14%; z-index: 0; height: 2px; background: linear-gradient(90deg, var(--blue), #35bbdb, var(--green)); opacity: 0.7; }
.step-card { position: relative; z-index: 1; min-height: 320px; padding: 28px 22px 26px; border: 1px solid rgba(255, 255, 255, 0.98); border-radius: 20px; background: rgba(255, 255, 255, 0.84); box-shadow: var(--shadow-soft); text-align: center; }
.step-icon { display: grid; place-items: center; width: 76px; height: 76px; margin: 0 auto 14px; border: 6px solid var(--surface); border-radius: 50%; box-shadow: var(--shadow-soft); font-size: 1.7rem; font-weight: 700; }
.step-number { display: block; margin-bottom: 6px; color: var(--blue); font-size: 1.35rem; font-weight: 800; letter-spacing: -0.04em; }
.green-number { color: var(--green); }
.step-card h3 { margin-bottom: 10px; font-size: 1.35rem; letter-spacing: -0.04em; }
.step-card p { max-width: 220px; margin: 0 auto; color: var(--muted); line-height: 1.45; }

.quote-section { padding-top: 122px; padding-bottom: 122px; background: linear-gradient(90deg, rgba(243,249,255,0.96), rgba(225,239,255,0.78) 60%, rgba(217,243,223,0.35)), url("assets/quote-supplies.jpg") center / cover no-repeat; }
.quote-layout { width: min(1280px, 100%); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr); align-items: center; gap: clamp(42px, 7vw, 120px); }
.quote-copy .section-logo { margin-left: 0; }
.quote-copy h2 { font-size: clamp(3.6rem, 6.1vw, 6.8rem); }
.quote-copy > p:not(.eyebrow) { max-width: 470px; color: var(--muted); font-size: 1.15rem; line-height: 1.55; }
.quote-promises { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 560px; margin-top: 34px; padding: 18px 12px; border: 1px solid rgba(255,255,255,0.92); border-radius: 20px; background: rgba(255,255,255,0.74); box-shadow: var(--shadow-soft); }
.quote-promises span { display: flex; flex-direction: column; align-items: center; gap: 9px; color: var(--navy); font-size: 0.83rem; font-weight: 700; }
.quote-promises span + span { border-left: 1px solid var(--line); }
.quote-promises .feature-icon { width: 40px; height: 40px; margin: 0; font-size: 1.2rem; }
.quote-card { padding: clamp(24px, 3vw, 38px); border: 1px solid rgba(255,255,255,0.96); border-radius: 28px; background: rgba(255,255,255,0.86); box-shadow: var(--shadow); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.booking-card { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.booking-card-kicker { color: var(--green); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.booking-card h3 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.65rem); letter-spacing: -0.045em; line-height: 1.02; }
.booking-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.booking-card .button { width: 100%; margin-top: 6px; }
.booking-note { font-size: 0.8rem; }
.quote-card label { display: flex; align-items: center; gap: 11px; margin: 0 0 10px; color: var(--navy); font-size: 1.06rem; font-weight: 800; }
.quote-card label:not(:first-of-type) { margin-top: 20px; }
.quote-card label > span { width: 34px; height: 34px; color: var(--blue); font-size: 1.4rem; }
.green-text { color: var(--green) !important; }
.select-wrap { position: relative; }
.select-wrap::after { content: "⌄"; position: absolute; top: 50%; right: 20px; transform: translateY(-56%); color: var(--blue-deep); pointer-events: none; font-size: 1.35rem; }
.quote-card select, .modal-card input, .modal-card textarea { width: 100%; min-height: 58px; padding: 0 48px 0 18px; border: 1px solid rgba(15, 59, 139, 0.17); border-radius: 14px; outline: none; color: var(--muted); background: rgba(255,255,255,0.88); appearance: none; }
.quote-card select:focus, .modal-card input:focus, .modal-card textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(8,125,244,0.13); }
.quote-submit { width: 100%; min-height: 58px; margin-top: 26px; border: 0; border-radius: 18px; font-size: 1.08rem; font-weight: 800; cursor: pointer; }
.form-status { min-height: 1.3em; margin: 14px 0 0; color: var(--green); font-size: 0.9rem; font-weight: 700; }

.site-footer { padding: 86px max(24px, 6vw) 20px; color: rgba(255,255,255,0.9); background: linear-gradient(120deg, #06194d, #062d94 70%, #08379d); }
.footer-grid { width: min(1400px, 100%); margin: 0 auto 54px; display: grid; grid-template-columns: 1.75fr 0.8fr 0.8fr 1fr; gap: 48px; }
.footer-brand img { width: 410px; max-height: 106px; object-fit: cover; object-position: center; filter: brightness(0) invert(1); }
.footer-brand h2 { margin: 30px 0 10px; color: #fff; font-size: clamp(2rem, 3.2vw, 3.7rem); letter-spacing: -0.06em; line-height: 0.96; }
.footer-brand h2 span { color: var(--lime); }
.footer-brand p { margin-bottom: 26px; color: rgba(255,255,255,0.72); }
.footer-trust { display: flex; flex-wrap: wrap; gap: 10px 18px; color: rgba(255,255,255,0.74); font-size: 0.76rem; }
.footer-trust span { display: inline-flex; align-items: center; gap: 8px; }
.footer-trust .family-owned-symbol { width: 30px; height: 30px; padding: 3px; }
.footer-trust .icon-sprite { width: 30px; height: 30px; filter: grayscale(1) brightness(4); }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 17px; }
.footer-column h3 { margin: 0 0 4px; color: var(--lime); font-family: Arial, Helvetica, sans-serif; font-size: 1.04rem; }
.footer-column a, .footer-column span { color: rgba(255,255,255,0.86); font-size: 0.95rem; }
.footer-column a:hover { color: var(--lime); }
.footer-contact a:not(.button) { line-height: 1.55; }
.footer-contact b { display: inline-block; width: 24px; color: var(--lime); font-size: 1.1rem; }
.contact-icon { display: inline-block; width: 28px; height: 28px; margin-right: 8px; vertical-align: middle; object-fit: contain; }
.contact-symbol { vertical-align: middle; }
.footer-contact small { padding-left: 29px; color: rgba(255,255,255,0.65); font-size: 0.82rem; }
.footer-contact .button { margin-top: 8px; }
.footer-bottom { width: min(1400px, 100%); display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.68); font-size: 0.82rem; }
.social-links { display: flex; gap: 12px; }
.social-links a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.35); border-radius: 50%; color: #fff; font-weight: 800; }
.social-links a:hover { border-color: var(--lime); color: var(--lime); }

.modal, .lightbox, .booking-modal { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; padding: 22px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 180ms ease, visibility 180ms ease; }
.modal.is-open, .lightbox.is-open, .booking-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(2, 16, 54, 0.58); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.modal-card { position: relative; width: min(520px, 100%); max-height: min(740px, calc(100dvh - 44px)); overflow: auto; padding: 34px; border-radius: 24px; background: var(--surface); box-shadow: 0 28px 90px rgba(1, 19, 65, 0.3); }
.modal-card h2 { margin-bottom: 12px; font-size: clamp(2rem, 6vw, 3rem); letter-spacing: -0.05em; line-height: 1; }
.modal-card > p:not(.eyebrow), .modal-card form label { color: var(--muted); }
.modal-card form { display: grid; gap: 10px; margin-top: 24px; }
.modal-card form label { margin-top: 8px; font-size: 0.84rem; font-weight: 700; }
.modal-card input, .modal-card textarea { min-height: 48px; padding: 13px 14px; resize: vertical; }
.modal-card .button { margin-top: 10px; }
.modal-close, .lightbox-close { position: absolute; top: 14px; right: 14px; z-index: 2; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; color: var(--navy); background: var(--surface); font-size: 1.45rem; line-height: 1; cursor: pointer; }
.booking-modal { z-index: 60; padding: 24px 20px; background: rgba(2, 16, 54, 0.62); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.booking-modal-shell { position: relative; width: min(1040px, 100%); height: min(850px, calc(100dvh - 48px)); overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 22px; background: #fff; box-shadow: 0 28px 90px rgba(1, 19, 65, 0.34); }
.booking-modal iframe { display: block; width: 100%; height: 100%; border: 0; background: #fff; }
.booking-modal-close { top: 8px; right: 8px; }
.lightbox { background: rgba(0, 15, 53, 0.86); }
.lightbox img { width: min(1100px, 100%); max-height: 88dvh; object-fit: contain; border-radius: 16px; box-shadow: 0 24px 90px rgba(0,0,0,0.4); }
.lightbox-close { top: 24px; right: 24px; color: var(--navy); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 70ms; }
.reveal:nth-child(3) { transition-delay: 140ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .desktop-nav { gap: 12px; }
  .desktop-nav a { font-size: 0.84rem; }
  .brand img { width: 210px; height: 56px; }
  .nav-shell { gap: 12px; }
  .nav-quote { min-width: 0; padding: 11px 20px; font-size: 0.82rem; }
  .hero { padding-left: 5vw; padding-right: 5vw; }
  .hero-content { width: min(610px, 60vw); }
  .work-grid { max-width: 640px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr; gap: 28px; }
}

@media (max-width: 800px) {
  .site-header { padding: 12px 20px; }
  .site-header.is-scrolled { padding: 8px 20px; }
  .nav-shell { position: relative; min-height: 68px; gap: 12px; padding: 0; justify-content: space-between; }
  .brand img { width: 203px; height: 52px; }
  .site-header.is-scrolled .brand img { width: 190px; height: 46px; }
  .brand { margin: 0; }
  .desktop-nav { display: none; }
  .nav-quote { display: inline-flex; flex: 0 0 auto; min-width: 120px; min-height: 42px; padding: 10px 18px; font-size: 0.8rem; white-space: nowrap; }
  .menu-toggle, .mobile-menu { display: none !important; }
  .botanical-layer { display: none; }
  .hero { min-height: 100svh; align-items: flex-start; padding: 184px 34px 34px; }
  .hero-content { width: 100%; min-height: calc(100svh - 218px); margin-left: 0; display: flex; flex-direction: column; text-align: left; }
  .hero-media { top: 0; }
  .hero-media img { height: 100%; object-position: 55% center; filter: saturate(1.14) brightness(1.02); }
  .hero-media::after { background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.8) 34%, rgba(255,255,255,0.18) 52%, transparent 66%), linear-gradient(90deg, rgba(255,255,255,0.74) 0%, rgba(255,255,255,0.2) 48%, transparent 78%); }
  .hero::after { display: none; }
  h1 { max-width: 600px; margin-right: auto; margin-left: 0; }
  .hero-copy { max-width: 500px; margin-right: auto; margin-left: 0; }
  .hero-trust { justify-content: space-between; gap: 14px 20px; margin-top: auto; }
  .section { padding: 86px 20px; }
  .reviews-section { padding: 64px 20px; }
  .reviews-heading h2 { font-size: 2.35rem; line-height: 1.08; }
  .reviews-heading > p { margin-top: 14px; font-size: 1rem; }
  .reviews-summary { gap: 9px; font-size: 1.05rem; }
  .review-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 48px; }
  .review-card { min-height: 0; padding: 32px 28px; }
  .review-card blockquote { margin: 28px 0 30px; font-size: 1.58rem; line-height: 1.24; }
  .reviews-cta { margin-top: 32px; }
  .trust-grid, .steps-grid { grid-template-columns: 1fr; max-width: 540px; }
  .trust-section { display: none; }
  .vanessa-section { display: block; padding-top: 64px; padding-bottom: 64px; }
  .vanessa-grid { max-width: 580px; grid-template-columns: 1fr; gap: 32px; padding: 24px 18px 30px; border-radius: 24px; }
  .vanessa-copy > .eyebrow { min-height: 48px; margin-bottom: 20px; padding: 11px 24px; font-size: 0.92rem; }
  .vanessa-copy h2 { margin-bottom: 22px; font-size: clamp(2.5rem, 10vw, 3.7rem); line-height: 1.02; }
  .vanessa-portrait-card { margin: 0; padding: 8px; border-radius: 22px; }
  .vanessa-portrait-card img { aspect-ratio: 0.8 / 1; object-position: center; border-radius: 16px; }
  .vanessa-story { margin-bottom: 26px; }
  .vanessa-story p { font-size: 1rem; line-height: 1.6; }
  .vanessa-symbol { width: 56px; height: 56px; margin: 0; }
  .vanessa-highlights strong { font-size: 0.78rem; line-height: 1.2; }
  .vanessa-highlights { grid-template-columns: 1fr; }
  .vanessa-highlights span { flex-direction: row; align-items: center; }
.video-banner { min-height: 62vh; padding: 80px 24px; }
  .video-banner-eyebrow { margin-bottom: 8px; font-size: 0.66rem; letter-spacing: 2.6px; }
  .video-banner h2 { margin-bottom: 8px; font-size: clamp(1.7rem, 6.4vw, 2.25rem); }
  .video-banner-content > p:last-child { max-width: 500px; font-size: 0.84rem; line-height: 1.4; }
  .trust-card { min-height: 0; padding: 32px 24px; }
  .about-grid, .quote-layout { grid-template-columns: 1fr; }
  .about-grid { max-width: 580px; gap: 46px; padding: 30px 22px 34px; }
  .about-highlights { grid-template-columns: 1fr; }
  .about-highlights span { flex-direction: row; align-items: center; }
  .services-grid { max-width: 760px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
  .services-grid .service-card:last-child { width: calc((100% - 22px) / 2); grid-column: 1 / -1; justify-self: center; }
  .work-grid { max-width: 640px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .steps-grid::before { top: 54px; right: 8%; left: 8%; }
  .step-card { min-height: 0; padding: 22px 18px 24px; }
  .step-icon { width: 66px; height: 66px; margin-bottom: 10px; border-width: 5px; font-size: 1.45rem; }
  .step-number { margin-bottom: 4px; font-size: 1.2rem; }
  .step-card h3 { margin-bottom: 8px; font-size: 1.28rem; }
  .step-card p { font-size: 0.92rem; line-height: 1.45; }
  .quote-layout { max-width: 580px; }
  .quote-card { order: -1; }
  .quote-copy .section-logo { margin-left: 0; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 26px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .services-grid { max-width: 540px; grid-template-columns: 1fr; gap: 32px; }
  .services-grid .service-card:last-child { width: auto; grid-column: auto; justify-self: stretch; }
  .service-card.is-expanded .service-details-inner { padding-right: 22px; padding-left: 22px; }
}

@media (max-width: 500px) {
  .brand img { width: 203px; height: 52px; }
  .hero { min-height: 104svh; padding: 184px 34px 36px; }
  .hero::after { bottom: -100px; height: 125px; }
  .hero-content { min-height: calc(104svh - 249px); }
  .hero-media img { filter: saturate(1.18) brightness(1.02); }
  .hero-media::after { background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.8) 34%, rgba(255,255,255,0.18) 52%, transparent 66%), linear-gradient(90deg, rgba(255,255,255,0.74) 0%, rgba(255,255,255,0.2) 48%, transparent 78%); }
  h1 { max-width: none; font-size: clamp(42px, 11.2vw, 48px); letter-spacing: -0.035em; line-height: 0.98; white-space: normal; }
  .hero-copy { max-width: 300px; margin-bottom: 24px; font-size: 16px; line-height: 1.45; }
  .button-row { align-items: flex-start; flex-direction: column; gap: 10px; }
  .hero .button { width: min(100%, 285px); min-width: 0; min-height: 50px; padding: 10px 14px; border-radius: 13px; font-size: 14px; }
  .hero .button-primary { width: min(100%, 285px); min-width: 0; height: 50px; min-height: 50px; padding: 10px 14px; border-radius: 100px; font-size: 14px; }
  .hero .button-sparkle-icon { width: 22px; height: 22px; }
  .hero .button-phone-icon { width: 20px; height: 20px; }
  .hero-trust { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: 100%; gap: 8px; align-items: start; margin-top: auto; }
  .hero-trust span { min-width: 0; min-height: 60px; flex-direction: column; align-items: center; gap: 5px; font-size: 10.5px; line-height: 1.2; text-align: center; }
  .hero-trust .trust-icon { width: 30px; height: 30px; }
  .hero-trust .family-owned-symbol { width: 30px; height: 30px; padding: 3px; }
.video-banner { min-height: 62vh; padding: 80px 24px; }
  .section-heading h2, .about-copy h2, .quote-copy h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .reviews-heading h2 { font-size: clamp(1.9rem, 8vw, 2.25rem); }
  .section-logo { width: 250px; }
  .work-grid { gap: 12px; }
  .work-caption { min-height: 62px; gap: 8px; padding: 12px 10px; font-size: 0.75rem; }
  .work-caption b { font-size: 1.15rem; }
  .quote-promises { gap: 4px; padding: 14px 5px; }
  .quote-promises span { font-size: 0.71rem; text-align: center; }
  .quote-card { padding: 22px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .booking-modal { padding: 24px 20px; }
  .booking-modal-shell { width: 100%; height: calc(100dvh - 48px); border-radius: 16px; }
}

@media (max-width: 400px) {
  .hero { padding-right: 24px; padding-left: 24px; }
  h1 { font-size: 42px; }
  .hero-trust span { font-size: 11.5px; }
}
