/* =========================================================
   C&A CUSTOM BUILDERS — V5
   More C&A. Less Marketing.
========================================================= */


/* =========================================================
   1. ROOT / RESET
========================================================= */

:root {
  --green: #174d32;
  --green-dark: #103723;
  --green-deep: #0b2b1c;

  --charcoal: #242424;
  --black: #171717;

  --bronze: #a87942;

  --ivory: #f7f4ed;
  --paper: #fbfaf6;
  --white: #ffffff;

  --border: rgba(36, 36, 36, 0.14);

  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;

  --container: 1380px;

  --header-height: 86px;
}


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


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  background: var(--paper);
  color: var(--charcoal);

  font-family: var(--sans);

  -webkit-font-smoothing: antialiased;
}


body.menu-open {
  overflow: hidden;
}


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


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


button {
  font: inherit;
}


.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}


.eyebrow {
  margin: 0 0 24px;

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.17em;
  text-transform: uppercase;

  color: var(--green);
}


.eyebrow.light {
  color: rgba(255, 255, 255, 0.62);
}


/* =========================================================
   2. TYPOGRAPHY
========================================================= */

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


h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
}


h1 {
  margin-bottom: 32px;

  font-size: clamp(4.6rem, 9vw, 9.6rem);

  line-height: 0.82;
  letter-spacing: -0.045em;
}


h2 {
  margin-bottom: 0;

  font-size: clamp(3rem, 6vw, 6rem);

  line-height: 0.96;
  letter-spacing: -0.035em;
}


h3 {
  margin-bottom: 0;
}


p {
  line-height: 1.65;
}


/* =========================================================
   3. HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;

  z-index: 100;

  height: var(--header-height);

  background: rgba(251, 250, 246, 0.94);

  border-bottom: 1px solid transparent;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


.site-header.scrolled {
  border-color: var(--border);

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.035);
}


.header-inner {
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}


.header-logo {
  width: 50px;
  height: 50px;

  object-fit: contain;
}


.header-brand-copy {
  display: flex;
  flex-direction: column;

  line-height: 1;
}


.header-brand-name {
  font-family: var(--serif);

  font-size: 1.23rem;

  line-height: 1;
}


.header-brand-sub {
  margin-top: 5px;

  font-size: 0.61rem;
  font-weight: 700;

  letter-spacing: 0.16em;
}


.desktop-nav {
  display: flex;
  align-items: center;

  gap: 30px;

  font-size: 0.78rem;
  font-weight: 600;

  letter-spacing: 0.045em;
}


.desktop-nav > a:not(.nav-cta) {
  position: relative;
}


.desktop-nav > a:not(.nav-cta)::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0;
  height: 1px;

  background: var(--green);

  transition: width 0.25s ease;
}


.desktop-nav > a:not(.nav-cta):hover::after {
  width: 100%;
}


.nav-cta {
  padding: 13px 18px;

  background: var(--green);
  color: white;
}


/* =========================================================
   4. MOBILE MENU
========================================================= */

.menu-button {
  display: none;

  position: relative;

  width: 42px;
  height: 42px;

  border: 0;
  background: transparent;

  cursor: pointer;
}


.menu-button span {
  position: absolute;

  left: 8px;

  width: 26px;
  height: 1px;

  background: var(--charcoal);

  transition:
    transform 0.3s ease,
    top 0.3s ease;
}


.menu-button span:first-child {
  top: 16px;
}


.menu-button span:last-child {
  top: 25px;
}


.menu-button.active span:first-child {
  top: 21px;

  transform: rotate(45deg);
}


.menu-button.active span:last-child {
  top: 21px;

  transform: rotate(-45deg);
}


.mobile-menu {
  position: fixed;

  inset: var(--header-height) 0 0;

  z-index: 90;

  display: none;

  padding: 60px 32px 30px;

  background: var(--ivory);

  opacity: 0;

  transform: translateY(-12px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}


.mobile-menu.active {
  opacity: 1;
  transform: translateY(0);
}


.mobile-menu nav {
  display: flex;
  flex-direction: column;

  gap: 14px;
}


.mobile-menu nav > a:not(.mobile-menu-cta) {
  padding: 7px 0;

  font-family: var(--serif);

  font-size: clamp(2.5rem, 11vw, 4rem);

  line-height: 1;
}


.mobile-menu-cta {
  display: inline-flex;

  justify-content: center;

  margin-top: 28px;

  padding: 18px 24px;

  background: var(--green);

  color: white;

  font-weight: 600;
}


.mobile-menu-footer {
  position: absolute;

  left: 32px;
  bottom: 32px;

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: rgba(36, 36, 36, 0.55);
}


/* =========================================================
   5. BUTTONS / LINKS
========================================================= */

.button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 54px;

  padding: 0 24px;

  border: 1px solid transparent;

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.075em;
  text-transform: uppercase;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}


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


