:root {
  --ink: #10212c;
  --navy: #0b2f47;
  --navy-deep: #071f2f;
  --cream: #f6f2e8;
  --paper: #fffdf8;
  --gold: #d89b42;
  --gold-dark: #b87725;
  --line: rgba(16, 33, 44, 0.16);
  --shadow: 0 28px 70px rgba(7, 31, 47, 0.2);
  --content-width: 1180px;
  --content-space: clamp(56px, 12vw, 192px);
  --section-pad: max(clamp(28px, 6vw, 96px), calc((100vw - var(--content-width)) / 2));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  width: min(var(--content-width), calc(100% - var(--content-space)));
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.025em;
}

.brand img {
  width: 66px;
  height: 47px;
  object-fit: cover;
  border-radius: 5px;
}

.brand strong { display: block; font-size: 1.7rem; color: var(--navy); }

nav { display: flex; gap: 30px; }

nav a {
  position: relative;
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.header-call {
  justify-self: end;
  display: flex;
  flex-direction: column;
  text-align: right;
  text-decoration: none;
  line-height: 1.25;
}

.header-call span { color: #5a6770; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
.header-call strong { color: var(--navy); font-size: 1.05rem; }

.hero {
  position: relative;
  width: min(var(--content-width), calc(100% - var(--content-space)));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(370px, 0.78fr);
  align-items: center;
  gap: clamp(50px, 8vw, 116px);
  padding: 70px 0 86px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 8%;
  left: -15vw;
  width: 38vw;
  height: 38vw;
  max-width: 540px;
  max-height: 540px;
  border: 1px solid rgba(216, 155, 66, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.hero-copy { position: relative; z-index: 1; padding-bottom: 20px; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

h1 {
  max-width: 750px;
  margin: 0;
  color: var(--navy-deep);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(4.25rem, 7vw, 7.1rem);
  line-height: 0.89;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

h1 em { display: block; color: var(--gold-dark); font-style: normal; }

.hero-lede { max-width: 590px; margin: 30px 0 0; color: #42525c; font-size: clamp(1.05rem, 1.4vw, 1.22rem); line-height: 1.7; }

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid var(--navy);
  border-radius: 3px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(216, 155, 66, 0.55); outline-offset: 3px; }
.button-primary { color: white; background: var(--navy); box-shadow: 0 12px 28px rgba(11, 47, 71, 0.22); }
.button-primary:hover { background: var(--navy-deep); box-shadow: 0 15px 35px rgba(11, 47, 71, 0.28); }
.button-quiet { color: var(--navy); background: transparent; }
.button-quiet:hover { background: rgba(255, 255, 255, 0.5); }

.hero-note { margin: 25px 0 0; color: #4a5962; font-size: 0.9rem; font-weight: 600; }
.hero-note span { margin-right: 7px; color: var(--gold-dark); font-weight: 900; }

.hero-visual { position: relative; align-self: stretch; min-height: 620px; display: flex; align-items: center; }

.image-frame {
  position: absolute;
  inset: 26px 0 26px 48px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 31, 47, 0.42));
}

.image-frame img { width: 100%; height: 100%; display: block; object-fit: cover; }

.project-stamp {
  position: absolute;
  right: -22px;
  bottom: 72px;
  width: min(310px, 85%);
  padding: 22px 24px;
  color: white;
  background: var(--navy);
  border-left: 5px solid var(--gold);
  box-shadow: 0 18px 45px rgba(7, 31, 47, 0.28);
}

.project-stamp span { display: block; color: #e8bd7f; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; }
.project-stamp strong { display: block; margin-top: 4px; font-family: "Barlow Condensed", sans-serif; font-size: 1.55rem; line-height: 1.1; text-transform: uppercase; }

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: 34px var(--section-pad);
  color: white;
  background: var(--navy);
}

.intro-band p { max-width: 860px; margin: 0; font-family: "Barlow Condensed", sans-serif; font-size: clamp(1.75rem, 3vw, 2.65rem); line-height: 1.15; text-transform: uppercase; }
.intro-band strong { color: #edbd78; }
.intro-band a { flex: 0 0 auto; color: white; font-size: 0.9rem; font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.intro-band a span { color: var(--gold); }

.section { width: min(var(--content-width), calc(100% - var(--content-space))); margin: 0 auto; padding: 126px 0; }

.section-heading,
.work-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 70px;
}

.section-heading .eyebrow,
.work-heading .eyebrow,
.contact .eyebrow { margin-bottom: 20px; }

h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.5rem, 6vw, 6.2rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

h2 em { color: var(--gold-dark); font-style: normal; }

.section-heading > p,
.work-heading > p { max-width: 460px; margin: 0 0 4px; color: #52616a; font-size: 1.08rem; line-height: 1.75; }

.service-list { border-top: 1px solid var(--line); }

.service-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}

.service-item > div { display: grid; grid-template-columns: minmax(230px, 0.48fr) minmax(0, 1fr); gap: 44px; align-items: baseline; }
.service-number { padding-top: 6px; color: var(--gold-dark); font-family: "Barlow Condensed", sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; }
.service-item h3 { margin: 0; color: var(--navy); font-family: "Barlow Condensed", sans-serif; font-size: clamp(1.9rem, 3vw, 2.8rem); line-height: 1; text-transform: uppercase; }
.service-item p { max-width: 620px; margin: 0; color: #5c6971; }

.services-foot { display: flex; align-items: center; justify-content: space-between; gap: 36px; margin-top: 38px; }
.services-foot p { max-width: 680px; margin: 0; color: #4e5d65; }

.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); font-weight: 800; text-decoration: none; border-bottom: 2px solid var(--gold); }
.text-link span { color: var(--gold-dark); transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }

.work {
  position: relative;
  width: 100%;
  padding-right: var(--section-pad);
  padding-left: var(--section-pad);
  color: white;
  background: var(--navy-deep);
  overflow: hidden;
}

.work::before {
  content: "";
  position: absolute;
  top: 180px;
  right: -220px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(216, 155, 66, 0.2);
  border-radius: 50%;
}

.work .eyebrow { color: #e8bd7f; }
.work h2 { color: white; }
.work h2 em { color: #e4a650; }
.work-heading { position: relative; z-index: 1; }
.work-heading > p { color: #b9c5cc; }

.project-story {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(45px, 7vw, 96px);
  padding: 68px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.project-story:last-child { padding-bottom: 0; }
.project-copy > span { color: #e8bd7f; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; }
.project-copy h3 { margin: 15px 0 18px; font-family: "Barlow Condensed", sans-serif; font-size: clamp(2.8rem, 5vw, 4.8rem); line-height: 0.94; text-transform: uppercase; }
.project-copy p { margin: 0 0 30px; color: #b9c5cc; line-height: 1.75; }
.text-link.light { color: white; }

.project-gallery {
  display: grid;
  grid-template-columns: 1.4fr 0.82fr;
  grid-template-rows: repeat(2, minmax(190px, 280px));
  gap: 12px;
}

.gallery-image {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #163b50;
  cursor: zoom-in;
}

.gallery-image::after {
  content: "+";
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(7, 31, 47, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 1.4rem;
  line-height: 1;
}

.gallery-image:focus-visible { outline: 4px solid var(--gold); outline-offset: 4px; z-index: 2; }
.gallery-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 350ms ease, filter 350ms ease; }
.gallery-image:hover img { transform: scale(1.025); filter: saturate(1.05); }
.gallery-large { grid-row: 1 / 3; }
.fence-gallery .gallery-large img { object-position: center 45%; }
.floor-gallery .gallery-large img { object-position: center 64%; }

.reviews {
  position: relative;
  padding: 126px var(--section-pad) 136px;
  overflow: hidden;
  background: var(--paper);
}

.reviews::after {
  content: "";
  position: absolute;
  right: -190px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(216, 155, 66, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.reviews-heading,
.reviews-carousel {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.48fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.reviews-heading .eyebrow { margin-bottom: 20px; }

.reviews-summary {
  padding: 26px 0 5px;
  border-top: 1px solid var(--line);
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gold-dark);
}

.reviews-score strong {
  color: var(--navy-deep);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.7rem;
  line-height: 0.9;
}

.reviews-score span,
.review-stars span {
  color: #c9862c;
  letter-spacing: 0.1em;
}

.reviews-summary > p {
  margin: 12px 0 20px;
  color: #5a6871;
  font-size: 0.92rem;
  font-weight: 700;
}

.reviews-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.reviews-toolbar p {
  margin: 0;
  color: #66747c;
  font-size: 0.84rem;
  font-weight: 700;
}

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

.reviews-swipe::before {
  content: "•";
  margin: 0 9px;
  color: var(--gold-dark);
}

.reviews-controls { display: flex; gap: 9px; }

.review-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy);
  border: 0;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.review-arrow:hover:not(:disabled) { transform: translateY(-2px); background: var(--navy-deep); }
.review-arrow:focus-visible { outline: 3px solid rgba(216, 155, 66, 0.58); outline-offset: 3px; }
.review-arrow:disabled { opacity: 0.32; cursor: not-allowed; }

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 380px);
  gap: 18px;
  padding: 4px 2px 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(11, 47, 71, 0.36) transparent;
}

.reviews-track:focus-visible { outline: 3px solid rgba(216, 155, 66, 0.52); outline-offset: 5px; }

.review-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: white;
  border: 1px solid rgba(16, 33, 44, 0.13);
  border-top: 4px solid var(--gold);
  box-shadow: 0 18px 42px rgba(7, 31, 47, 0.08);
  scroll-snap-align: start;
}

.review-card-critical { border-top-color: #7f8a91; }
.review-stars { font-size: 1.04rem; line-height: 1; }

.review-card > p {
  margin: 28px 0 34px;
  color: #344650;
  font-size: 1.04rem;
  line-height: 1.7;
}

.review-card > .review-rating-only { color: #68757d; font-style: italic; }

.review-card footer {
  min-height: 0;
  margin-top: auto;
  padding: 22px 0 0;
  display: flex;
  grid-template-columns: none;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: inherit;
  background: transparent;
  border-top: 1px solid var(--line);
}

.review-card footer div { min-width: 0; }
.review-card footer strong,
.review-card footer span { display: block; }
.review-card footer strong { color: var(--navy); font-size: 0.94rem; line-height: 1.3; }
.review-card footer span { margin-top: 3px; color: #748189; font-size: 0.76rem; font-weight: 600; }
.review-card footer a { flex: 0 0 auto; color: var(--navy); font-size: 0.78rem; font-weight: 800; text-decoration-color: var(--gold); text-underline-offset: 4px; }

.steps { padding-bottom: 140px; }
.steps-heading { margin-bottom: 58px; }
.step-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; border-top: 1px solid var(--line); }
.step-list li { min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; padding: 27px 34px 30px 0; border-right: 1px solid var(--line); }
.step-list li + li { padding-left: 34px; }
.step-list li:last-child { border-right: 0; }
.step-list > li > span { color: var(--gold-dark); font-family: "Barlow Condensed", sans-serif; font-weight: 700; letter-spacing: 0.08em; }
.step-list h3 { margin: 0 0 8px; color: var(--navy); font-family: "Barlow Condensed", sans-serif; font-size: 2rem; line-height: 1; text-transform: uppercase; }
.step-list p { margin: 0; color: #5a6871; }
.step-list a { color: var(--navy); font-weight: 800; }

.contact {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  background: var(--navy);
}

.contact-mark {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  padding: 60px;
  overflow: hidden;
  background: #123d57;
}

.contact-mark::before,
.contact-mark::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(216, 155, 66, 0.24);
  transform: rotate(45deg);
}

.contact-mark::after { width: 42%; height: 42%; }
.contact-mark img { position: relative; z-index: 1; width: min(370px, 90%); height: auto; border-radius: 4px; box-shadow: 0 28px 65px rgba(7, 31, 47, 0.4); }

.contact-content { align-self: center; max-width: 720px; padding: 110px clamp(40px, 8vw, 130px); }
.contact .eyebrow { color: #e8bd7f; }
.contact h2 { color: white; }
.contact h2 em { color: #e4a650; }
.contact-content > p:not(.eyebrow) { max-width: 600px; margin: 32px 0 0; color: #c3cdd3; font-size: 1.1rem; line-height: 1.75; }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; margin-top: 36px; }
.button-gold { color: var(--navy-deep); background: var(--gold); border-color: var(--gold); }
.button-gold:hover { background: #e7ad5c; }
.facebook-link { color: white; font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.facebook-link span { color: var(--gold); }

footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 70px;
  padding: 34px var(--section-pad);
  color: #5a6871;
  background: var(--paper);
}

.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand img { width: 62px; height: 43px; object-fit: cover; border-radius: 4px; }
.footer-brand p,
footer > p { margin: 0; }
.footer-brand strong { color: var(--navy); }
footer > a { color: var(--navy); font-size: 1.05rem; font-weight: 800; }

.mobile-call { display: none; }

.lightbox {
  width: min(1000px, calc(100% - 34px));
  max-height: calc(100vh - 34px);
  padding: 0;
  overflow: visible;
  color: white;
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox::backdrop { background: rgba(3, 15, 23, 0.86); backdrop-filter: blur(5px); }
.lightbox figure { margin: 0; }
.lightbox img { width: 100%; max-height: calc(100vh - 120px); display: block; object-fit: contain; background: #061720; }
.lightbox figcaption { padding: 16px 20px; color: #c5d0d6; font-size: 0.9rem; }
.lightbox-close { position: absolute; z-index: 2; top: -15px; right: -15px; width: 44px; height: 44px; color: white; background: var(--gold-dark); border: 0; border-radius: 50%; font-size: 1.8rem; line-height: 1; cursor: pointer; }
.lightbox-close:focus-visible { outline: 3px solid white; outline-offset: 3px; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .header-call span { display: none; }
  .header-call strong { white-space: nowrap; }
  .hero { grid-template-columns: 1fr 0.72fr; gap: 34px; }
  h1 { font-size: clamp(3.8rem, 8.6vw, 5.5rem); }
  .hero-visual { min-height: 560px; }
  .image-frame { left: 0; }
  .section-heading,
  .work-heading { grid-template-columns: 1fr; gap: 28px; }
  .service-item > div { grid-template-columns: minmax(190px, 0.5fr) minmax(0, 1fr); gap: 25px; }
  .project-story { grid-template-columns: 1fr; gap: 38px; }
  .project-copy { max-width: 650px; }
  .reviews-heading { grid-template-columns: 1fr; gap: 30px; }
  .reviews-summary { max-width: 500px; }
  .step-list { grid-template-columns: 1fr; }
  .step-list li { min-height: 0; display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .step-list li + li { padding-left: 0; }
  .contact { grid-template-columns: 0.72fr 1fr; }
  .contact-content { padding: 80px 42px; }
  footer { grid-template-columns: 1fr auto; gap: 28px; }
  footer > p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 800px) {
  .site-header { min-height: 76px; grid-template-columns: 1fr; }
  .brand img { width: 54px; height: 39px; }
  .brand strong { font-size: 1.35rem; }
  .brand span { font-size: 1.05rem; }
  .header-call { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 42px; padding: 52px 0 76px; }
  h1 { font-size: clamp(3.4rem, 12.7vw, 4.25rem); }
  .hero-lede { margin-top: 24px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { min-height: 540px; }
  .image-frame { inset: 0 22px 0 0; }
  .project-stamp { right: 0; bottom: 30px; }
  .intro-band { grid-template-columns: 1fr; gap: 18px; padding-top: 30px; padding-bottom: 30px; }
  .section { padding: 88px 0; }
  .section-heading,
  .work-heading { margin-bottom: 48px; }
  h2 { font-size: clamp(3.5rem, 15.5vw, 5.2rem); }
  .service-item { grid-template-columns: 46px 1fr; gap: 10px; padding: 25px 0; }
  .service-item > div { grid-template-columns: 1fr; gap: 11px; }
  .service-item h3 { font-size: 2rem; }
  .services-foot { align-items: flex-start; flex-direction: column; }
  .work { width: 100%; padding-right: var(--section-pad); padding-left: var(--section-pad); }
  .project-story { padding: 52px 0; }
  .project-gallery { grid-template-columns: 1.15fr 0.85fr; grid-template-rows: repeat(2, 190px); gap: 7px; }
  .gallery-image::after { right: 9px; bottom: 9px; width: 34px; height: 34px; }
  .reviews { padding-top: 88px; padding-bottom: 96px; }
  .reviews-heading { margin-bottom: 42px; }
  .reviews-toolbar { align-items: end; }
  .reviews-swipe { display: block; margin-top: 2px; }
  .reviews-swipe::before { display: none; }
  .reviews-track { grid-auto-columns: min(84vw, 355px); }
  .review-card { min-height: 300px; padding: 26px; }
  .steps { padding-bottom: 90px; }
  .step-list li { grid-template-columns: 48px 1fr; }
  .contact { min-height: 0; grid-template-columns: 1fr; }
  .contact-mark { min-height: 340px; padding: 38px; }
  .contact-mark img { width: min(300px, 82%); }
  .contact-content { padding: 74px 32px 88px; }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .facebook-link { text-align: center; }
  footer { grid-template-columns: 1fr; gap: 22px; padding-top: 42px; padding-bottom: 116px; }
  footer > p { grid-column: auto; grid-row: auto; }
  .mobile-call { position: fixed; z-index: 20; right: 18px; bottom: 18px; left: 18px; min-height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; color: white; background: var(--navy); border: 1px solid rgba(255, 255, 255, 0.25); box-shadow: 0 18px 44px rgba(7, 31, 47, 0.38); text-decoration: none; }
  .mobile-call span { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
  .mobile-call strong { font-size: 1.05rem; }
}

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