:root {
  color-scheme: light;
  --paper: #f7f2e8;
  --paper-soft: #fbfaf5;
  --linen: #eee5d4;
  --stone: #d7cdbb;
  --clay: #9c7257;
  --bark: #4f3f31;
  --moss: #6d7d4d;
  --sage: #a6ad87;
  --pine: #173820;
  --pine-dark: #0f2617;
  --ink: #1f271d;
  --muted: #6c675d;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(47, 55, 39, 0.16);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  background: var(--paper-soft);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  max-width: min(760px, 74vw);
  color: var(--white);
  font-size: clamp(3rem, 5.4vw, 6.25rem);
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  color: var(--pine-dark);
  font-size: clamp(2.25rem, 5vw, 5rem);
}

h3 {
  color: var(--pine-dark);
  font-size: 1.22rem;
  font-weight: 650;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 2.6vw, 30px);
  width: 100%;
  padding: 18px clamp(16px, 4vw, 52px);
  color: var(--white);
  font-family:
    "Aptos", "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  transition:
    color 180ms ease,
    padding 180ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 10px clamp(10px, 3vw, 42px);
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(15, 38, 23, 0.16);
  opacity: 0;
  transform: scale(0.985);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header.is-past-hero,
.site-header.menu-open {
  padding-block: 12px;
  color: var(--pine-dark);
}

.site-header.is-past-hero::before,
.site-header.menu-open::before {
  inset: 0;
  border-color: rgba(23, 56, 32, 0.12);
  border-radius: 0;
  background: rgba(251, 250, 245, 0.95);
  box-shadow: 0 12px 32px rgba(33, 40, 28, 0.1);
  opacity: 1;
  transform: scale(1);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  font-weight: 700;
}

.brand-placeholder {
  justify-content: center;
  width: clamp(126px, 11vw, 164px);
  height: 64px;
  min-width: 126px;
  padding: 4px 0;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.site-header.is-past-hero .brand-placeholder,
.site-header.menu-open .brand-placeholder {
  filter: drop-shadow(0 4px 8px rgba(15, 38, 23, 0.12));
}

.brand-placeholder:hover {
  transform: scale(1.04);
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 9px rgba(6, 35, 19, 0.42));
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: var(--pine-dark);
  background: rgba(251, 250, 245, 0.92);
  box-shadow: 0 10px 30px rgba(15, 38, 23, 0.12);
  font-size: 0.96rem;
  letter-spacing: 0;
}

.site-header.is-past-hero .brand-name,
.site-header.menu-open .brand-name,
.footer-logo .brand-name {
  border-color: rgba(23, 56, 32, 0.14);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: none;
}

.brand-main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1em;
  font-weight: 700;
}

.brand-sub {
  font-size: 0.82em;
  font-weight: 800;
  text-transform: uppercase;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(15, 38, 23, 0.24);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
}

.site-header.is-past-hero .primary-nav,
.site-header.menu-open .primary-nav {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.primary-nav a {
  position: relative;
  overflow: hidden;
  padding: 10px 13px;
  border-radius: 999px;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.primary-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.035);
}

.site-header.is-past-hero .primary-nav a:hover,
.site-header.menu-open .primary-nav a:hover {
  background: rgba(23, 56, 32, 0.06);
}

.header-cta {
  position: relative;
  justify-self: end;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: var(--pine-dark);
  background: var(--paper-soft);
  box-shadow: 0 12px 30px rgba(15, 38, 23, 0.14);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-past-hero .header-cta,
.site-header.menu-open .header-cta {
  color: var(--paper-soft);
  border-color: var(--pine);
  background: var(--pine);
  box-shadow: none;
}

.header-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 30px rgba(15, 38, 23, 0.18);
}

.header-cta:active {
  transform: scale(0.98);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: var(--app-vh, 100dvh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--pine-dark);
}