.button-primary {
  background: var(--green);
  color: var(--white);
}


.button-primary:hover {
  background: var(--green-dark);
}


.button-light {
  background: var(--ivory);
  color: var(--green-deep);
}


.button-large {
  min-height: 62px;

  padding-inline: 34px;
}


.text-link {
  display: inline-flex;

  align-items: center;

  gap: 13px;

  padding-bottom: 6px;

  border-bottom: 1px solid var(--charcoal);

  font-size: 0.8rem;
  font-weight: 700;

  letter-spacing: 0.06em;
  text-transform: uppercase;
}


.text-link span {
  transition: transform 0.25s ease;
}


.text-link:hover span {
  transform: translateX(5px);
}


/* =========================================================
   6. HERO
========================================================= */

.hero {
  min-height: calc(100vh - var(--header-height));

  padding: 70px 0 84px;

  background: var(--paper);
}


.hero-inner {
  display: grid;

  grid-template-columns: 0.92fr 1.08fr;

  gap: clamp(50px, 7vw, 110px);

  align-items: center;
}


.hero-copy {
  padding-top: 12px;
}


.hero-brand-lockup {
  display: inline-flex;
  align-items: center;

  gap: 16px;

  margin: 0 0 28px;
}


.hero-logo {
  width: 76px;
  height: 76px;

  object-fit: contain;
}


.hero-brand-text {
  display: flex;
  flex-direction: column;

  line-height: 1;
}


.hero-brand-text span {
  font-family: var(--serif);

  font-size: 1.9rem;
}


.hero-brand-text strong {
  margin-top: 7px;

  font-size: 0.65rem;

  letter-spacing: 0.18em;
}


.hero-services {
  margin-bottom: 18px;

  font-size: 0.86rem;
  font-weight: 700;

  letter-spacing: 0.06em;
  text-transform: uppercase;
}


.hero-services span {
  margin-inline: 7px;

  color: var(--bronze);
}


.hero-description {
  max-width: 520px;

  margin-bottom: 30px;

  font-size: 1.05rem;

  color: rgba(36, 36, 36, 0.72);
}


.hero-actions {
  display: flex;
  align-items: center;

  gap: 30px;

  margin-bottom: 34px;
}


.hero-review {
  display: flex;
  align-items: center;

  gap: 13px;

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.stars {
  letter-spacing: 0.1em;

  color: var(--bronze);
}


.hero-image-wrap {
  position: relative;

  height: min(74vh, 820px);

  min-height: 620px;

  overflow: hidden;
}


.hero-image {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


.hero-image-tag {
  position: absolute;

  left: 24px;
  bottom: 24px;

  display: flex;
  flex-direction: column;

  padding: 18px 20px;

  background: rgba(247, 244, 237, 0.93);

  backdrop-filter: blur(10px);
}


.hero-image-tag span {
  margin-bottom: 4px;

  font-size: 0.61rem;
  font-weight: 700;

  letter-spacing: 0.15em;
}


.hero-image-tag strong {
  font-family: var(--serif);
  font-size: 1.12rem;
}


/* =========================================================
   7. BRAND STATEMENT
========================================================= */

.brand-statement {
  padding: 145px 0;

  background: var(--green-deep);

  color: var(--ivory);
}


.statement-inner {
  display: grid;

  grid-template-columns: 110px 1fr;

  gap: 50px;
}


.section-number {
  padding-top: 18px;

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.16em;

  color: rgba(255, 255, 255, 0.45);
}


.brand-statement h2 {
  max-width: 1050px;
}


.brand-statement h2 em {
  color: #c3a375;

  font-style: normal;
}


/* =========================================================
   8. SERVICES
========================================================= */

.services-section {
  padding: 145px 0;

  background: var(--ivory);
}


.section-heading {
  display: grid;

  grid-template-columns: 1fr 0.55fr;

  align-items: end;

  gap: 70px;

  margin-bottom: 80px;
}


.section-intro {
  max-width: 440px;

  margin: 0 0 10px auto;

  font-size: 1rem;

  color: rgba(36, 36, 36, 0.64);
}


.services-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);
}


