:root {
  --bg-paper: #f4efe6;
  --bg-paper-2: #efe8da;
  --bg-dark: #171714;
  --bg-dark-2: #25231f;
  --bg-green: #667045;
  --ink: #11100d;
  --ink-soft: #3c352b;
  --line: rgba(43, 37, 29, 0.2);
  --line-strong: rgba(34, 29, 22, 0.4);
  --accent: #2e4620;
  --accent-copper: #b06c4e;
  --shadow-soft: 0 24px 60px rgba(18, 17, 14, 0.14);
  --shadow-card: 0 18px 34px rgba(20, 17, 14, 0.08);
  --section-max: 1500px;
  --radius: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.4), transparent 38%),
    linear-gradient(180deg, #201e1a 0 24rem, var(--bg-paper) 24rem 100%);
}

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

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

.site-shell {
  overflow: clip;
}

.section {
  position: relative;
  padding: 2.2rem 1.25rem;
}

.section-inner {
  width: min(100%, var(--section-max));
  margin: 0 auto;
}

.hero-section {
  padding-top: 2.8rem;
  padding-bottom: 3.1rem;
  background:
    linear-gradient(180deg, rgba(20, 18, 16, 0.82), rgba(20, 18, 16, 0.95)),
    radial-gradient(circle at top left, rgba(74, 89, 42, 0.35), transparent 24%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 3rem auto 9rem 0;
  width: min(14vw, 150px);
  background: url("./assets/site/plant-wall.png") center left / cover no-repeat;
  filter: saturate(0.78);
  opacity: 0.92;
  pointer-events: none;
}

.paper-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 18%),
    linear-gradient(180deg, var(--bg-paper), var(--bg-paper-2));
}

.frame {
  position: relative;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.paper-panel,
.map-panel,
.note-card {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.42), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.18)),
    var(--bg-paper);
}

.paper-panel::after,
.note-card::after,
.map-panel::after {
  content: "";
  position: absolute;
  inset: 0.85rem;
  border: 1px solid rgba(43, 37, 29, 0.14);
  pointer-events: none;
}

.dark-panel,
.dark-strip {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 42%),
    linear-gradient(180deg, var(--bg-dark-2), var(--bg-dark));
  color: #f5efe3;
  border-color: rgba(204, 183, 147, 0.3);
}

.dark-panel::after,
.dark-strip::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(235, 218, 191, 0.16);
  pointer-events: none;
}

.photo-panel {
  background: #1f1f1d;
  border-color: rgba(208, 191, 164, 0.3);
}

.photo-panel::after {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border: 1px solid rgba(235, 224, 204, 0.32);
  pointer-events: none;
}

.photo-panel img {
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.photo-panel:hover img {
  transform: scale(1.035);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 1.35rem;
  color: #19331a;
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 2.45rem;
  height: 1px;
  background: currentColor;
}

.eyebrow-copper {
  color: #9e6548;
}

.display-title,
.section-title,
.board-title,
.quote-card h3,
.quote-band h3,
.strip-action span:last-child,
.service-row strong,
.process-row strong,
.proof-item strong,
.visit-title,
.hours-row strong,
.hours-row span {
  font-family: "Cormorant Garamond", serif;
}

.display-title {
  margin: 0;
  font-size: clamp(4.2rem, 7vw, 6.4rem);
  line-height: 0.88;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.hero-layout,
.services-layout,
.story-layout,
.visit-layout {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: 1rem;
  align-items: stretch;
}

.hero-copy {
  padding: 3.9rem 4rem 3.3rem;
  min-height: 40rem;
}

.hero-copy .lead,
.hero-copy .support-copy {
  max-width: 30rem;
}

.lead {
  margin: 2rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  line-height: 1.15;
}

.support-copy {
  margin: 1.3rem 0 0;
  font-size: 1.16rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 3.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  padding: 0 1.3rem;
  border: 1px solid var(--line-strong);
  font-size: 1.05rem;
  font-weight: 700;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

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

.button-primary {
  background: var(--accent);
  border-color: rgba(37, 57, 27, 0.9);
  color: #faf4e8;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.28);
}

.hero-photo {
  min-height: 48rem;
}

.hero-photo img {
  object-position: 52% center;
}

.hero-proof {
  grid-column: 1 / 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 6.7rem;
  padding: 1.5rem 1.3rem;
}

.proof-item + .proof-item {
  border-left: 1px solid rgba(43, 37, 29, 0.16);
}

.proof-item strong {
  font-size: 1.2rem;
  line-height: 1.05;
  font-weight: 600;
}

.proof-icon,
.utility-icon,
.service-icon,
.address-icon,
.strip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--accent);
}

.proof-icon svg,
.utility-icon svg,
.service-icon svg,
.address-icon svg,
.strip-icon svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.proof-letter {
  font-size: 2.05rem;
  font-weight: 800;
  line-height: 1;
}

.hero-strip,
.visit-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  margin-top: 1.35rem;
  min-height: 7.75rem;
}

