/* ===================================================
   Stone House Land Maintenance — Site Stylesheet
   =================================================== */

:root {
  /* Earth-tone palette (sampled from brand logo) */
  --color-bg: #EEEAE2;          /* light earth-tone gray */
  --color-bg-soft: #F6F4EF;     /* softer light gray for cards */
  --color-bg-dark: #1A1A1A;     /* darker charcoal gray (section 2 / footer base) */
  --color-bg-dark-alt: #121212; /* deeper charcoal variant (footer) */
  --color-white: #FFFFFF;
  --color-cream: #FAF6EE;       /* cream white — header bar */
  --color-charcoal: #242424;    /* premium charcoal accent (headings, CTA button) */
  --color-charcoal-dark: #101010;
  --color-green: #6E8B72;       /* muted sage green (logo grass icon + accents) */
  --color-green-dark: #56705A;
  --color-text: #2B2A27;        /* body text on light bg */
  --color-text-muted: #6B6862;
  --color-text-invert: #F5F3EE; /* off-white text on dark bg */
  --color-text-invert-muted: #C9C5BC;
  --color-border: #DEDACF;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-logo: 'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-width: 1180px;
  --nav-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

.kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-green);
  display: block;
  margin-bottom: 14px;
}

.kicker--invert { color: var(--color-green); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 38px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.btn--primary {
  background: var(--color-charcoal);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-charcoal-dark);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--color-text-invert);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
}

.btn--outline-dark {
  background: transparent;
  border-color: var(--color-charcoal);
  color: var(--color-charcoal);
}
.btn--outline-dark:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.btn--light {
  background: var(--color-white);
  color: var(--color-charcoal);
}
.btn--light:hover {
  background: var(--color-bg);
  transform: translateY(-1px);
}

/* ===================================================
   Navigation
   =================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--color-cream);
  box-shadow: 0 1px 0 rgba(36, 36, 36, 0.08);
  z-index: 1000;
  transition: box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(36, 36, 36, 0.12);
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.logo-text-main {
  font-family: var(--font-logo);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.logo-text-sub {
  font-family: var(--font-logo);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  opacity: 0.72;
  margin-top: 3px;
}

.logo-icon {
  height: 32px;
  width: auto;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.menu-toggle:hover { background: rgba(36, 36, 36, 0.08); }

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-charcoal);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.nav-dropdown {
  position: fixed;
  top: var(--nav-height);
  right: 0;
  width: auto;
  min-width: 148px;
  background: rgba(250, 246, 238, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(222, 218, 207, 0.7);
  border-top: none;
  border-radius: 0 0 0 12px;
  box-shadow: 0 10px 26px rgba(36, 36, 36, 0.1);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  z-index: 999;
}
.nav-dropdown.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  text-align: right;
}

.nav-dropdown a {
  display: block;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
  transition: color 0.2s ease, background 0.2s ease, padding-right 0.2s ease;
}
.nav-dropdown a:hover {
  color: var(--color-green-dark);
  background: var(--color-bg-soft);
  padding-right: 30px;
}

/* ===================================================
   Hero (homepage)
   =================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
}
.hero-slide.is-active {
  opacity: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 7, 0.72);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  color: var(--color-text-invert);
}

.hero-title {
  font-family: var(--font-logo);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  color: var(--color-white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  margin: 0;
}

.hero-cities-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 22px auto 0;
  background: transparent;
}

.hero-cities-icon {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--color-white);
}

.hero-cities-loop {
  position: relative;
  display: inline-block;
  height: 22px;
  min-width: 130px;
  text-align: left;
}

.hero-cities-item {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: quote-suggestion-cycle 12.8s ease-in-out infinite;
}
.hero-cities-item:nth-child(1) { animation-delay: 0s; }
.hero-cities-item:nth-child(2) { animation-delay: 3.2s; }
.hero-cities-item:nth-child(3) { animation-delay: 6.4s; }
.hero-cities-item:nth-child(4) { animation-delay: 9.6s; }

@media (prefers-reduced-motion: reduce) {
  .hero-cities-item { animation: none; opacity: 0; }
  .hero-cities-item:first-child { opacity: 1; }
}

@media (max-width: 560px) {
  .hero-cities-bar { gap: 8px; }
  .hero-cities-item { font-size: 0.88rem; }
}

/* ===================================================
   Page Banner (inner pages)
   =================================================== */
.page-banner {
  position: relative;
  height: 42vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-dark);
  margin-top: 0;
}
.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 24px;
}
.page-banner-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--color-white);
}

