:root {
  --red: #b6070b;
  --red-dark: #8f0306;
  --red-soft: #f8eaea;
  --ink: #171717;
  --muted: #67615e;
  --surface: #f6f4f1;
  --line: #dedad5;
  --white: #fff;
  --shadow: 0 16px 38px rgba(22, 18, 16, .09);
  --radius: 16px;
  --radius-lg: 24px;
  --shell: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body, button, input, select, textarea { font-family: Arial, Helvetica, sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, summary { cursor: pointer; }
h1, h2, h3, p, figure { margin-top: 0; }
h1, h2, h3 { margin-bottom: .6em; font-weight: 700; letter-spacing: -.035em; line-height: 1.1; }
h1 { font-size: clamp(2.6rem, 4.8vw, 4.75rem); }
h2 { font-size: clamp(1.9rem, 3vw, 3.1rem); }
h3 { font-size: 1.18rem; }
::selection { background: var(--red); color: var(--white); }
:focus-visible { outline: 3px solid #f0b8ba; outline-offset: 3px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -100px;
  left: 16px;
  padding: 10px 15px;
  border-radius: 7px;
  background: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 16px; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-muted { background: var(--surface); }
.section-ink { background: var(--ink); color: var(--white); }
.section-ink h1, .section-ink h2, .section-ink h3, .section-ink p { color: inherit; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: var(--red);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow > span { width: 24px; height: 3px; flex: 0 0 auto; background: currentColor; }
.section-ink .eyebrow, .contact-panel .eyebrow, .campaign-request .eyebrow, .cta-band .eyebrow { color: #ffc2c4; }
.section-heading { max-width: 780px; margin-bottom: 42px; }
.section-heading h2 { margin-bottom: 15px; }
.section-heading > p:last-child { max-width: 690px; margin-bottom: 0; color: var(--muted); font-size: 1.02rem; }
.section-heading-center { margin-inline: auto; text-align: center; }
.section-heading-center .eyebrow { justify-content: center; }
.section-heading-center > p:last-child { margin-inline: auto; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: var(--white); }
.button-primary:hover { background: var(--red-dark); }
.button-outline { border-color: var(--ink); background: transparent; color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--white); }
.button-ghost { border-color: var(--line); background: var(--white); }
.button-light { border-color: var(--white); background: var(--white); color: var(--ink); }
.button-dark-outline { border-color: rgba(255,255,255,.55); color: var(--white); }
.button-text { min-height: 0; padding-inline: 8px; color: var(--red); }
.button-compact { min-height: 42px; padding: 10px 14px; font-size: .78rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-weight: 700; }

.utility-bar { background: var(--ink); color: #dedbd8; font-size: .75rem; }
.utility-inner { min-height: 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-inner p, .utility-inner div { margin: 0; }
.utility-inner p, .utility-inner div { display: flex; align-items: center; gap: 8px; }
.utility-inner p { color: var(--white); font-weight: 700; }
.utility-inner div { gap: 10px; }
.utility-inner a:hover { color: var(--white); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
}
.header-inner { min-height: 72px; display: flex; align-items: center; gap: 24px; }
.brand { width: 66px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(15px, 1.45vw, 23px); margin-left: auto; }
.desktop-nav > a, .services-menu > summary { padding: 10px 0; font-size: .8rem; font-weight: 700; white-space: nowrap; }
.desktop-nav > a { position: relative; }
.desktop-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}
.desktop-nav > a:hover::after { transform: scaleX(1); }
.services-menu { position: relative; }
.services-menu > summary { display: flex; align-items: center; gap: 5px; list-style: none; }
.services-menu > summary::-webkit-details-marker { display: none; }
.services-menu > summary span { color: var(--red); }
.service-menu-panel {
  position: absolute;
  z-index: 20;
  top: calc(100% + 13px);
  left: -100px;
  width: min(760px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: .8fr .8fr 1.4fr;
  gap: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.service-menu-panel > div > p { margin-bottom: 12px; color: var(--red); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.service-menu-panel > div > a { display: flex; align-items: center; gap: 9px; padding: 7px 0; color: #383431; font-size: .77rem; font-weight: 700; }
.service-menu-panel > div > a svg { color: var(--red); }
.service-menu-panel .all-services-link {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--red);
  font-size: .79rem;
  font-weight: 700;
}
.header-actions { display: flex; align-items: center; gap: 8px; }
.mobile-menu { display: none; margin-left: auto; }
.mobile-menu > summary {
  width: 44px;
  height: 44px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  list-style: none;
}
.mobile-menu > summary::-webkit-details-marker { display: none; }
.mobile-menu > summary span { width: 100%; height: 2px; display: block; background: var(--ink); }
.mobile-menu > nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  display: grid;
  padding: 14px 20px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.mobile-menu > nav > a, .mobile-menu > nav > details > summary { padding: 11px 3px; border-bottom: 1px solid var(--line); font-size: .88rem; font-weight: 700; }
.mobile-menu > nav > details > summary { display: flex; justify-content: space-between; list-style: none; }
.mobile-menu > nav .service-menu-panel { position: static; width: 100%; grid-template-columns: 1fr; gap: 14px; padding: 18px 8px; border: 0; box-shadow: none; }
.mobile-menu .mobile-menu-call { margin-top: 12px; padding: 13px; border: 0; border-radius: 8px; background: var(--red); color: var(--white); text-align: center; }

.home-hero { overflow: hidden; background: #faf9f7; }
.home-hero-grid {
  min-height: 550px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  align-items: center;
  gap: 68px;
  padding-block: 54px 60px;
}
.home-hero-copy h1 { max-width: 700px; margin-bottom: 20px; font-weight: 700; }
.home-hero-copy > p:not(.eyebrow) { max-width: 650px; margin-bottom: 26px; color: var(--muted); font-size: 1.06rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 25px 0 0; padding: 0; list-style: none; }
.hero-points li { display: flex; align-items: center; gap: 7px; color: #504a47; font-size: .79rem; font-weight: 700; }
.hero-points svg { color: var(--red); }
.home-visual { position: relative; min-height: 430px; }
.home-visual::before {
  position: absolute;
  top: 12px;
  right: -32px;
  width: 72%;
  height: 76%;
  border-radius: var(--radius-lg);
  background: var(--red);
  content: "";
}
.home-visual figure { position: absolute; z-index: 1; overflow: hidden; margin: 0; border: 6px solid var(--white); box-shadow: var(--shadow); }
.home-visual figure img { width: 100%; height: 100%; object-fit: cover; }
.home-visual-main { top: 0; right: 0; width: 85%; height: 350px; border-radius: var(--radius-lg) 0 var(--radius-lg) var(--radius-lg); }
.home-visual-secondary { bottom: 0; left: 0; width: 43%; height: 175px; border-radius: var(--radius); }
.availability-card {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 4px;
  min-width: 238px;
  padding: 14px 18px;
  border-left: 4px solid var(--red);
  background: var(--white);
  box-shadow: var(--shadow);
}
.availability-card span { display: block; color: var(--red); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.availability-card strong { display: block; margin: 2px 0; font-size: 1.08rem; }
.availability-card p { margin: 0; color: var(--muted); font-size: .72rem; }

.page-hero { overflow: hidden; border-bottom: 1px solid var(--line); background: #faf9f7; }
.page-hero-grid {
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .55fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
  padding-block: 48px;
}
.page-hero-image .page-hero-grid { min-height: 475px; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); }
.page-hero-copy { position: relative; z-index: 2; }
.page-hero h1 { max-width: 820px; margin-bottom: 18px; font-size: clamp(2.55rem, 4.3vw, 4.25rem); font-weight: 700; }
.page-hero-copy > p:not(.eyebrow) { max-width: 690px; margin-bottom: 24px; color: var(--muted); font-size: 1.02rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 17px; color: #8a8480; font-size: .7rem; }
.breadcrumbs span { display: flex; gap: 6px; }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs i { font-style: normal; }
.hero-media { position: relative; }
.hero-media::before { position: absolute; top: -18px; right: -20px; width: 56%; height: 70%; border-radius: var(--radius-lg); background: var(--red); content: ""; }
.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 390px;
  aspect-ratio: 4 / 3;
  border: 6px solid var(--white);
  border-radius: var(--radius-lg) 0 var(--radius-lg) var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}
.hero-mark { position: relative; width: 220px; aspect-ratio: 1; justify-self: end; border-radius: 50%; background: var(--ink); }
.hero-mark span { position: absolute; top: 50%; left: 50%; color: var(--white); font-size: 7rem; font-weight: 700; line-height: 1; transform: translate(-50%, -53%); }
.hero-mark i { position: absolute; right: 3%; bottom: 6%; width: 42%; aspect-ratio: 1; border: 15px solid var(--white); border-radius: 50%; background: var(--red); }

.trust-bar { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid article { min-height: 100px; display: flex; align-items: center; gap: 14px; padding: 20px 22px; border-right: 1px solid var(--line); }
.trust-grid article:first-child { border-left: 1px solid var(--line); }
.trust-grid svg { flex: 0 0 auto; color: var(--red); }
.trust-grid h2 { margin-bottom: 3px; font-size: .9rem; letter-spacing: -.01em; }
.trust-grid p { margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.45; }

.priority-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.priority-card { overflow: hidden; display: grid; grid-template-columns: .82fr 1.18fr; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.priority-media img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.priority-body { display: flex; flex-direction: column; align-items: flex-start; padding: 34px; }
.service-category { margin: 0 0 10px; color: var(--red); font-size: .67rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.priority-body h2 { margin-bottom: 14px; font-size: clamp(1.7rem, 2.4vw, 2.5rem); }
.priority-body > p:not(.service-category) { margin-bottom: 22px; color: var(--muted); font-size: .88rem; }
.priority-body .button { margin-top: auto; }

.category-jump { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 54px; }
.category-jump a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); font-size: .84rem; font-weight: 700; }
.category-jump span { color: var(--muted); font-size: .7rem; font-weight: 400; }
.service-group { scroll-margin-top: 100px; margin-bottom: 64px; }
.service-group:last-child { margin-bottom: 0; }
.service-group-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.service-group-heading h2, .service-group-heading h3 { margin: 0; font-size: 1.45rem; }
.service-group-heading p { margin: 0; color: var(--muted); font-size: .76rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.service-card { overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform 160ms ease, box-shadow 160ms ease; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(22,22,22,.07); }
.service-card-image { overflow: hidden; }
.service-card-image img { width: 100%; height: 185px; object-fit: cover; transition: transform 220ms ease; }
.service-card:hover .service-card-image img { transform: scale(1.025); }
.service-card-body { position: relative; display: flex; flex: 1; flex-direction: column; padding: 26px; }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; margin: -51px 0 18px; border: 4px solid var(--white); border-radius: 50%; background: var(--red); color: var(--white); }
.service-card h3 { margin-bottom: 9px; }
.service-card-body > p:not(.service-category) { margin-bottom: 21px; color: var(--muted); font-size: .83rem; }
.service-card-body > a:last-child { display: flex; justify-content: space-between; margin-top: auto; padding-top: 15px; border-top: 1px solid var(--line); color: var(--red); font-size: .78rem; font-weight: 700; }

.problem-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; }
.problem-card { min-height: 250px; display: flex; flex-direction: column; align-items: flex-start; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); }
.problem-card svg { margin-bottom: 36px; color: var(--red); }
.problem-card h3 { margin-bottom: 10px; }
.problem-card p { margin-bottom: 23px; color: var(--muted); font-size: .83rem; }
.problem-card > span { margin-top: auto; color: var(--red); font-size: .76rem; font-weight: 700; }

.standards-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 74px; }
.standards-grid > div:first-child h2 { margin-bottom: 17px; }
.standards-grid > div:first-child > p:not(.eyebrow) { margin-bottom: 0; color: #c9c4c0; }
.standards-list { border-top: 1px solid #3b3b3b; }
.standards-list article { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 21px 0; border-bottom: 1px solid #3b3b3b; }
.standards-list article > span { color: #ffb8ba; font-size: .72rem; font-weight: 700; letter-spacing: .08em; }
.standards-list h3 { margin-bottom: 5px; font-size: 1rem; }
.standards-list p { margin: 0; color: #bbb6b2; font-size: .8rem; }

.check-list { display: grid; gap: 11px; margin: 0 0 26px; padding: 0; list-style: none; }
.check-list-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 22px; }
.check-list li { display: flex; align-items: flex-start; gap: 9px; color: #413c39; font-size: .84rem; font-weight: 700; }
.check-list .check-icon { flex: 0 0 auto; margin-top: 3px; color: var(--red); }
.section-ink .check-list li, .price-disclosure .check-list li { color: #eee9e7; }

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; }
.process-grid li { min-height: 225px; padding: 28px; border: 1px solid var(--line); border-right: 0; background: var(--white); }
.process-grid li:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.process-grid li:last-child { border-right: 1px solid var(--line); border-radius: 0 var(--radius) var(--radius) 0; }
.process-grid li > span { display: block; margin-bottom: 38px; color: var(--red); font-size: .74rem; font-weight: 700; letter-spacing: .08em; }
.process-grid h3 { margin-bottom: 10px; font-size: 1.06rem; }
.process-grid p { margin: 0; color: var(--muted); font-size: .8rem; }

.property-overview { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 70px; }
.property-overview .section-heading { margin-bottom: 18px; }
.property-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.property-cards article { min-height: 220px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.property-cards svg { margin-bottom: 35px; color: var(--red); }
.property-cards h3 { margin-bottom: 9px; }
.property-cards p { margin: 0; color: var(--muted); font-size: .82rem; }

.work-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.work-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.work-preview-grid a { position: relative; overflow: hidden; border-radius: 12px; }
.work-preview-grid img { width: 100%; height: 220px; object-fit: cover; }
.work-preview-grid span { position: absolute; right: 10px; bottom: 10px; left: 10px; padding: 9px 11px; border-left: 3px solid var(--red); background: rgba(255,255,255,.94); font-size: .75rem; font-weight: 700; }

.area-callout { padding-top: 0; }
.area-callout-inner { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 45px; padding: clamp(34px, 4vw, 56px); border: 1px solid #d3ceca; border-left: 6px solid var(--red); border-radius: var(--radius-lg); background: var(--surface); }
.area-callout h2 { margin-bottom: 13px; }
.area-callout p { margin-bottom: 0; color: var(--muted); }
.area-types { display: grid; gap: 11px; }
.area-types > span { display: flex; align-items: center; gap: 10px; font-size: .84rem; font-weight: 700; }
.area-types svg { color: var(--red); }
.area-types .button { margin-top: 7px; }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(44px, 7vw, 95px); align-items: start; }
.faq-grid .section-heading { position: sticky; top: 115px; margin-bottom: 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 18px; padding: 22px 0; font-size: .94rem; font-weight: 700; line-height: 1.4; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 27px; height: 27px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--red-soft); color: var(--red); font-size: 1rem; transition: transform 160ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; margin: -3px 38px 22px 0; color: var(--muted); font-size: .87rem; }

.lead-form { display: grid; gap: 14px; padding: clamp(24px, 3vw, 36px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); color: var(--ink); box-shadow: var(--shadow); }
.form-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 2px; }
.form-heading span { color: var(--red); font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.form-heading strong { font-size: .96rem; }
.lead-form label { display: grid; gap: 6px; }
.lead-form label > span { color: #4c4744; font-size: .72rem; font-weight: 700; }
.lead-form label em { color: #8a8581; font-style: normal; font-weight: 400; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid #cbc7c2; border-radius: 8px; background: var(--white); color: var(--ink); outline: 0; }
.lead-form textarea { min-height: 78px; resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-soft); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.lead-form .button { width: 100%; border: 0; }
.form-note { margin: -1px 0 0; color: #77716e; font-size: .68rem; line-height: 1.45; text-align: center; }
.form-note a { color: var(--red); text-decoration: underline; }

.contact-panel { padding: 82px 0; background: var(--red); color: var(--white); }
.contact-panel-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(500px, 1.2fr); align-items: center; gap: clamp(42px, 7vw, 90px); }
.contact-panel h2 { margin-bottom: 17px; }
.contact-panel-grid > div:first-child > p:not(.eyebrow) { max-width: 540px; margin-bottom: 27px; color: #f5dfe0; }
.contact-direct { display: grid; gap: 9px; }
.contact-direct a { display: block; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.3); }
.contact-direct span, .contact-direct strong { display: block; }
.contact-direct span { color: #f5cfd0; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-direct strong { margin-top: 3px; font-size: .98rem; }

.cta-band { padding: 54px 0; background: var(--ink); color: var(--white); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.cta-band h2 { margin-bottom: 8px; font-size: clamp(1.7rem, 2.6vw, 2.6rem); }
.cta-band p { max-width: 690px; margin: 0; color: #c7c2be; }
.cta-band-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }

.site-footer { background: #101010; color: #c9c5c1; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .9fr 1.15fr 1fr; gap: clamp(30px, 5vw, 66px); padding-block: 62px; }
.footer-brand img { width: 78px; height: auto; margin-bottom: 20px; border: 3px solid var(--white); background: var(--white); }
.footer-brand p { max-width: 290px; margin-bottom: 16px; font-size: .8rem; }
.footer-brand > a { display: block; overflow-wrap: anywhere; font-size: .78rem; }
.footer-phone { margin-bottom: 3px; color: var(--white); font-size: 1rem !important; font-weight: 700; }
.site-footer h2 { margin-bottom: 18px; color: var(--white); font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; }
.site-footer ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.site-footer li a { font-size: .78rem; }
.site-footer li a:hover, .footer-brand a:hover { color: var(--white); }
.footer-whatsapp { margin-top: 20px; }
.footer-bottom { border-top: 1px solid #343434; }
.footer-bottom .shell { min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom p { margin: 0; font-size: .73rem; }
.footer-bottom nav { display: flex; gap: 17px; }
.footer-bottom a { font-size: .73rem; }
.mobile-actions { display: none; }

.campaign-request { padding: 68px 0; background: var(--ink); color: var(--white); scroll-margin-top: 100px; }
.campaign-request-grid { display: grid; grid-template-columns: minmax(0, .75fr) minmax(500px, 1.25fr); align-items: center; gap: 60px; }
.campaign-request h2 { margin-bottom: 14px; font-size: clamp(1.9rem, 3vw, 3rem); }
.campaign-request-grid > div:first-child > p:not(.eyebrow) { color: #c5c0bc; }
.request-notes { display: grid; gap: 9px; margin: 25px 0 0; padding: 0; list-style: none; }
.request-notes li { display: flex; align-items: center; gap: 10px; color: #e4e0dd; font-size: .78rem; font-weight: 700; }
.request-notes svg { color: #ffb9bb; }

.overview-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); align-items: start; gap: clamp(50px, 8vw, 100px); }
.overview-note, .service-summary-card, .urgent-note {
  position: sticky;
  top: 110px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
}
.overview-note svg, .service-summary-card svg, .urgent-note svg { margin-bottom: 36px; color: #ffb9bb; }
.overview-note p, .service-summary-card p, .urgent-note p { color: #cac5c1; }
.overview-note strong { display: block; padding-top: 18px; border-top: 1px solid #414141; }
.service-summary-card h2, .urgent-note h2 { margin-bottom: 13px; font-size: 1.8rem; }
.service-summary-card .button { margin-top: 7px; }

.scope-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.scope-card { min-height: 190px; display: grid; grid-template-columns: 1fr auto; align-content: space-between; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.scope-card > span { color: var(--red); font-size: .7rem; font-weight: 700; letter-spacing: .08em; }
.scope-card svg { color: var(--red); }
.scope-card h3 { grid-column: 1 / -1; align-self: end; margin: 40px 0 0; font-size: 1rem; }
.issue-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.issue-card { min-height: 190px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); }
.issue-card > span { width: 27px; height: 4px; display: block; margin-bottom: 34px; background: var(--red); }
.issue-card h3 { margin-bottom: 10px; font-size: 1.03rem; }
.issue-card p { margin: 0; color: var(--muted); font-size: .78rem; }

.comparison-table { overflow: hidden; border: 1px solid #3b3b3b; border-radius: var(--radius); }
.comparison-table > div { display: grid; grid-template-columns: .78fr 1.22fr 1fr; gap: 22px; padding: 20px 23px; border-bottom: 1px solid #3b3b3b; }
.comparison-table > div:last-child { border-bottom: 0; }
.comparison-head { background: var(--red); color: var(--white); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.comparison-table > div:not(.comparison-head) span { color: #c2bdb9; font-size: .82rem; }

.inclusion-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 65px; }
.inclusion-grid h2 { margin-bottom: 25px; }
.inclusion-grid .check-list { margin-bottom: 0; }
.exclusion-card { padding: 34px; border: 1px solid var(--line); border-top: 5px solid var(--ink); border-radius: var(--radius); background: var(--white); }
.exclusion-card-red { border-top-color: var(--red); }
.exclusion-card h3 { margin-bottom: 12px; }
.exclusion-card p { margin: 0; color: var(--muted); }

.price-disclosure { padding: 65px 0; background: var(--red); color: var(--white); }
.price-disclosure-grid { display: grid; grid-template-columns: .55fr 1.45fr; align-items: center; gap: 65px; }
.price-block { padding: 31px; border: 1px solid rgba(255,255,255,.4); border-radius: var(--radius-lg); background: var(--red-dark); }
.price-block > span { display: block; color: #f5d1d2; font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.price-block strong { display: block; margin-top: 8px; font-size: clamp(4rem, 7vw, 6.3rem); letter-spacing: -.07em; line-height: .9; }
.price-block sup { position: relative; top: -2.25em; margin-right: 4px; font-size: .18em; letter-spacing: 0; }
.price-disclosure h2 { margin-bottom: 13px; font-size: clamp(1.9rem, 3vw, 3rem); }
.price-disclosure p { margin-bottom: 0; color: #f6e4e4; }
.urgent-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }
.urgent-grid p { max-width: 800px; margin-bottom: 0; color: #c8c3bf; }

.related-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 70px; }
.related-grid > div:first-child > p:not(.eyebrow) { margin-bottom: 0; color: #c6c1bd; }
.related-services { display: grid; gap: 9px; }
.related-services a { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 12px; padding: 15px 17px; border: 1px solid #3a3a3a; border-radius: 10px; }
.related-services a:hover { border-color: #7f7b78; }
.related-services svg, .related-services i { color: #ffb8ba; }
.related-services small, .related-services strong { display: block; }
.related-services small { color: #a9a5a1; font-size: .65rem; }
.related-services strong { color: var(--white); font-size: .86rem; }
.related-services i { font-style: normal; }

.service-directory .service-group { margin-bottom: 76px; }
.service-choice-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 70px; }
.service-choice-grid > div:first-child p { color: #c6c1bd; }
.service-choice-cards { display: grid; gap: 10px; }
.service-choice-cards a { display: grid; grid-template-columns: 36px 1fr; align-items: center; gap: 13px; padding: 17px; border: 1px solid #3c3c3c; border-radius: 10px; }
.service-choice-cards svg { color: #ffb8ba; }
.service-choice-cards strong, .service-choice-cards small { display: block; }
.service-choice-cards small { margin-top: 2px; color: #aaa5a1; }

.about-intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 70px; }
.about-intro-grid .section-heading { margin-bottom: 0; }
.about-quote { padding: 40px; border-left: 5px solid var(--red); background: var(--surface); }
.about-quote svg { margin-bottom: 28px; color: var(--red); }
.about-quote p { margin-bottom: 0; font-size: 1.24rem; font-weight: 700; line-height: 1.45; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.capability-grid article { padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.capability-grid article > span { color: var(--red); font-size: .7rem; font-weight: 700; }
.capability-grid h3 { margin: 32px 0 16px; }
.capability-grid ul { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.capability-grid li a { color: var(--muted); font-size: .8rem; }
.capability-grid li a:hover { color: var(--red); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.values-grid article { min-height: 240px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); }
.values-grid svg { margin-bottom: 40px; color: var(--red); }
.values-grid h3 { margin-bottom: 9px; }
.values-grid p { margin: 0; color: var(--muted); font-size: .8rem; }

.gallery-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 25px; }
.gallery-filter span { padding: 8px 13px; border: 1px solid var(--line); border-radius: 99px; color: var(--muted); font-size: .72rem; }
.gallery-filter span:first-child { border-color: var(--red); background: var(--red); color: var(--white); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.portfolio-grid figure { overflow: hidden; margin: 0; border: 1px solid var(--line); border-radius: var(--radius); }
.portfolio-grid img { width: 100%; height: 225px; object-fit: cover; }
.portfolio-grid figcaption { display: grid; gap: 4px; padding: 19px 21px; }
.portfolio-grid figcaption span { color: var(--red); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.portfolio-grid figcaption strong { font-size: .94rem; }
.portfolio-grid figcaption small { color: var(--muted); }
.evidence-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 65px; }
.evidence-grid .section-heading, .evidence-grid .check-list { margin-bottom: 0; }

.contact-methods { padding-bottom: 40px; }
.contact-method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.contact-method-grid > a { min-height: 205px; display: flex; flex-direction: column; align-items: flex-start; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); }
.contact-method-grid svg { margin-bottom: auto; color: var(--red); }
.contact-method-grid span, .contact-method-grid strong, .contact-method-grid small { display: block; }
.contact-method-grid span { margin-top: 30px; color: var(--red); font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-method-grid strong { margin: 2px 0; font-size: 1rem; }
.contact-method-grid small { color: var(--muted); }
.contact-guidance-grid, .area-page-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: start; gap: 65px; }
.contact-guidance-grid .section-heading { margin-bottom: 27px; }

.legal-content { max-width: 830px; }
.legal-content section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.legal-content section:first-child { padding-top: 0; }
.legal-content h2 { margin-bottom: 10px; font-size: 1.4rem; }
.legal-content p { margin: 0; color: var(--muted); }
.thank-you-page { min-height: 68vh; display: grid; place-items: center; padding: 80px 0; background: var(--surface); }
.thank-you-card { max-width: 720px; margin: 0 auto; padding: clamp(36px, 6vw, 70px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); text-align: center; box-shadow: var(--shadow); }
.thank-you-card > svg { margin: 0 auto 25px; color: var(--red); }
.thank-you-card .eyebrow { justify-content: center; }
.thank-you-card h1 { margin-bottom: 17px; font-size: clamp(2.2rem, 4vw, 3.8rem); }
.thank-you-card > p { margin-bottom: 26px; color: var(--muted); }
.thank-you-card .hero-actions { justify-content: center; }

@media (max-width: 1120px) {
  .desktop-nav > a:nth-of-type(3), .desktop-nav > a:nth-of-type(4) { display: none; }
  .home-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr); gap: 45px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .priority-card { grid-template-columns: 1fr; }
  .priority-media img { height: 230px; min-height: 0; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 940px) {
  .desktop-nav, .header-actions, .utility-inner div { display: none; }
  .mobile-menu { display: block; }
  .header-inner { min-height: 66px; }
  .brand { width: 58px; }
  .home-hero-grid,
  .page-hero-grid,
  .page-hero-image .page-hero-grid,
  .campaign-request-grid,
  .contact-panel-grid,
  .overview-grid,
  .standards-grid,
  .property-overview,
  .faq-grid,
  .inclusion-grid,
  .price-disclosure-grid,
  .related-grid,
  .service-choice-grid,
  .about-intro-grid,
  .evidence-grid,
  .contact-guidance-grid,
  .area-page-grid { grid-template-columns: 1fr; }
  .home-hero-grid { padding-block: 55px; }
  .home-visual { width: min(650px, 100%); margin-inline: auto; }
  .page-hero-grid, .page-hero-image .page-hero-grid { min-height: 0; padding-block: 50px; }
  .hero-mark { width: 180px; justify-self: start; }
  .hero-mark span { font-size: 5.8rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid article:nth-child(odd) { border-left: 1px solid var(--line); }
  .priority-grid, .category-jump, .capability-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .standards-grid, .campaign-request-grid, .contact-panel-grid, .related-grid { gap: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .process-grid li, .process-grid li:first-child, .process-grid li:last-child { border: 1px solid var(--line); border-radius: var(--radius); }
  .faq-grid .section-heading, .overview-note, .service-summary-card, .urgent-note { position: static; }
  .work-preview-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  body { padding-bottom: 68px; }
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding: 66px 0; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.9rem; }
  .utility-inner { min-height: 30px; justify-content: center; }
  .utility-inner p { font-size: .68rem; }
  .home-hero-grid { min-height: 0; padding-block: 46px 48px; }
  .home-hero-copy > p:not(.eyebrow), .page-hero-copy > p:not(.eyebrow) { font-size: .96rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .home-visual { min-height: 350px; }
  .home-visual-main { height: 285px; }
  .home-visual-secondary { height: 135px; }
  .availability-card { right: 0; min-width: 205px; padding: 11px 14px; }
  .availability-card strong { font-size: .94rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article, .trust-grid article:first-child, .trust-grid article:nth-child(odd) { min-height: 86px; border: 0; border-bottom: 1px solid var(--line); }
  .priority-grid,
  .services-grid,
  .problem-grid,
  .scope-grid,
  .issue-grid,
  .property-cards,
  .work-preview-grid,
  .portfolio-grid,
  .contact-method-grid,
  .values-grid { grid-template-columns: 1fr; }
  .priority-body { padding: 27px 24px; }
  .service-card-image img { height: 175px; }
  .problem-card { min-height: 220px; }
  .check-list-2 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 0; }
  .process-grid li > span { margin-bottom: 26px; }
  .work-heading, .cta-band-inner { align-items: flex-start; flex-direction: column; }
  .cta-band-actions { width: 100%; justify-content: flex-start; }
  .cta-band-actions .button { width: 100%; }
  .area-callout-inner { grid-template-columns: 1fr; padding: 28px 23px; }
  .page-hero h1 { font-size: 2.45rem; }
  .page-hero-grid, .page-hero-image .page-hero-grid { padding-block: 42px; gap: 38px; }
  .hero-media img { max-height: 300px; }
  .hero-mark { width: 145px; }
  .hero-mark span { font-size: 4.7rem; }
  .hero-mark i { border-width: 11px; }
  .campaign-request, .contact-panel { padding: 60px 0; }
  .lead-form { padding: 22px 18px; }
  .form-heading { display: grid; gap: 2px; }
  .form-row { grid-template-columns: 1fr; }
  .comparison-table > div { grid-template-columns: 1fr; gap: 7px; padding: 18px; }
  .comparison-head { display: none !important; }
  .comparison-table > div:not(.comparison-head) strong { color: #ffb8ba; }
  .price-disclosure { padding: 55px 0; }
  .price-block strong { font-size: 4.5rem; }
  .urgent-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-grid { grid-template-columns: 1fr; padding-block: 50px; }
  .footer-bottom .shell { min-height: 88px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 6px; }
  .mobile-actions {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    height: 68px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #383838;
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 -8px 24px rgba(0,0,0,.18);
  }
  .mobile-actions a { display: grid; place-content: center; padding: 6px; border-right: 1px solid #383838; text-align: center; }
  .mobile-actions a:nth-child(2) { background: var(--red); }
  .mobile-actions span, .mobile-actions strong { display: block; }
  .mobile-actions span { font-size: .63rem; }
  .mobile-actions strong { font-size: .75rem; }
}

@media (max-width: 410px) {
  h1, .page-hero h1 { font-size: 2.25rem; }
  .hero-points { grid-template-columns: 1fr; }
  .home-visual { min-height: 320px; }
  .home-visual-main { height: 260px; }
  .home-visual-secondary { height: 115px; }
  .availability-card { min-width: 190px; }
  .contact-method-grid strong { overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