.service-card {
  min-height: 530px;

  display: flex;
  flex-direction: column;

  padding: 42px;

  border: 1px solid var(--border);

  background: var(--paper);
}


.service-card + .service-card {
  border-left: 0;
}


.service-card-dark {
  background: var(--green);
  color: var(--ivory);

  border-color: var(--green);
}


.service-number {
  margin-bottom: auto;

  font-size: 0.68rem;
  font-weight: 700;

  letter-spacing: 0.15em;

  color: var(--bronze);
}


.service-card h3 {
  margin-bottom: 24px;

  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 4rem);

  font-weight: 400;

  line-height: 0.95;
}


.service-card p {
  max-width: 330px;

  margin-bottom: 34px;

  color: rgba(36, 36, 36, 0.65);
}


.service-card-dark p {
  color: rgba(255, 255, 255, 0.65);
}


.service-list {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;
}


.service-list span {
  padding: 8px 11px;

  border: 1px solid rgba(36, 36, 36, 0.15);

  font-size: 0.67rem;
  font-weight: 600;

  letter-spacing: 0.05em;
  text-transform: uppercase;
}


.service-card-dark .service-list span {
  border-color: rgba(255, 255, 255, 0.19);
}


/* =========================================================
   9. OUTDOOR FEATURE
========================================================= */

.outdoor-feature {
  padding: 140px 0;

  background: var(--paper);
}


.outdoor-grid {
  display: grid;

  grid-template-columns: 1.2fr 0.78fr;

  grid-template-rows: auto auto;

  gap: 34px 70px;
}


.outdoor-image-large {
  grid-row: 1 / 3;

  height: 760px;
}


.outdoor-image-large img,
.outdoor-image-small img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


.outdoor-copy {
  align-self: end;

  padding: 50px 0 32px;
}


.outdoor-copy h2 {
  margin-bottom: 28px;
}


.outdoor-copy p {
  max-width: 420px;

  margin-bottom: 30px;

  color: rgba(36, 36, 36, 0.65);
}


.outdoor-image-small {
  height: 280px;
}


/* =========================================================
   10. WORK
========================================================= */

.work-section {
  padding: 150px 0;

  background: var(--ivory);
}


.work-heading {
  margin-bottom: 80px;
}


.work-grid {
  display: grid;

  grid-template-columns: 1.25fr 0.75fr;

  gap: 80px 26px;
}


.project-image {
  overflow: hidden;

  background: #ddd;
}


.project img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.65s ease;
}


.project:hover img {
  transform: scale(1.025);
}


.project-large .project-image {
  height: 730px;
}


.project:not(.project-large):not(.project-wide) .project-image {
  height: 500px;
}


.project-wide {
  grid-column: 1 / -1;
}


.project-wide .project-image {
  height: 650px;
}


.project-info {
  margin-top: 20px;
}


.project-info span {
  display: block;

  margin-bottom: 8px;

  font-size: 0.64rem;
  font-weight: 700;

  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: var(--green);
}


.project-info h3 {
  font-family: var(--serif);

  font-size: 2rem;
  font-weight: 400;
}


/* =========================================================
   11. CONCEPT / SKETCH
========================================================= */

.concept-section {
  padding: 150px 0;

  background: var(--paper);
}


.concept-grid {
  display: grid;

  grid-template-columns: 0.6fr 1.4fr;

  gap: 90px;

  align-items: center;
}


.concept-copy {
  position: sticky;

  top: calc(var(--header-height) + 50px);
}


.concept-copy h2 {
  margin-bottom: 26px;
}


.concept-copy > p:last-child {
  color: rgba(36, 36, 36, 0.62);
}


.concept-images {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;
}


.concept-card {
  position: relative;

  margin: 0;

  background: var(--ivory);
}


.concept-card img {
  aspect-ratio: 0.82;

  object-fit: cover;
}


.concept-label {
  position: absolute;

  top: 18px;
  left: 18px;

  z-index: 2;

  padding: 8px 10px;

  background: rgba(251, 250, 246, 0.91);

  font-size: 0.62rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}


/* =========================================================
   12. DETAIL FEATURE
========================================================= */