/* ===================================================
   Section: Approach / Description (dark)
   =================================================== */
.section {
  padding: 110px 0;
}

.page-banner + .section {
  padding-top: 46px;
}

.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-invert);
}

.section--light {
  background: var(--color-bg);
}

.section--soft {
  background: var(--color-bg-soft);
}

/* ===================================================
   Intro Statement
   =================================================== */
.intro-statement {
  background: var(--color-bg-soft);
  padding: 70px 0;
  text-align: center;
}

.intro-statement .container {
  max-width: 760px;
}

.intro-statement .kicker {
  text-align: center;
}

.intro-statement-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 500;
  color: var(--color-charcoal);
  line-height: 1.4;
  margin: 0;
}

/* ===================================================
   Testimonial
   =================================================== */
.testimonial-section {
  padding: 110px 0;
  background: var(--color-bg-dark-alt);
}

.testimonial {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.testimonial-quote-mark {
  flex: none;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--color-green);
  opacity: 0.55;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.6;
  color: var(--color-text-invert);
  margin: 0 0 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  border: 1px solid rgba(255,255,255,0.15);
}

.testimonial-name {
  display: block;
  font-weight: 600;
  color: var(--color-text-invert);
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #F2B84B;
}
.testimonial-stars svg { width: 15px; height: 15px; }

/* ===================================================
   CTA Section
   =================================================== */
.cta-section {
  padding: 130px 0;
  text-align: center;
  background: var(--color-white);
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-charcoal);
  max-width: 720px;
  margin: 0 auto 40px;
}

.cta-phone {
  margin-top: 28px;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.cta-phone a {
  font-family: var(--font-heading);
  color: var(--color-charcoal);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.025em;
  font-variant-numeric: lining-nums tabular-nums;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.cta-phone a:hover { border-color: var(--color-charcoal); }

.cta-section--dark {
  background: var(--color-bg-dark);
}
.cta-section--dark h2 { color: var(--color-white); }
.cta-section--dark .cta-phone { color: var(--color-text-invert-muted); }
.cta-section--dark .cta-phone a { color: var(--color-white); }
.cta-section--dark .cta-phone a:hover { border-color: var(--color-white); }

/* ===================================================
   Footer
   =================================================== */
.site-footer {
  background: var(--color-bg-dark-alt);
  color: var(--color-text-invert-muted);
  padding: 34px 0;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.site-footer a { color: var(--color-text-invert); }
.site-footer a:hover { color: var(--color-green); }
.site-footer .footer-divider { margin: 0 10px; opacity: 0.4; }

/* ===================================================
   Floating Quote Bar
   =================================================== */
.quote-bar {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-white);
  border-radius: 999px;
  padding: 7px 7px 7px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: quote-bar-breathe 4.2s ease-in-out infinite;
}

.quote-bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.quote-bar-main {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s ease;
}

.quote-bar-main:hover {
  opacity: 0.7;
}

.quote-bar-main:hover .quote-bar-label {
  color: var(--color-green-dark);
}

.quote-bar-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--color-charcoal-dark);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.quote-bar-input {
  position: relative;
  width: 190px;
  height: 18px;
  padding-left: 14px;
  border-left: 1px solid var(--color-border);
  overflow: hidden;
}

.quote-bar-suggestion {
  position: absolute;
  left: 14px;
  top: 0;
  right: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  opacity: 0;
  animation: quote-suggestion-cycle 19.6s ease-in-out infinite;
}
.quote-bar-suggestion:nth-child(1) { animation-delay: 0s; }
.quote-bar-suggestion:nth-child(2) { animation-delay: 2.8s; }
.quote-bar-suggestion:nth-child(3) { animation-delay: 5.6s; }
.quote-bar-suggestion:nth-child(4) { animation-delay: 8.4s; }
.quote-bar-suggestion:nth-child(5) { animation-delay: 11.2s; }
.quote-bar-suggestion:nth-child(6) { animation-delay: 14s; }
.quote-bar-suggestion:nth-child(7) { animation-delay: 16.8s; }

.quote-bar-icon {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-charcoal);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.quote-bar-icon:hover { background: var(--color-charcoal-dark); }
.quote-bar-icon svg { width: 15px; height: 15px; }

@keyframes quote-bar-breathe {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16); }
  50% { transform: scale(1.02); box-shadow: 0 11px 30px rgba(0, 0, 0, 0.22); }
}

