:root {
  --red: #d5252b;
  --red-dark: #a9151d;
  --ink: #080809;
  --charcoal: #17191d;
  --steel: #65717f;
  --muted: #5e6268;
  --paper: #ffffff;
  --surface: #f6f4f1;
  --surface-strong: #ece7e1;
  --line: #ded8cf;
  --gold: #f4b13e;
  --shadow: 0 18px 48px rgba(8, 8, 9, .12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--red);
}

p,
li {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 99999;
  padding: 10px 14px;
  background: var(--red);
  color: var(--paper);
  border-radius: var(--radius);
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(8, 8, 9, .96);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
  border-color: rgba(255, 255, 255, .08);
}

.nav-shell {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  color: var(--paper);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .96);
  border-radius: var(--radius);
  padding: 4px;
}

.brand-mark img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  font-size: .98rem;
  color: var(--paper);
  white-space: nowrap;
}

.brand-sub {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .72);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a,
.nav-parent {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .9);
  font: inherit;
  font-size: .875rem;
  font-weight: 700;
  cursor: pointer;
}

.nav-links a:hover,
.nav-parent:hover {
  color: var(--paper);
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 300px;
  padding: 10px;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .18s ease;
}

.dropdown-wide {
  width: min(620px, calc(100vw - 40px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dropdown-areas {
  width: 360px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nav-section-label {
  grid-column: 1 / -1;
  padding: 8px 10px 6px;
  color: var(--red);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.dropdown-open .dropdown {
  display: grid;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  justify-content: flex-start;
  min-height: 36px;
  color: var(--charcoal);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: .88rem;
}

.dropdown a:hover {
  background: var(--surface);
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  color: var(--paper);
  font-weight: 800;
  white-space: nowrap;
  font-size: .88rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
  color: var(--paper);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--paper);
  background: var(--red);
}

.btn-primary:hover {
  color: var(--paper);
  background: var(--red-dark);
}

.btn-light {
  color: var(--ink);
  background: var(--paper);
}

.btn-light:hover {
  color: var(--red);
}

.btn-outline {
  color: var(--paper);
  border-color: rgba(255, 255, 255, .78);
}

.btn-outline:hover {
  background: var(--paper);
  color: var(--ink);
}

.btn-dark {
  color: var(--paper);
  background: var(--charcoal);
}

.btn-dark:hover {
  color: var(--paper);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
  padding: 120px 0 76px;
}

.hero.hero-compact {
  min-height: 56vh;
  padding-top: 132px;
  padding-bottom: 70px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 8, 9, .86), rgba(8, 8, 9, .54) 52%, rgba(8, 8, 9, .7)),
    linear-gradient(180deg, rgba(8, 8, 9, .34), rgba(8, 8, 9, .76));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
}

.hero-content {
  max-width: 790px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .92);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--red);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  color: var(--charcoal);
  letter-spacing: 0;
}

.hero h1 {
  color: var(--paper);
  font-size: clamp(2.55rem, 5vw, 4.8rem);
  max-width: 900px;
}

.hero.hero-compact h1 {
  font-size: clamp(2.15rem, 4vw, 4rem);
}

.hero-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .83);
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.stat {
  min-width: 142px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
}

.stat strong {
  display: block;
  color: var(--paper);
  font-size: 1.55rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .73);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.info-strip {
  background: var(--red);
  color: var(--paper);
}

.info-strip .container {
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  padding-block: 12px;
}

.info-strip a,
.info-strip span {
  color: var(--paper);
  font-size: .95rem;
  font-weight: 800;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .78);
}

.section {
  padding: 84px 0;
}

.section-tight {
  padding: 62px 0;
}

.section-muted {
  background: var(--surface);
}

.section-dark {
  background: var(--charcoal);
  color: var(--paper);
}

.section-dark h2,
.section-dark h3 {
  color: var(--paper);
}

.section-dark p,
.section-dark li {
  color: rgba(255, 255, 255, .76);
}

.section-red {
  background: var(--red);
  color: var(--paper);
}

.section-red h2,
.section-red p {
  color: var(--paper);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-dark .kicker,
.section-red .kicker {
  color: var(--gold);
}

.section-heading h2,
.split h2 {
  font-size: clamp(1.95rem, 3.2vw, 3.3rem);
}

.section-heading p {
  margin: 16px 0 0;
  font-size: 1.07rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(300px, .97fr);
  gap: 54px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(300px, .97fr) minmax(0, 1.03fr);
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stamp {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 260px;
  padding: 14px 16px;
  color: var(--paper);
  background: rgba(8, 8, 9, .86);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  font-weight: 850;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--charcoal);
  font-weight: 700;
}

.section-dark .check-list li {
  color: rgba(255, 255, 255, .9);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: inset 0 0 0 3px var(--paper);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(213, 37, 43, .38);
}

.card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card h3 {
  font-size: 1.18rem;
}

.card p {
  margin: 12px 0 0;
  font-size: .96rem;
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red);
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.process-step strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--paper);
  background: var(--red);
  border-radius: var(--radius);
}

