:root {
  --logo-green: #72f559;
  --brand-black: #000000;
  --green-900: #173522;
  --green-800: #214b32;
  --green-700: #2f5f43;
  --green-500: #5f8f62;
  --green-100: #eaf3e6;
  --cream: #fbf6ed;
  --tan: #e5d6bb;
  --brown: #7b5a36;
  --ink: #17211a;
  --muted: #58665c;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 53, 34, 0.15);
  --radius: 22px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
main [id] {
  scroll-margin-top: 96px;
}

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

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

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  padding: 0.65rem 0.9rem;
  background: var(--green-900);
  color: var(--white);
  border-radius: 999px;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only,
.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 246, 237, 0.9);
  border-bottom: 1px solid rgba(47, 95, 67, 0.12);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: clamp(76px, 9vw, 92px);
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  background: var(--logo-green);
  box-shadow: 0 8px 20px rgba(23, 53, 34, 0.14);
}

.footer-brand .brand-logo {
  width: 78px;
}

.brand small {
  display: block;
  margin-top: -0.25rem;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.82rem;
}

.site-nav.always-visible {
  display: flex;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  color: var(--green-900);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--green-100);
  outline: none;
}

.site-nav .nav-call {
  background: var(--green-900);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(23, 53, 34, 0.16);
  background: var(--white);
  border-radius: 14px;
  padding: 0.7rem;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--green-900);
  border-radius: 999px;
}

.hero {
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(3rem, 6vw, 5.5rem);
  background:
    radial-gradient(circle at 88% 20%, rgba(95, 143, 98, 0.22), transparent 30%),
    linear-gradient(135deg, var(--cream) 0%, #f6efdf 58%, #e9f3e6 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--green-700);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  color: var(--green-900);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.055em;
  color: var(--green-900);
}

h3 {
  margin-bottom: 0.6rem;
  color: var(--green-900);
  font-size: 1.17rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 58ch;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  color: var(--muted);
}

.hero-award {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 100%;
  margin: 0.3rem 0 1.2rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(23, 53, 34, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-900);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(23, 53, 34, 0.08);
}

.hero-award strong {
  display: inline;
  color: var(--brand-black);
}

.award-medal {
  display: inline-grid;
  flex: 0 0 auto;
  width: 2rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--logo-green);
  color: var(--brand-black);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.9);
}

.hero-actions,
.review-links,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.15rem;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background: var(--brand-black);
  color: var(--logo-green);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--green-900);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-900);
  box-shadow: inset 0 0 0 1px rgba(23, 53, 34, 0.14);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.trust-row span {
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(47, 95, 67, 0.12);
  border-radius: 999px;
  color: var(--green-800);
  font-weight: 750;
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 12% -5% auto auto;
  width: 66%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(95, 143, 98, 0.18);
  filter: blur(2px);
}

.logo-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 34px;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.3), transparent 30%),
    linear-gradient(135deg, var(--logo-green) 0%, #2f5f43 52%, var(--brand-black) 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.logo-card::before,
.logo-card::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 18px;
  background: var(--brand-black);
  opacity: 0.92;
  z-index: -1;
}

.logo-card::before {
  top: 12%;
}

.logo-card::after {
  bottom: 12%;
}

.logo-frame {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 330px;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  border: 8px solid var(--brand-black);
  border-radius: 28px;
  background: var(--logo-green);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-card-content {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.9);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.logo-card-content p {
  margin-bottom: 0.4rem;
  color: var(--logo-green);
  font-weight: 800;
}

.logo-card-content h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.yard-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(180deg, #c8e5f8 0 34%, #afcc7a 34% 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.sun {
  position: absolute;
  right: 12%;
  top: 11%;
  width: 86px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f7ca6b;
  box-shadow: 0 0 0 18px rgba(247, 202, 107, 0.18);
}

.yard-lines {
  position: absolute;
  inset: 34% 0 0;
  transform: skewY(-7deg) translateY(34px);
  transform-origin: left top;
  opacity: 0.6;
}

.yard-lines span {
  display: block;
  height: 56px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.28);
}

.yard-card::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -18%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(47, 95, 67, 0.42);
}

