/* MM Maintenance website
   Main colors:
   Navy: #102d3f
   Turquoise: #169eaa
   Light turquoise: #8ed7d7
   Warm wood: #8a5a36
*/

:root {
  --navy: #102d3f;
  --navy-deep: #081d2a;
  --teal: #169eaa;
  --teal-light: #8ed7d7;
  --sand: #f5f1e9;
  --cream: #fbfaf6;
  --white: #ffffff;
  --ink: #162731;
  --muted: #61727b;
  --line: #dbe4e6;
  --wood: #8a5a36;
  --shadow: 0 20px 55px rgba(11, 39, 52, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.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;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--navy);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid rgba(16, 45, 63, 0.08);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 96px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  display: grid;
  line-height: 1.15;
}

.brand strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 0.01em;
}

.brand small {
  color: var(--muted);
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--teal);
}

.site-nav .nav-cta {
  padding: 10px 17px;
  color: white;
  background: var(--navy);
  border-radius: 999px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus {
  color: white;
  background: var(--teal);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(142, 215, 215, 0.38), transparent 26%),
    linear-gradient(120deg, #ffffff 0%, #f8f5ee 52%, #e8f5f5 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 120px;
  background:
    radial-gradient(120px 28px at 10% 0%, transparent 70%, rgba(22, 158, 170, 0.12) 72%, transparent 76%) repeat-x;
  background-size: 240px 60px;
  opacity: 0.8;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  padding: 90px 0 130px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
}

h1 {
  max-width: 730px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6.5vw, 84px);
  letter-spacing: -0.045em;
}

h1 span {
  color: var(--teal);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4vw, 58px);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 25px;
}

.hero-text {
  max-width: 610px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.button.primary {
  color: white;
  background: var(--navy);
}

.button.primary:hover,
.button.primary:focus {
  background: var(--teal);
}

.button.secondary {
  color: var(--navy);
  border-color: rgba(16, 45, 63, 0.24);
  background: rgba(255, 255, 255, 0.68);
}

.button.full {
  width: 100%;
}

.hero-trust {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.hero-trust span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--teal);
}

.scene-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  border: 12px solid rgba(255, 255, 255, 0.78);
  border-radius: 40px 40px 140px 40px;
  background: linear-gradient(#bde9ef 0 55%, #78bdca 55% 100%);
  box-shadow: var(--shadow);
}

.scene-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.42), transparent 46%);
}

.sun {
  position: absolute;
  top: 60px;
  right: 70px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff2c4;
  box-shadow: 0 0 50px #fff2c4;
}

.cloud,
.cloud::before,
.cloud::after {
  position: absolute;
  height: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
}

.cloud {
  width: 90px;
}

.cloud::before,
.cloud::after {
  content: "";
  bottom: 0;
}

.cloud::before {
  left: 16px;
  width: 40px;
  height: 40px;
}

.cloud::after {
  right: 12px;
  width: 50px;
  height: 48px;
}

.cloud-one {
  top: 92px;
  left: 45px;
}

.cloud-two {
  top: 145px;
  right: 42px;
  transform: scale(0.68);
}