.hero-picture,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.015);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 31, 20, 0.78) 0%, rgba(15, 31, 20, 0.52) 42%, rgba(15, 31, 20, 0.2) 78%),
    linear-gradient(0deg, rgba(15, 31, 20, 0.58) 0%, rgba(15, 31, 20, 0.04) 56%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: clamp(118px, 16vh, 154px) 0 clamp(58px, 8vh, 80px);
}

.eyebrow,
.section-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-copy {
  max-width: 670px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  color: var(--paper-soft);
  background: var(--pine);
  border: 1px solid var(--pine);
}

.hero .button-primary {
  color: var(--pine-dark);
  background: var(--paper-soft);
  border-color: var(--paper-soft);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.button-plain {
  color: var(--pine-dark);
  background: transparent;
  border: 1px solid rgba(23, 56, 32, 0.28);
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .reveal-scale {
  transform: translateY(18px) scale(0.985);
}

.js-enabled .reveal-scale.is-visible {
  transform: translateY(0) scale(1);
}

.js-enabled .hero .reveal {
  transform: translateY(14px);
}

.quote-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.quote-list li {
  padding: 8px 11px;
  border: 1px solid rgba(23, 56, 32, 0.12);
  border-radius: 999px;
  color: var(--pine-dark);
  background: rgba(255, 253, 248, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: clamp(76px, 11vw, 144px) 0;
}

.section-heading,
.about-layout,
.contact-layout,
.reviews-heading {
  width: var(--container);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
  text-align: center;
}

.section-heading p:not(.section-kicker),
.about-copy > p,
.contact-layout p {
  color: var(--muted);
  font-size: 1.03rem;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--clay);
}

.section-heading h2 + p,
.about-copy h2 + p,
.contact-layout h2 + p {
  margin-top: 22px;
}

.services-section {
  background: var(--paper-soft);
}

.service-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border: 1px solid rgba(23, 56, 32, 0.1);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: 0 18px 45px rgba(52, 59, 44, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  transition: transform 380ms ease;
}

.service-card:hover img {
  transform: scale(1.035);
}

.service-card > div {
  padding: 22px;
}

.service-index {
  margin-bottom: 34px;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

.service-card h3 + p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-section {
  background: var(--paper);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.about-copy {
  max-width: 720px;
}

.benefit-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(23, 56, 32, 0.16);
}

.benefit-list li {
  padding: 22px 0;
  border-bottom: 1px solid rgba(23, 56, 32, 0.16);
}

.benefit-list span {
  display: block;
  color: var(--pine-dark);
  font-weight: 800;
}

.benefit-list p {
  margin-top: 5px;
  color: var(--muted);
}

.image-break {
  position: relative;
  height: min(78svh, 760px);
  min-height: 430px;
  overflow: hidden;
  background: var(--pine-dark);
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 63%;
  filter: saturate(0.95);
}

.image-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 31, 18, 0.08), rgba(13, 31, 18, 0.44));
}

.image-break-copy {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  z-index: 2;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.7rem);
}

.projects-section {
  background: var(--paper-soft);
}

.section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: 40px;
  align-items: end;
  text-align: left;
}

.gallery-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 190px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--linen);
  box-shadow: 0 18px 42px rgba(52, 59, 44, 0.1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 31, 20, 0) 55%, rgba(15, 31, 20, 0.54) 100%);
  opacity: 0.92;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(15, 31, 20, 0.42);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.reviews-section {
  background:
    linear-gradient(90deg, rgba(214, 205, 187, 0.55), rgba(251, 250, 245, 0.9)),
    var(--paper);
}

.reviews-heading {
  margin-bottom: 42px;
  text-align: center;
}

.review-grid {
  width: var(--container);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 auto;
}

.review-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(23, 56, 32, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
}

.stars {
  color: var(--moss);
  font-size: 0.82rem;
  letter-spacing: 0;
}