.process-step h3 {
  font-size: 1.07rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.gallery-grid.large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: stretch;
}

.review-showcase {
  display: grid;
  grid-template-columns: minmax(290px, .84fr) minmax(0, 1.16fr);
  gap: 24px;
  align-items: start;
}

.rating-box,
.contact-card,
.service-box {
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px;
}

.rating-score {
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: .9;
  font-weight: 950;
  color: var(--red);
}

.rating-feature {
  position: sticky;
  top: 108px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(213, 37, 43, .09), transparent 45%),
    var(--paper);
}

.review-source {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0;
}

.review-summary-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.review-summary-list li {
  padding: 10px 12px;
  background: var(--surface);
  border-left: 4px solid var(--red);
  border-radius: 6px;
  color: var(--charcoal);
  font-weight: 800;
  font-size: .92rem;
}

.review-list {
  display: grid;
  gap: 16px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border-left: 5px solid var(--red);
}

.review-card.polished {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-left: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(8, 8, 9, .07);
}

.review-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.review-meta strong {
  color: var(--charcoal);
  line-height: 1.2;
}

.review-meta span {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.review-quote {
  margin: 18px 0 0;
  color: var(--charcoal);
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.45;
}

.review-note {
  margin-top: auto;
  padding-top: 16px;
  font-size: .9rem;
}

.review-card h3 {
  font-size: 1rem;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.area-map-grid {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(330px, 1.04fr);
  gap: 28px;
  align-items: stretch;
}

.area-map-card {
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.area-map-card .map-embed {
  height: 100%;
  min-height: 470px;
  border-radius: 0;
}

.area-intro-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
}

.area-intro-card .area-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.area-link {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  font-weight: 850;
}

.area-link::after {
  content: ">";
  color: var(--red);
}

.area-link:hover {
  border-color: rgba(213, 37, 43, .45);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.sidebar .service-box {
  padding: 22px;
}

.sidebar h3 {
  font-size: 1.12rem;
}

.mini-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.mini-list a {
  color: var(--muted);
  font-weight: 750;
}

.mini-list a:hover {
  color: var(--red);
}

.body-copy h2 {
  margin-top: 0;
  font-size: clamp(1.75rem, 2.6vw, 2.55rem);
}

.body-copy h3 {
  margin-top: 30px;
  font-size: 1.25rem;
}

.body-copy p {
  font-size: 1.03rem;
}

.two-col-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.two-col-list li {
  min-height: 72px;
  padding: 16px;
  background: var(--surface);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  color: var(--charcoal);
  font-weight: 750;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 850;
  color: var(--charcoal);
}

details p {
  margin-bottom: 0;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta-band h2 {
  color: var(--paper);
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 30px;
}

.form-wrap {
  height: 720px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.form-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-embed {
  width: 100%;
  height: 330px;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(.15);
}

.contact-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.contact-list li {
  color: var(--charcoal);
  font-weight: 760;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .88);
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 62px 0;
}

.footer-grid h3 {
  color: var(--paper);
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-title {
  color: var(--paper);
  font-size: .92rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-grid p,
.footer-grid a,
.footer-grid li {
  color: rgba(255, 255, 255, .72);
}

.footer-grid a:hover {
  color: var(--paper);
}

.footer-logo {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 8px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer-links {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.copyright {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .64);
  font-size: .86rem;
}

@media (max-width: 1050px) {
  .nav-links,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  body.nav-open .nav-links {
    position: fixed;
    inset: 82px 0 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 18px;
    background: rgba(8, 8, 9, .98);
    overflow-y: auto;
  }

  body.nav-open .nav-links a,
  body.nav-open .nav-parent {
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .dropdown {
    position: static;
    display: none;
    width: 100%;
    margin: 0;
    padding: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .nav-item.dropdown-open .dropdown {
    display: grid;
  }

  .split,
  .split.reverse,
  .content-grid,
  .contact-grid,
  .review-panel,
  .review-showcase,
  .area-map-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .rating-feature {
    position: static;
  }

  .card-grid,
  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav-shell {
    height: 72px;
  }

  body.nav-open .nav-links {
    inset: 72px 0 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand-name {
    font-size: .92rem;
  }

  .brand-sub {
    font-size: .68rem;
  }

  .hero,
  .hero.hero-compact {
    min-height: 78vh;
    padding-top: 104px;
    padding-bottom: 54px;
  }

  .hero h1,
  .hero.hero-compact h1 {
    font-size: clamp(2rem, 11vw, 3.15rem);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .info-strip .container {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .section {
    padding: 64px 0;
  }

  .section-tight {
    padding: 46px 0;
  }

  .card-grid,
  .process-grid,
  .gallery-grid,
  .gallery-grid.large,
  .area-grid,
  .review-grid,
  .two-col-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-wrap {
    height: 760px;
  }

  .rating-box,
  .contact-card,
  .service-box {
    padding: 22px;
  }
}