.shoreline {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 41%;
  height: 72px;
  border-radius: 50% 50% 0 0;
  background:
    linear-gradient(160deg, #5d806d 0 40%, #73917a 40% 65%, #526f5e 65%);
}

.house {
  position: absolute;
  left: 38px;
  bottom: 220px;
  width: 195px;
  height: 126px;
  z-index: 3;
}

.roof {
  position: absolute;
  left: 10px;
  top: 0;
  width: 176px;
  height: 74px;
  background: #263c46;
  clip-path: polygon(50% 0, 100% 65%, 89% 65%, 89% 100%, 11% 100%, 11% 65%, 0 65%);
}

.house-body {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  z-index: 2;
  height: 82px;
  background: #e7dfd0;
  box-shadow: 0 12px 20px rgba(10, 42, 52, 0.18);
}

.window,
.door {
  position: absolute;
  bottom: 25px;
  background: #8dcbd1;
  border: 4px solid white;
}

.w1 { left: 17px; width: 35px; height: 34px; }
.w2 { right: 17px; width: 35px; height: 34px; }
.door { left: 65px; bottom: 0; width: 33px; height: 58px; background: #8a5a36; }



.house-deck {
  position: absolute;
  left: -40px;
  bottom: -16px;
  z-index: 3;
  width: 220px;
  height: 16px;
  border-radius: 2px;
  background:
    repeating-linear-gradient(
      90deg,
      #9a6842 0 18px,
      #825334 18px 21px
    );
  box-shadow: 0 8px 12px rgba(10, 42, 52, 0.18);
}

.house-deck::before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 13px;
  z-index: -1;
  height: 31px;
  border-top: 4px solid #263c46;
  border-bottom: 3px solid #263c46;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 21px,
      #263c46 21px 25px
    );
}

.house-deck::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 16px;
  height: 18px;
  background:
    repeating-linear-gradient(
      90deg,
      #263c46 0 4px,
      transparent 4px 94px
    );
}

.boat {
  position: absolute;
  right: 4px;
  bottom: 74px;
  width: 290px;
  height: 148px;
  filter: drop-shadow(0 18px 14px rgba(12, 56, 66, 0.22));
}

.boat-top {
  position: absolute;
  right: 35px;
  top: 0;
  width: 190px;
  height: 17px;
  border-radius: 8px 8px 0 0;
  background: #183746;
}

.boat-top::before,
.boat-top::after {
  content: "";
  position: absolute;
  top: 16px;
  width: 5px;
  height: 27px;
  background: #183746;
}

.boat-top::before { left: 16px; }
.boat-top::after { right: 16px; }

.boat-cabin {
  position: absolute;
  right: 12px;
  top: 42px;
  width: 245px;
  height: 63px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 8px 10px 4px 4px;
  background: #f8f7f2;
}

.boat-cabin span {
  width: 48px;
  height: 34px;
  border-radius: 3px;
  background: #315c6b;
}