.strip-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 100%;
  padding: 1.35rem 1.5rem;
  transition: background-color 220ms ease;
}

.strip-action:hover {
  background: rgba(255, 255, 255, 0.04);
}

.strip-action + .strip-action {
  border-left: 1px solid rgba(235, 224, 204, 0.2);
}

.strip-action span:last-child {
  font-size: clamp(2.05rem, 3vw, 3.3rem);
  font-weight: 600;
}

.strip-call {
  color: #efe5cb;
}

.services-section {
  padding-top: 2.4rem;
}

.services-section::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  bottom: 0;
  width: min(16vw, 180px);
  height: 16rem;
  background: url("./assets/site/plant-wall.png") left center / cover no-repeat;
  opacity: 0.24;
  filter: saturate(0.7);
  pointer-events: none;
}

.services-layout {
  display: grid;
}

.services-board {
  padding: 2rem 2rem 1.5rem;
}

.tape-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 0.65rem 1.35rem;
  background: rgba(102, 112, 69, 0.8);
  color: #151410;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.services-layout {
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.board-title {
  margin: 0 0 2.15rem;
  font-size: clamp(3.9rem, 6vw, 6.2rem);
  line-height: 0.95;
  font-weight: 600;
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.35rem;
  min-height: 8.65rem;
  padding: 0 0.6rem;
  color: inherit;
}

.service-row + .service-row {
  border-top: 1px solid rgba(235, 224, 204, 0.2);
}

.service-row strong {
  font-size: clamp(2.55rem, 4vw, 4.1rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.service-icon {
  width: 4.8rem;
  height: 4.8rem;
  border: 1px solid rgba(235, 224, 204, 0.42);
  border-radius: 50%;
  color: #e7dcc6;
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
  stroke-width: 1.45;
}

.service-arrow {
  color: var(--accent-copper);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
}

.services-side {
  display: grid;
  gap: 1.15rem;
}

.quote-card {
  padding: 2.2rem 2.55rem;
}

.quote-mark {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: #738053;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 0.7;
}

.quote-card h3 {
  margin: 0;
  font-size: clamp(2.65rem, 4.3vw, 4.15rem);
  line-height: 0.95;
  font-weight: 500;
}

.quote-card p {
  margin: 1.05rem 0 0;
  font-size: 1.16rem;
  line-height: 1.6;
  color: #536244;
}

.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(43, 37, 29, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.rating-chip strong {
  font-size: 1.1rem;
}

.service-photo {
  min-height: 25.6rem;
}

.service-photo img {
  object-position: center 36%;
}

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

.utility-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 7.7rem;
  padding: 1.4rem 1.35rem;
}

.utility-item + .utility-item {
  border-left: 1px solid rgba(43, 37, 29, 0.16);
}

.utility-item p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.45;
}

.utility-icon {
  width: 3.3rem;
  height: 3.3rem;
  border: 1px solid rgba(46, 70, 32, 0.22);
  border-radius: 50%;
}

.story-section {
  padding-top: 1.85rem;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.92fr);
  gap: 1.2rem;
}

.story-photo {
  min-height: 44rem;
}

.story-photo img {
  object-position: center center;
}

.story-stack {
  display: grid;
  gap: 1.15rem;
}

.story-copy {
  min-height: 22rem;
  padding: 2.6rem 2.9rem;
}

.section-title {
  margin: 0 0 1.45rem;
  font-size: clamp(3.35rem, 5vw, 5.5rem);
  line-height: 0.92;
  font-weight: 600;
}

.story-copy p:not(.eyebrow) {
  max-width: 28rem;
  margin: 0 0 1rem;
  font-size: 1.32rem;
  line-height: 1.58;
  color: var(--ink-soft);
}

.process-panel {
  display: grid;
}

.process-row {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr) auto;
  align-items: center;
  min-height: 8.5rem;
  padding: 0 2rem;
  color: inherit;
}

.process-row + .process-row {
  border-top: 1px solid rgba(235, 224, 204, 0.18);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  color: #d8cdb6;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
}