blockquote {
  margin: 28px 0;
  color: var(--pine-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.28;
}

.review-author {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(251, 250, 245, 1), rgba(247, 242, 232, 0.78)),
    var(--paper-soft);
}

.faq-section .section-heading {
  margin-bottom: clamp(34px, 4.5vw, 54px);
}

.faq-section .section-heading h2 {
  font-size: clamp(2rem, 3.15vw, 3.45rem);
}

.faq-list {
  width: min(1080px, calc(100vw - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.faq-item {
  align-self: start;
  overflow: hidden;
  border: 1px solid rgba(23, 56, 32, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.68);
  box-shadow: 0 14px 30px rgba(52, 59, 44, 0.05);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.faq-item:hover {
  border-color: rgba(23, 56, 32, 0.18);
  background: rgba(255, 253, 248, 0.92);
  transform: translateY(-2px);
}

.faq-item.is-open {
  border-color: rgba(23, 56, 32, 0.2);
  background: #fffdf8;
  box-shadow: 0 18px 40px rgba(52, 59, 44, 0.08);
}

.faq-question {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 66px;
  padding: 16px 16px 16px 18px;
  border: 0;
  color: var(--pine-dark);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.25;
  font-weight: 800;
}

.faq-icon {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(23, 56, 32, 0.16);
  border-radius: 50%;
  color: var(--pine-dark);
  background: rgba(247, 242, 232, 0.62);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition:
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-icon {
  border-color: rgba(23, 56, 32, 0.28);
  background: rgba(166, 173, 135, 0.2);
  transform: rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: rotate(90deg) scaleX(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer p {
  max-width: 780px;
  padding: 0 50px 18px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.contact-section {
  background: var(--paper-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 0.92fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: stretch;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(23, 56, 32, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(247, 242, 232, 0.98), rgba(230, 219, 199, 0.72)),
    var(--paper);
  box-shadow: var(--shadow);
}

.contact-layout h2 {
  max-width: 620px;
}

.contact-layout p {
  max-width: 540px;
}

.contact-copy {
  align-self: center;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin-top: 22px;
}

.quote-form .form-wide {
  grid-column: 1 / -1;
}

.quote-form label {
  display: grid;
  gap: 6px;
}

.quote-form label span {
  color: var(--pine-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 56, 32, 0.16);
  border-radius: var(--radius);
  color: var(--pine-dark);
  background: rgba(255, 253, 248, 0.86);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.quote-form textarea {
  min-height: 86px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(23, 56, 32, 0.46);
  background: var(--paper-soft);
  box-shadow: 0 0 0 3px rgba(109, 125, 77, 0.18);
}

.contact-actions {
  gap: 8px;
  margin-top: 2px;
}

.contact-actions .button {
  flex: 1 1 150px;
  min-height: 46px;
  padding: 0 15px;
  font-size: 0.78rem;
}

.button-map {
  color: var(--pine-dark);
  background: rgba(255, 253, 248, 0.58);
  border: 1px solid rgba(23, 56, 32, 0.18);
}

.contact-layout img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  max-height: 700px;
  object-fit: cover;
  object-position: center 68%;
  border-radius: var(--radius);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.05fr) minmax(240px, 0.75fr) minmax(220px, 0.6fr);
  gap: 34px;
  width: var(--container);
  margin: 0 auto;
  padding: 54px 0 34px;
  color: var(--pine-dark);
  border-top: 1px solid rgba(23, 56, 32, 0.16);
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-logo-image {
  width: min(190px, 52vw);
  height: auto;
  filter: drop-shadow(0 5px 8px rgba(15, 38, 23, 0.16));
}

.footer-brand p,
.footer-contact,
.footer-social,
.copyright {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-contact {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.footer-contact a,
.footer-social a {
  color: var(--pine-dark);
  font-weight: 800;
}

.footer-social {
  display: grid;
  align-content: start;
  gap: 8px;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 16px;
    color: var(--white);
  }

  .nav-toggle {
    justify-self: end;
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 70px;
    right: 16px;
    left: 16px;
    justify-self: auto;
    width: calc(100vw - 32px);
    display: grid;
    gap: 0;
    padding: 14px;
    color: var(--pine-dark);
    background: rgba(251, 250, 245, 0.97);
    border: 1px solid rgba(23, 56, 32, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-header.menu-open .primary-nav {
    border-color: rgba(23, 56, 32, 0.12);
    background: rgba(251, 250, 245, 0.97);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 16px 10px;
    border-bottom: 1px solid rgba(23, 56, 32, 0.1);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

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

  .about-layout,
  .contact-layout,
  .section-heading-split,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 170px;
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 42px;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(calc(100vw - 28px), 1180px);
  }

  .site-header {
    padding: 16px 14px;
  }

  .brand-placeholder {
    width: 112px;
    height: 52px;
    min-width: 112px;
  }

  .brand-name {
    gap: 5px;
    padding: 8px 11px;
    font-size: 0.76rem;
  }

  .brand-main {
    font-size: 1.08em;
  }

  .brand-sub {
    font-size: 0.76em;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    min-height: var(--app-vh, 100dvh);
  }

  .hero-image {
    object-position: 54% 72%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(15, 31, 20, 0.78), rgba(15, 31, 20, 0.34)),
      linear-gradient(0deg, rgba(15, 31, 20, 0.72) 0%, rgba(15, 31, 20, 0.04) 62%);
  }

  .hero-content {
    padding: 106px 0 44px;
    text-align: center;
  }

  h1 {
    max-width: 96vw;
    margin-inline: auto;
    font-size: clamp(2.7rem, 12.2vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.6rem);
  }

  .hero-copy {
    margin-right: auto;
    margin-left: auto;
    font-size: 1rem;
  }

  .hero-actions {
    width: min(100%, 340px);
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: center;
  }

  .section-heading p:not(.section-kicker),
  .about-copy > p,
  .contact-layout p {
    margin-right: auto;
    margin-left: auto;
  }

  .section-heading-split,
  .about-copy,
  .reviews-heading,
  .contact-copy,
  .footer-brand,
  .footer-contact,
  .footer-social,
  .copyright {
    text-align: center;
  }

  .benefit-list li {
    text-align: center;
  }

  .review-card {
    text-align: center;
  }

  .quote-form label {
    text-align: left;
  }

  .contact-actions {
    justify-content: center;
  }

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

  .service-card img {
    aspect-ratio: 1.28;
  }

  .service-index {
    margin-bottom: 22px;
  }

  .image-break {
    min-height: 360px;
    height: 62svh;
  }

  .image-break-copy {
    right: 18px;
    bottom: 22px;
    left: 18px;
  }

  .gallery-grid {
    display: grid;
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-item,
  .gallery-tall,
  .gallery-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .gallery-item {
    aspect-ratio: 0.9;
  }

  .gallery-item:nth-child(2n) {
    aspect-ratio: 1.18;
  }

  .review-card {
    min-height: auto;
  }

  .contact-layout {
    width: min(calc(100vw - 28px), 1180px);
    padding: 20px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .contact-actions .button {
    width: auto;
    flex: 1 1 calc(50% - 6px);
    min-height: 44px;
  }

  .contact-actions .button-primary {
    flex-basis: 100%;
  }

  .faq-list {
    width: min(calc(100vw - 28px), 980px);
    gap: 10px;
  }

  .faq-question {
    min-height: 66px;
    gap: 12px;
    padding: 16px;
    font-size: 0.94rem;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
  }

  .faq-answer p {
    padding-right: 18px;
    padding-left: 18px;
    padding-bottom: 20px;
  }

  .contact-layout img {
    height: auto;
    min-height: 0;
    aspect-ratio: 0.9;
  }

  .site-footer {
    gap: 26px;
    padding-bottom: 28px;
  }
}