.detail-section {
  display: grid;

  grid-template-columns: 1fr 1fr;

  min-height: 720px;
}


.detail-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


.detail-copy {
  display: flex;

  align-items: center;

  padding: clamp(60px, 8vw, 120px);

  background: var(--green-deep);

  color: white;
}


.detail-copy h2 {
  font-size: clamp(3rem, 5.3vw, 5.7rem);
}


/* =========================================================
   13. PROCESS
========================================================= */

.process-section {
  padding: 145px 0;

  background: var(--green);

  color: var(--ivory);
}


.process-section .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}


.process-header {
  margin-bottom: 80px;
}


.process-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.19);
}


.process-step {
  min-height: 330px;

  padding: 35px 34px 20px 0;

  border-right: 1px solid rgba(255, 255, 255, 0.19);
}


.process-step + .process-step {
  padding-left: 34px;
}


.process-step:last-child {
  border-right: 0;
}


.process-step > span {
  display: block;

  margin-bottom: 75px;

  font-size: 0.64rem;
  font-weight: 700;

  letter-spacing: 0.15em;

  color: #c3a375;
}


.process-step h3 {
  margin-bottom: 18px;

  font-family: var(--serif);

  font-size: 2rem;
  font-weight: 400;
}


.process-step p {
  max-width: 310px;

  margin: 0;

  color: rgba(255, 255, 255, 0.63);
}


.process-action {
  margin-top: 60px;
}


/* =========================================================
   14. LOCAL
========================================================= */

.local-section {
  padding: 140px 0;

  background: var(--ivory);
}


.local-grid {
  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  gap: 90px;

  align-items: end;
}


.local-copy {
  max-width: 520px;

  padding-bottom: 7px;

  font-size: 1.05rem;

  color: rgba(36, 36, 36, 0.65);
}


/* =========================================================
   15. REVIEWS
========================================================= */

.reviews-section {
  padding: 145px 0;

  background: var(--green-deep);

  color: var(--ivory);
}


.reviews-heading {
  display: flex;

  justify-content: space-between;
  align-items: flex-end;

  gap: 60px;

  margin-bottom: 90px;
}


.review-stars {
  margin-bottom: 12px;

  color: #c3a375;

  font-size: 1.15rem;

  letter-spacing: 0.13em;
}


.review-proof {
  margin: 0;

  font-size: 0.67rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}


.reviews-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.16);
}


.review-card {
  margin: 0;

  min-height: 370px;

  display: flex;
  flex-direction: column;

  justify-content: space-between;

  padding: 45px 50px 38px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}


.review-card:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}


.review-card:nth-child(even) {
  padding-left: 50px;
}


.review-card p {
  max-width: 580px;

  margin: 0;

  font-family: var(--serif);

  font-size: clamp(1.8rem, 2.8vw, 2.8rem);

  line-height: 1.17;
}


.review-card footer {
  margin-top: 45px;

  font-size: 0.74rem;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.review-card footer span {
  display: block;

  margin-top: 7px;

  font-weight: 400;

  color: rgba(255, 255, 255, 0.48);
}


/* =========================================================
   16. ESTIMATE CTA
========================================================= */

.estimate-section {
  padding: 160px 0;

  background: var(--paper);
}


.estimate-inner {
  max-width: 1000px;

  text-align: center;
}


.estimate-inner h2 {
  margin-bottom: 30px;

  font-size: clamp(4.1rem, 8vw, 8.3rem);
}


.estimate-inner > p:not(.eyebrow) {
  max-width: 580px;

  margin: 0 auto 38px;

  color: rgba(36, 36, 36, 0.62);
}


/* =========================================================
   17. CLOSING
========================================================= */

.closing-section {
  padding: 110px 0;

  background: var(--ivory);
}


.closing-inner {
  text-align: center;
}


.closing-logo {
  width: 105px;

  margin: 0 auto 22px;
}


.closing-inner p {
  margin-bottom: 15px;

  font-size: 0.66rem;
  font-weight: 700;

  letter-spacing: 0.2em;
}


.closing-inner h2 {
  font-size: clamp(3.5rem, 7vw, 7rem);
}


/* =========================================================
   18. FOOTER
========================================================= */

.footer {
  padding: 80px 0 30px;

  background: var(--charcoal);
  color: var(--ivory);
}


.footer-grid {
  display: grid;

  grid-template-columns: 1.4fr 0.8fr 0.6fr;

  gap: 60px;

  padding-bottom: 70px;
}


.footer-brand {
  display: flex;
  align-items: center;

  gap: 13px;
}


.footer-brand img {
  width: 52px;
  height: 52px;

  object-fit: contain;
}


.footer-brand div {
  display: flex;
  flex-direction: column;
}


.footer-brand strong {
  font-family: var(--serif);

  font-size: 1.4rem;
}


.footer-brand span {
  margin-top: 4px;

  font-size: 0.6rem;
  font-weight: 700;

  letter-spacing: 0.16em;
}


.footer-location {
  margin: 22px 0 0;

  font-size: 0.78rem;

  color: rgba(255, 255, 255, 0.5);
}


.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;

  gap: 13px;

  font-size: 0.8rem;
}