.process-row strong {
  padding-left: 2rem;
  border-left: 1px solid rgba(176, 108, 78, 0.8);
  font-size: clamp(2.75rem, 4.2vw, 4.2rem);
  font-weight: 500;
}

.quote-band {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.6rem;
  margin-top: 1.2rem;
  padding: 1.5rem 1.75rem;
  min-height: 10rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 35%),
    #6c7247;
  color: #f6efe4;
}

.quote-band::after {
  content: "";
  position: absolute;
  inset: 0.85rem;
  border: 1px solid rgba(241, 232, 214, 0.2);
}

.quote-stamp {
  display: grid;
  place-items: center;
  width: 5.8rem;
  aspect-ratio: 1;
  border: 1px solid rgba(241, 232, 214, 0.25);
  border-radius: 50%;
  color: rgba(241, 232, 214, 0.62);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.quote-band h3 {
  margin: 0;
  font-size: clamp(3.55rem, 6vw, 6.15rem);
  font-weight: 600;
}

.quote-band p {
  margin: 0;
  padding-left: 2rem;
  border-left: 1px solid rgba(241, 232, 214, 0.28);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 2.3vw, 2.6rem);
  font-weight: 500;
}

.visit-section {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.2rem;
  align-items: start;
}

.visit-copy {
  padding: 1rem 0 0;
}

.visit-title {
  max-width: 15rem;
}

.address-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}

.address-icon {
  width: 3.5rem;
  height: 3.5rem;
}

.address-block strong {
  display: block;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.address-block p {
  margin: 0.3rem 0 0;
  font-size: 1.32rem;
  line-height: 1.5;
}

.map-panel {
  margin-top: 2rem;
  min-height: 21rem;
  padding: 1.1rem;
}

.map-canvas {
  position: relative;
  min-height: 18.8rem;
  height: 100%;
  border: 1px solid rgba(43, 37, 29, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.22)),
    #f0eadf;
  overflow: hidden;
}

.road,
.block {
  position: absolute;
  display: block;
}

.road {
  background: rgba(115, 105, 88, 0.13);
  transform-origin: center;
}

.road-1 {
  left: 2rem;
  top: 1.8rem;
  width: 22rem;
  height: 1.35rem;
  transform: rotate(35deg);
}

.road-2 {
  left: 10rem;
  top: 1rem;
  width: 1.15rem;
  height: 18rem;
  transform: rotate(18deg);
}

.road-3 {
  right: 3.5rem;
  top: 1rem;
  width: 1.15rem;
  height: 18rem;
  transform: rotate(-24deg);
}

.road-4 {
  left: 2rem;
  bottom: 3.4rem;
  width: 23rem;
  height: 1.15rem;
  transform: rotate(-12deg);
}

.road-5 {
  right: 1rem;
  top: 4rem;
  width: 10rem;
  height: 1rem;
  transform: rotate(-52deg);
}

.block {
  background: rgba(111, 127, 82, 0.11);
}

.block-1 {
  left: 3.5rem;
  top: 10rem;
  width: 3.8rem;
  height: 3.2rem;
}

.block-2 {
  left: 11rem;
  top: 7.8rem;
  width: 6rem;
  height: 5rem;
}

.block-3 {
  right: 5rem;
  top: 4rem;
  width: 4.8rem;
  height: 4rem;
}

.block-4 {
  right: 8rem;
  bottom: 2rem;
  width: 8rem;
  height: 6rem;
}

.pin {
  position: absolute;
  left: 49%;
  top: 43%;
  width: 2.5rem;
  aspect-ratio: 1;
  background: var(--bg-green);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 10px 22px rgba(42, 53, 28, 0.22);
}

.pin::after {
  content: "";
  position: absolute;
  inset: 0.65rem;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 50%;
}

.map-label,
.map-neighbourhood {
  position: absolute;
  font-family: "Manrope", sans-serif;
  color: rgba(31, 31, 27, 0.8);
}

.map-label {
  font-size: 0.92rem;
  font-weight: 600;
}

.map-label-main {
  left: 44%;
  top: 33%;
  transform: rotate(66deg);
}

.map-label-top {
  left: 6rem;
  top: 2rem;
  transform: rotate(-10deg);
}

.map-label-right {
  right: 3rem;
  top: 5rem;
  transform: rotate(77deg);
}

.map-label-bottom {
  left: 13rem;
  bottom: 1.6rem;
  transform: rotate(-12deg);
}