.yard-card-content {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(23, 53, 34, 0.88);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.yard-card-content p {
  margin-bottom: 0.4rem;
  color: #cde2d0;
  font-weight: 800;
}

.yard-card-content h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.info-strip {
  background: var(--green-900);
  color: var(--white);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.strip-grid > div {
  padding: 1.25rem;
  background: var(--green-900);
}

.strip-grid strong,
.strip-grid span {
  display: block;
}

.strip-grid strong {
  margin-bottom: 0.2rem;
}

.strip-grid span {
  color: #dce8dc;
}

.award-section {
  padding: clamp(2.2rem, 5vw, 3.5rem) 0 0;
  background: var(--cream);
}

.award-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 1.6rem);
  align-items: center;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid rgba(23, 53, 34, 0.12);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(114, 245, 89, 0.18), transparent 18rem),
    var(--white);
  box-shadow: var(--shadow);
}

.award-seal {
  display: grid;
  width: clamp(86px, 12vw, 118px);
  aspect-ratio: 1;
  place-items: center;
  border: 5px solid var(--brand-black);
  border-radius: 50%;
  background: var(--logo-green);
  color: var(--brand-black);
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  box-shadow: 0 12px 28px rgba(23, 53, 34, 0.14);
}

.award-banner h2 {
  max-width: 820px;
  margin-bottom: 0.55rem;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.award-banner p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.section {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.section-muted {
  background: #eef4e9;
}

.section-heading {
  max-width: 730px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.about-copy p,
.contact-section p,
.testimonial-panel p,
.faq-grid p,
.card p,
.site-footer p {
  color: var(--muted);
}

.align-left {
  margin-inline: 0;
  text-align: left;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-cards {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  padding: 1.2rem;
  border: 1px solid rgba(23, 53, 34, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 35px rgba(23, 53, 34, 0.07);
}

.card img {
  margin-bottom: 1.3rem;
}

.card p {
  margin-bottom: 0;
}

.about-grid,
.reviews-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 53, 34, 0.1);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.about-image figcaption {
  margin: 0;
  padding: 1rem 1.15rem 1.1rem;
  color: var(--green-900);
  font-weight: 800;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.about-points div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.about-points strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--green-900);
  font-size: 1.25rem;
}

.about-points span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonial-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

blockquote {
  margin: 0;
}

blockquote p {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--green-900) !important;
}

.quote-note {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.review-links {
  margin-top: 1.2rem;
}



.work-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0 2.4rem;
}

.work-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 53, 34, 0.1);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(23, 53, 34, 0.08);
}

.work-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  background: #eef4e9;
}

.work-photo-card figcaption {
  margin: 0;
  padding: 0.9rem 1rem 1rem;
  color: var(--green-900);
  font-weight: 850;
}

.work-social-grid {
  margin-top: 0.5rem;
}

.work-links-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  margin-top: 0.7rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid rgba(23, 53, 34, 0.1);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(114, 245, 89, 0.16), transparent 18rem),
    var(--white);
  box-shadow: var(--shadow);
}

.work-links-card p:last-child {
  margin-bottom: 0;
}

.work-links-copy h3 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: -0.04em;
}

.work-links-actions {
  justify-content: flex-end;
}

.work-links-actions a:first-child {
  background: var(--green-900);
  color: var(--white);
}

.faq-grid {
  display: grid;
  gap: 0.9rem;
  max-width: 880px;
  margin-inline: auto;
}

.faq-grid details {
  border: 1px solid rgba(23, 53, 34, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 32px rgba(23, 53, 34, 0.06);
}

.faq-grid summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  color: var(--green-900);
  font-weight: 900;
}

.faq-grid details[open] summary {
  padding-bottom: 0.4rem;
}

.faq-grid p {
  padding: 0 1.15rem 1rem;
  margin-bottom: 0;
}