.footer-links a,
.footer-social a {
  width: fit-content;

  color: rgba(255, 255, 255, 0.72);
}


.footer-links a:hover,
.footer-social a:hover {
  color: white;
}


.footer-bottom {
  display: flex;

  justify-content: space-between;

  gap: 30px;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.13);

  font-size: 0.66rem;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.39);
}


/* =========================================================
   19. MOBILE STICKY CTA
========================================================= */

.mobile-sticky-cta {
  display: none;
}


/* =========================================================
   20. REVEAL ANIMATION
========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(24px);

  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}


.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}


/* =========================================================
   21. RESPONSIVE — 1100PX
========================================================= */

@media (max-width: 1100px) {

  .hero-inner {
    gap: 50px;
  }


  .hero-image-wrap {
    min-height: 560px;
  }


  .services-grid {
    grid-template-columns: 1fr;
  }


  .service-card {
    min-height: 420px;
  }


  .service-card + .service-card {
    border-left: 1px solid var(--border);
    border-top: 0;
  }


  .service-card-dark {
    border-color: var(--green);
  }


  .concept-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }


  .concept-copy {
    position: static;

    max-width: 720px;
  }

}


/* =========================================================
   22. RESPONSIVE — 900PX
========================================================= */

@media (max-width: 900px) {

  :root {
    --header-height: 76px;
  }


  .container {
    width: min(calc(100% - 40px), var(--container));
  }


  .desktop-nav {
    display: none;
  }


  .menu-button {
    display: block;
  }


  .mobile-menu {
    display: block;

    pointer-events: none;
  }


  .mobile-menu.active {
    pointer-events: auto;
  }


  .header-logo {
    width: 44px;
    height: 44px;
  }


  .header-brand-name {
    font-size: 1.08rem;
  }


  .header-brand-sub {
    font-size: 0.54rem;
  }


  .hero {
    min-height: auto;

    padding: 55px 0 80px;
  }


  .hero-inner {
    grid-template-columns: 1fr;

    gap: 52px;
  }


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


  .hero-image-wrap {
    height: 75vw;

    min-height: 520px;
    max-height: 720px;
  }


  .statement-inner {
    grid-template-columns: 1fr;

    gap: 20px;
  }


  .section-heading {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .section-intro {
    margin-left: 0;
  }


  .outdoor-grid {
    grid-template-columns: 1fr;

    grid-template-rows: auto;

    gap: 32px;
  }


  .outdoor-image-large {
    grid-row: auto;

    height: 70vw;

    min-height: 500px;
  }


  .outdoor-copy {
    padding: 30px 0;
  }


  .outdoor-image-small {
    height: 50vw;

    min-height: 330px;
  }


  .work-grid {
    grid-template-columns: 1fr;

    gap: 65px;
  }


  .project-wide {
    grid-column: auto;
  }


  .project-large .project-image,
  .project-wide .project-image,
  .project:not(.project-large):not(.project-wide) .project-image {
    height: 70vw;

    max-height: 700px;
    min-height: 480px;
  }


  .detail-section {
    grid-template-columns: 1fr;
  }


  .detail-image {
    height: 70vw;

    min-height: 480px;
  }


  .detail-copy {
    min-height: 500px;
  }


  .process-grid {
    grid-template-columns: 1fr;
  }


  .process-step {
    min-height: auto;

    padding: 35px 0 40px;

    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  }


  .process-step + .process-step {
    padding-left: 0;
  }


  .process-step > span {
    margin-bottom: 35px;
  }


  .local-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }


  .reviews-heading {
    align-items: flex-start;

    flex-direction: column;
  }


  .reviews-grid {
    grid-template-columns: 1fr;
  }


  .review-card,
  .review-card:nth-child(even) {
    min-height: 320px;

    padding: 40px 0;
  }


  .review-card:nth-child(odd) {
    border-right: 0;
  }


  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }


  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

}