.boat-hull {
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 290px;
  height: 51px;
  border-radius: 4px 5px 60px 30px;
  background: linear-gradient(#f4f5f2 0 65%, #cbd7d8 65%);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 7% 86%);
}

.boat-hull::after {
  content: "";
  position: absolute;
  left: 36px;
  right: 42px;
  top: 18px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  transform: rotate(-2deg);
}

.water-lines {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 36px;
  display: grid;
  gap: 10px;
}

.water-lines span {
  height: 10px;
  opacity: 0.55;
  background:
    radial-gradient(42px 11px at 42px 0, transparent 67%, rgba(255,255,255,0.8) 70%, transparent 74%) repeat-x;
  background-size: 84px 22px;
}

.section {
  padding: 110px 0;
}

.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.about-copy {
  color: var(--muted);
  font-size: 18px;
}

.about-copy p:first-child {
  margin-top: 0;
}

.stat-row {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-row div {
  position: relative;
  min-width: 0;
  padding: 25px 28px;
  text-align: center;
}

.stat-row div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  bottom: 20%;
  width: 1px;
  background: var(--line);
}

.stat-row strong,
.stat-row span {
  display: block;
}

.stat-row strong {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.stat-row span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.services {
  background:
    linear-gradient(rgba(16, 45, 63, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 45, 63, 0.035) 1px, transparent 1px),
    var(--sand);
  background-size: 36px 36px;
}

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

.section-heading > p:last-child {
  color: var(--muted);
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}

.section-heading.split > p {
  max-width: 390px;
}

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

.service-card {
  min-height: 390px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(16, 45, 63, 0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 10px 30px rgba(16, 45, 63, 0.06);
}

.service-card.featured {
  color: white;
  border-color: var(--navy);
  background: var(--navy);
  transform: translateY(-14px);
}

.service-card.featured h3,
.service-card.featured a {
  color: white;
}

.service-card.featured p {
  color: #c9dde4;
}

.service-card h3 {
  margin: 26px 0 12px;
}

.service-card p {
  margin: 0 0 28px;
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.service-card a span {
  margin-left: 6px;
}

.service-icon {
  position: relative;
  width: 78px;
  height: 66px;
  color: var(--navy);
}

.featured .service-icon {
  color: white;
}

.roof-icon {
  position: absolute;
  left: 8px;
  top: 0;
  width: 60px;
  height: 42px;
  border: 8px solid currentColor;
  border-right: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  border-radius: 3px;
}

.home-box {
  position: absolute;
  left: 17px;
  bottom: 0;
  width: 48px;
  height: 42px;
  background: currentColor;
}

.home-box i {
  position: absolute;
  left: 17px;
  bottom: 0;
  width: 14px;
  height: 25px;
  background: var(--teal-light);
}

.mini-boat-top {
  position: absolute;
  left: 18px;
  top: 2px;
  width: 45px;
  height: 7px;
  background: currentColor;
}

.mini-boat-top::before,
.mini-boat-top::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 3px;
  height: 12px;
  background: currentColor;
}

.mini-boat-top::before { left: 5px; }
.mini-boat-top::after { right: 5px; }

.mini-boat-body {
  position: absolute;
  left: 8px;
  top: 20px;
  width: 62px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: currentColor;
}

.mini-boat-body i {
  width: 15px;
  height: 12px;
  background: var(--teal-light);
}

.mini-boat-body::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: -14px;
  height: 16px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 10% 80%);
}

.mini-wave {
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: -3px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.building-icon span {
  position: absolute;
  bottom: 0;
  background: currentColor;
}

.building-one {
  left: 3px;
  width: 27px;
  height: 46px;
}

.building-two {
  left: 32px;
  width: 26px;
  height: 62px;
}

.building-three {
  left: 60px;
  width: 17px;
  height: 34px;
}

.building-icon span::after {
  content: "";
  position: absolute;
  inset: 9px 6px;
  background: repeating-linear-gradient(
    to bottom,
    var(--teal-light) 0 5px,
    transparent 5px 11px
  );
}

.projects {
  background: white;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
}

.project-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.9);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.project-placeholder span {
  position: relative;
  z-index: 2;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  backdrop-filter: blur(5px);
}

.project-home .project-placeholder::before {
  background:
    linear-gradient(135deg, rgba(13,49,64,0.2), rgba(13,49,64,0.78)),
    linear-gradient(35deg, #a48a6b 0 35%, #e5dfd2 35% 60%, #718a73 60%);
}

.project-marine .project-placeholder::before {
  background:
    linear-gradient(135deg, rgba(13,49,64,0.2), rgba(13,49,64,0.7)),
    linear-gradient(#a9dbe2 0 48%, #4b9db0 48%);
}

.project-commercial .project-placeholder::before {
  background:
    linear-gradient(135deg, rgba(13,49,64,0.25), rgba(13,49,64,0.76)),
    repeating-linear-gradient(90deg, #667a83 0 30px, #b8c9cd 30px 43px);
}

.project-detail .project-placeholder::before {
  background:
    linear-gradient(135deg, rgba(13,49,64,0.1), rgba(13,49,64,0.65)),
    repeating-linear-gradient(45deg, #bca98f 0 12px, #8c6a47 12px 24px);
}

.project-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  color: white;
  background: linear-gradient(transparent, rgba(6, 28, 40, 0.92));
}

.project-info strong,
.project-info span {
  display: block;
}

.project-info span {
  font-size: 12px;
  opacity: 0.75;
}

.reviews {
  background: var(--navy);
  color: white;
}

.reviews h2 {
  color: white;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

blockquote {
  margin: 0;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
}

blockquote p {
  min-height: 72px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

blockquote footer {
  color: #a9c0c8;
  font-size: 13px;
}

.stars {
  color: #f2d27d;
  letter-spacing: 0.15em;
}

.contact {
  background:
    radial-gradient(circle at 0 100%, rgba(22, 158, 170, 0.16), transparent 28%),
    var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 76px;
  align-items: start;
}

.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.contact-list {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

.contact-item {
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  text-decoration: none;
}

.contact-item small,
.contact-item strong {
  display: block;
}

.contact-item small {
  color: var(--muted);
}

.contact-item strong {
  color: var(--navy);
}

.contact-symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: white;
  background: var(--teal);
}

.estimate-card {
  padding: 38px;
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow);
}

.estimate-card > p {
  margin-top: -10px;
  color: var(--muted);
}

form {
  margin-top: 26px;
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  border: 1px solid #cbd7da;
  border-radius: 11px;
  background: #fbfcfc;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(22, 158, 170, 0.19);
  border-color: var(--teal);
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 36px 0;
  color: #b9cbd1;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
  font-size: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 50px;
  height: 50px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
}

.footer-brand span {
  font-size: 11px;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 77px;
    left: 20px;
    right: 20px;
    padding: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 10px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
    padding-top: 70px;
  }

  .hero-art {
    max-width: 650px;
  }

  .about-grid,
  .contact-grid {
    gap: 42px;
  }

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

  .service-card.featured {
    transform: none;
  }

  .project-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 280px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav-wrap {
    gap: 10px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand img {
    width: 64px;
    height: 44px;
    flex: 0 0 auto;
  }

  .brand span {
    min-width: 0;
  }

  .brand small {
    display: block;
    margin-top: 3px;
    font-size: 8.5px;
    letter-spacing: 0.05em;
    line-height: 1.15;
    white-space: nowrap;
  }

  .brand strong {
    font-size: 14px;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 58px 0 105px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
  }

  .scene-card {
    height: 360px;
    border-width: 8px;
    border-radius: 30px 30px 90px 30px;
  }

  .house {
    left: 10px;
    bottom: 160px;
    transform: scale(0.72);
    transform-origin: left bottom;
  }

  .boat {
    right: -34px;
    bottom: 56px;
    transform: scale(0.76);
    transform-origin: right bottom;
  }

  .section {
    padding: 80px 0;
  }

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

  .stat-row div {
    padding: 20px 9px;
  }

  .stat-row strong {
    font-size: 27px;
  }

  .stat-row span {
    margin-top: 7px;
    font-size: 10px;
    line-height: 1.25;
  }

  .section-heading.split {
    display: block;
  }

  .project-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 250px);
  }

  .estimate-card {
    padding: 25px;
  }
}


.service-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
  margin: 0 auto;
}

.service-list {
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  color: var(--muted);
}

.service-list li {
  position: relative;
  padding-left: 24px;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

.service-card.featured .service-list {
  color: #c9dde4;
}

.service-card.featured .service-list li::before {
  color: var(--teal-light);
}

@media (max-width: 900px) {
  .service-grid.two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 76px;
    height: 48px;
  }
}


.about-logo-wrap {
  margin-bottom: 58px;
  display: flex;
  justify-content: center;
}

.about-full-logo {
  width: min(680px, 100%);
  height: auto;
  object-fit: contain;
}

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

@media (max-width: 620px) {
  .about-logo-wrap {
    margin-bottom: 40px;
  }

  .about-full-logo {
    width: 100%;
  }

  .footer-brand img {
    width: 100px;
    height: 62px;
  }
}


@media (max-width: 380px) {
  .brand img {
    width: 56px;
    height: 40px;
  }

  .brand {
    gap: 6px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    font-size: 7.5px;
    letter-spacing: 0.035em;
  }
}


@media (max-width: 380px) {
  .stat-row div {
    padding: 17px 6px;
  }

  .stat-row strong {
    font-size: 24px;
  }

  .stat-row span {
    font-size: 9px;
  }
}


.footer-brand img {
  width: 155px;
  height: 110px;
  object-fit: contain;
}

@media (max-width: 620px) {
  .footer-brand img {
    width: 145px;
    height: 103px;
  }
}