.faq-grid a {
  color: var(--green-900);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.success-section {
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: center;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background:
    radial-gradient(circle at top right, rgba(114, 245, 89, 0.2), transparent 34rem),
    linear-gradient(180deg, #f8fbf3 0%, #eef4e9 100%);
}

.success-card {
  max-width: 820px;
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid rgba(23, 53, 34, 0.1);
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.facebook-feed-grid {
  align-items: start;
}

.facebook-panel {
  display: grid;
  justify-items: center;
  padding: clamp(1rem, 3vw, 1.4rem);
  border: 1px solid rgba(23, 53, 34, 0.1);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.facebook-widget-shell {
  width: 100%;
  max-width: 500px;
}

.facebook-status {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.8rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(23, 53, 34, 0.1);
  border-radius: 18px;
  background: #f8fbf3;
  color: var(--green-900);
  text-align: center;
}

.facebook-status strong {
  font-family: var(--font-heading);
  font-size: 1rem;
}

.facebook-status span {
  color: var(--muted);
  font-size: 0.9rem;
}

.facebook-embed-shell {
  display: grid;
  justify-items: center;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #f3f5f7;
}

.facebook-panel iframe {
  display: block;
  width: 100%;
  max-width: 500px;
  min-height: 650px;
  border-radius: 18px;
  background: #f3f5f7;
}

.facebook-panel iframe:not([src]) {
  display: none;
}

.facebook-widget-shell.is-loaded .facebook-status {
  display: none;
}

.facebook-widget-shell.is-preview .facebook-status,
.facebook-widget-shell.is-delayed .facebook-status {
  display: grid;
}

.facebook-direct-card {
  margin-top: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(23, 53, 34, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf3 100%);
  text-align: center;
}

.facebook-direct-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
  color: var(--green-900);
}

.facebook-direct-card p {
  margin: 0 auto 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.review-links a,
.contact-methods a {
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(23, 53, 34, 0.14);
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 800;
}

.cta-section {
  padding: 1rem 0;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: 32px;
  background: var(--green-900);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-card h2,
.cta-card .eyebrow {
  color: var(--white);
}

.cta-card .eyebrow {
  opacity: 0.72;
}

.cta-card h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.cta-card .btn-primary {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--green-900);
}

.contact-grid {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
}

.contact-methods {
  margin-top: 1.2rem;
}

.quote-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(23, 53, 34, 0.1);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--green-900);
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(23, 53, 34, 0.18);
  border-radius: 15px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--green-700);
  outline: 3px solid rgba(95, 143, 98, 0.16);
}

.quote-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--green-700) 50%), linear-gradient(135deg, var(--green-700) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form button {
  width: fit-content;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 0.8rem;
  padding: 0.95rem;
  border: 1px solid rgba(23, 53, 34, 0.14);
  border-radius: 18px;
  background: #fffdf8;
}

.service-options legend {
  padding: 0 0.35rem;
  color: var(--green-900);
  font-weight: 900;
}

.service-options label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 750;
}

.service-options input {
  width: auto;
  accent-color: var(--green-700);
}

.form-note {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.form-status {
  display: block;
  margin: -0.2rem 0 0;
  padding: 0.8rem 0.95rem;
  border-radius: 14px;
  background: rgba(95, 143, 98, 0.12);
  color: var(--green-900);
  font-weight: 800;
}

.form-status[data-visible="true"] {
  display: block;
}

.form-status[data-state="error"] {
  background: rgba(150, 42, 30, 0.1);
  color: #7a241b;
}

.site-footer {
  padding: 3rem 0 1.2rem;
  background: var(--green-900);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 2rem;
}

.footer-brand small,
.site-footer p {
  color: #c9ddcb;
}

.site-footer h2 {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer a:not(.brand) {
  display: block;
  width: fit-content;
  margin-bottom: 0.5rem;
  color: #dce8dc;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #c9ddcb;
  font-size: 0.9rem;
}

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

  .site-nav {
    position: absolute;
    inset: 78px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    border: 1px solid rgba(23, 53, 34, 0.12);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav.always-visible {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-grid,
  .about-grid,
  .reviews-grid,
  .contact-grid,
  .work-links-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .award-banner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  h1 {
    max-width: 11ch;
  }

  .cards,
  .strip-grid,
  .work-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 1.2rem, var(--max-width));
  }

  .nav-wrap {
    min-height: 72px;
  }

  .site-nav {
    inset: 72px 0.6rem auto 0.6rem;
  }

  h1 {
    font-size: clamp(2.8rem, 17vw, 4.2rem);
  }

  .hero-actions,
  .hero-actions .btn,
  .hero-award,
  .cta-card .btn,
  .quote-form button {
    width: 100%;
  }

  .yard-card,
  .logo-card {
    min-height: 380px;
  }

  .logo-frame {
    min-height: 240px;
  }

  .cards,
  .strip-grid,
  .about-points,
  .work-gallery {
    grid-template-columns: 1fr;
  }

  .strip-grid > div:last-child {
    grid-column: auto;
  }

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

  .work-links-actions {
    justify-content: flex-start;
  }
}