/* =========================================================
   23. RESPONSIVE — 600PX
========================================================= */

@media (max-width: 600px) {

  .container {
    width: calc(100% - 34px);
  }


  h1 {
    font-size: clamp(4.1rem, 21vw, 6.3rem);
  }


  h2 {
    font-size: clamp(2.9rem, 14vw, 4.8rem);
  }


  .site-header {
    height: 72px;
  }


  :root {
    --header-height: 72px;
  }


  .header-logo {
    width: 40px;
    height: 40px;
  }


  .header-brand-copy {
    display: none;
  }


  .hero {
    padding-top: 44px;
  }


  .hero .eyebrow {
    margin-bottom: 20px;
  }


  .hero-brand-lockup {
    gap: 13px;

    margin-bottom: 23px;
  }


  .hero-logo {
    width: 64px;
    height: 64px;
  }


  .hero-brand-text span {
    font-size: 1.55rem;
  }


  .hero-brand-text strong {
    font-size: 0.57rem;
  }


  .hero-services {
    display: flex;
    flex-direction: column;

    gap: 4px;

    font-size: 0.74rem;
  }


  .hero-services span {
    display: none;
  }


  .hero-description {
    font-size: 0.98rem;
  }


  .hero-actions {
    align-items: flex-start;
    flex-direction: column;

    gap: 22px;
  }


  .hero-review {
    align-items: flex-start;
    flex-direction: column;

    gap: 5px;

    font-size: 0.62rem;
  }


  .hero-image-wrap {
    min-height: 430px;

    height: 128vw;
    max-height: 590px;
  }


  .hero-image-tag {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }


  .brand-statement,
  .services-section,
  .outdoor-feature,
  .work-section,
  .concept-section,
  .process-section,
  .local-section,
  .reviews-section {
    padding: 95px 0;
  }


  .statement-inner {
    gap: 7px;
  }


  .section-number {
    padding-top: 0;
  }


  .section-heading,
  .work-heading,
  .process-header,
  .reviews-heading {
    margin-bottom: 55px;
  }


  .service-card {
    min-height: 430px;

    padding: 31px 27px;
  }


  .outdoor-image-large {
    min-height: 430px;

    height: 120vw;
  }


  .outdoor-image-small {
    min-height: 260px;

    height: 75vw;
  }


  .project-large .project-image,
  .project-wide .project-image,
  .project:not(.project-large):not(.project-wide) .project-image {
    min-height: 390px;

    height: 116vw;
  }


  .concept-images {
    grid-template-columns: 1fr;

    gap: 35px;
  }


  .concept-card img {
    aspect-ratio: 0.9;
  }


  .detail-image {
    min-height: 400px;

    height: 110vw;
  }


  .detail-copy {
    min-height: 480px;

    padding: 60px 24px;
  }


  .process-step h3 {
    font-size: 1.8rem;
  }


  .review-card,
  .review-card:nth-child(even) {
    min-height: 300px;

    padding: 38px 0;
  }


  .estimate-section {
    padding: 115px 0 130px;
  }


  .estimate-inner h2 {
    font-size: clamp(4rem, 20vw, 6rem);
  }


  .closing-section {
    padding: 85px 0;
  }


  .closing-logo {
    width: 88px;
  }


  .footer {
    padding-bottom: 92px;
  }


  .footer-grid {
    grid-template-columns: 1fr;

    gap: 42px;
  }


  .footer-grid > div:first-child {
    grid-column: auto;
  }


  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;

    gap: 10px;
  }


  .mobile-sticky-cta {
    position: fixed;

    left: 12px;
    right: 12px;
    bottom: 12px;

    z-index: 80;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 55px;

    background: var(--green);

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);

    color: white;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }


  .mobile-sticky-cta.hidden {
    opacity: 0;

    pointer-events: none;

    transform: translateY(20px);
  }

}


/* =========================================================
   24. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;

    scroll-behavior: auto !important;
  }


  .reveal {
    opacity: 1;

    transform: none;
  }

}