.map-neighbourhood {
  left: 7rem;
  bottom: 3rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 0.9;
  text-transform: uppercase;
}

.visit-right {
  position: relative;
}

.visit-photo-wrap {
  position: relative;
  padding-top: 5.3rem;
}

.visit-photo {
  min-height: 32.5rem;
}

.visit-photo img {
  object-position: center center;
}

.hours-card {
  position: absolute;
  top: 0;
  right: 2rem;
  z-index: 2;
  width: min(88%, 29rem);
  padding: 2.25rem 2rem 1.45rem;
}

.note-card::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: var(--shadow-soft);
  pointer-events: none;
}

.note-pin {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  width: 2.45rem;
  height: 2.45rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 40%),
    linear-gradient(180deg, #996038, #6c4329);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow:
    0 2px 8px rgba(48, 31, 20, 0.2),
    inset 0 -6px 10px rgba(30, 17, 10, 0.22);
}

.hours-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 5.2rem;
}

.hours-row + .hours-row {
  border-top: 1px solid rgba(43, 37, 29, 0.16);
}

.hours-row strong,
.hours-row span {
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 600;
}

.visit-strip {
  margin-top: 1.4rem;
}

.strip-icon {
  width: 2.7rem;
  height: 2.7rem;
  color: #bac38d;
}

.strip-icon svg {
  width: 2rem;
  height: 2rem;
}

.stagger {
  opacity: 0;
  transform: translateY(20px);
  animation: rise-in 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 3rem 2.7rem 2.7rem;
    min-height: auto;
  }

  .hero-photo {
    min-height: 34rem;
  }

  .hero-proof {
    grid-column: auto;
  }

  .services-layout,
  .story-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .services-side,
  .story-stack {
    grid-template-columns: 1fr;
  }

  .visit-right {
    max-width: 56rem;
  }
}

@media (max-width: 980px) {
  body {
    background:
      linear-gradient(180deg, #201e1a 0 18rem, var(--bg-paper) 18rem 100%);
  }

  .section {
    padding: 1.1rem 0.9rem;
  }

  .proof-item {
    min-height: 5.8rem;
  }

  .hero-strip,
  .visit-strip {
    grid-template-columns: 1fr;
  }

  .strip-action + .strip-action {
    border-left: 0;
    border-top: 1px solid rgba(235, 224, 204, 0.18);
  }

  .services-board {
    padding: 1.6rem;
  }

  .service-row {
    min-height: 6.8rem;
  }

  .story-photo {
    min-height: 32rem;
  }

  .quote-band {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 1rem;
  }

  .quote-band p {
    padding-left: 0;
    border-left: 0;
  }

  .visit-photo-wrap {
    padding-top: 0;
  }

  .hours-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin: 0 0 1rem;
  }

  .visit-photo {
    min-height: 25rem;
  }
}

@media (max-width: 720px) {
  .display-title {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .hero-copy,
  .quote-card,
  .story-copy {
    padding: 2rem 1.4rem;
  }

  .hero-actions,
  .utility-strip,
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .proof-item + .proof-item,
  .utility-item + .utility-item {
    border-left: 0;
    border-top: 1px solid rgba(43, 37, 29, 0.14);
  }

  .service-row {
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding-block: 1rem;
  }

  .service-row .service-arrow {
    display: none;
  }

  .service-row strong,
  .process-row strong {
    font-size: clamp(2.2rem, 9vw, 3.3rem);
  }

  .process-row {
    grid-template-columns: 4rem 1fr;
    padding: 0 1.25rem;
  }

  .process-row .service-arrow {
    display: none;
  }

  .process-row strong {
    padding-left: 1rem;
  }

  .address-block {
    flex-direction: column;
  }

  .map-panel {
    min-height: 18rem;
  }

  .map-neighbourhood {
    left: 2rem;
    bottom: 2.2rem;
    font-size: 1.9rem;
  }

  .map-label-main {
    left: 48%;
  }
}

@media (max-width: 540px) {
  .hero-section::before,
  .services-section::before {
    display: none;
  }

  .button,
  .strip-action {
    width: 100%;
  }

  .strip-action span:last-child {
    font-size: 2.1rem;
  }

  .proof-item {
    padding: 1.15rem 1rem;
  }

  .service-icon {
    width: 3.8rem;
    height: 3.8rem;
  }

  .quote-band {
    padding: 1.3rem;
  }

  .hours-row strong,
  .hours-row span {
    font-size: 1.75rem;
  }
}