@keyframes quote-suggestion-cycle {
  0% { opacity: 0; transform: translateY(5px); }
  4% { opacity: 1; transform: translateY(0); }
  12% { opacity: 1; transform: translateY(0); }
  16% { opacity: 0; transform: translateY(-5px); }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .quote-bar { animation: none; }
  .quote-bar-suggestion { animation: none; opacity: 0; }
  .quote-bar-suggestion:first-child { opacity: 1; }
}

@media (max-width: 560px) {
  .quote-bar {
    left: 16px;
    bottom: 16px;
    padding: 6px 6px 6px 16px;
    gap: 9px;
  }
  .quote-bar-label { font-size: 0.74rem; }
  .quote-bar-input { width: 130px; }
  .quote-bar-suggestion { font-size: 0.7rem; }
  .quote-bar-icon { width: 28px; height: 28px; }
  .quote-bar-icon svg { width: 13px; height: 13px; }
}

/* ===================================================
   Services Page
   =================================================== */
.services-hero {
  background: var(--color-cream);
  padding: calc(var(--nav-height) + 64px) 0 90px;
}

.services-hero--home {
  padding: 100px 0;
}

.kicker--charcoal {
  color: var(--color-text-muted);
}

.services-hero-title {
  font-size: clamp(2.4rem, 5.2vw, 3.6rem);
  color: var(--color-charcoal);
  max-width: 640px;
  margin-bottom: 22px;
}

.services-hero-sub {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0;
}

.services-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 56px;
}

.circle-icon-btn {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-charcoal);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.2s ease;
}
.circle-icon-btn svg { width: 17px; height: 17px; }

/* Featured service card */
.service-featured {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(60, 56, 51, 0.08);
}

.service-featured-photo {
  width: 100%;
  height: 360px;
  background-size: cover;
  background-position: center;
}

.service-featured-body {
  padding: 30px 32px 34px;
}

.service-featured-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-charcoal);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-featured-icon svg { width: 22px; height: 22px; }

.service-featured-body h3 {
  font-size: 1.6rem;
  color: var(--color-charcoal);
}

.service-featured-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 20px 0;
}

.service-featured-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.service-featured-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Expandable service list */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
}

.service-item-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}
.service-item-summary::-webkit-details-marker { display: none; }
.service-item-summary::marker { content: ""; }

.service-item-thumb {
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}

.service-item[open] .service-item-thumb {
  display: none;
}

.service-item-text {
  flex: 1;
  min-width: 0;
}

.service-item-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 4px;
  gap: 9px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--color-charcoal);
  margin: 0;
}

.service-item-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0;
}

.badge-soon {
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-green-dark);
  background: rgba(110, 139, 114, 0.14);
  padding: 3px 9px;
  border-radius: 20px;
  vertical-align: middle;
}

.service-item .circle-icon-btn { width: 36px; height: 36px; }

.service-item[open] .service-item-summary .circle-icon-btn {
  transform: rotate(180deg);
}

.service-item-expand {
  padding: 0 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: service-expand-fade 0.25s ease;
}

.service-item-expand-photo {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}

@keyframes service-expand-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .service-item-expand { animation: none; }
}

@media (max-width: 860px) {
  .services-showcase {
    grid-template-columns: 1fr;
  }
  .service-featured-photo { height: 260px; }
}

/* ===================================================
   Contact Page
   =================================================== */
.contact-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-dark);
  text-align: center;
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  padding: 0 24px;
  max-width: 720px;
}
.contact-hero-content h1 {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  color: var(--color-white);
  margin-bottom: 34px;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.contact-details .detail-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 10px;
  display: block;
}

.contact-details .detail-value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--color-charcoal);
}

/* ===================================================
   Scroll Reveal
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.reveal-delay-1 { transition-delay: 0.1s; }
.reveal.reveal-delay-2 { transition-delay: 0.22s; }
.reveal.reveal-delay-3 { transition-delay: 0.34s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===================================================
   Responsive
   =================================================== */
@media (max-width: 860px) {
  .section { padding: 80px 0; }
  .cta-section { padding: 90px 0; }
  .testimonial-section { padding: 80px 0; }
}

@media (max-width: 560px) {
  :root { --nav-height: 68px; }
  .logo-link img { height: 26px; }
  .container { padding: 0 20px; }
  .service-card:not(.service-card--photo) { flex-direction: column; padding: 30px 26px; }
  .service-card--photo .service-card-body { padding: 24px 26px 28px; }
  .contact-details { gap: 34px; }
  .testimonial { gap: 18px; }
  .testimonial-quote-mark { font-size: 3rem; }
}
