:root {
  --green: #12a85b;
  --green-dark: #06713f;
  --green-light: #6ee7a6;
  --green-soft: #eefaf3;
  --gray-950: #252d2a;
  --gray-800: #343b40;
  --gray-600: #667078;
  --gray-200: #dfe5e1;
  --gray-100: #f8fcf9;
  --gray-azure: #789aa3;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(31, 36, 40, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-950);
  background: #fbfffc;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 12px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  animation: navDrop 620ms ease both;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 80px;
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  position: relative;
  padding: 13px 17px 18px;
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 200;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: background 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: var(--gray-azure);
}

.nav-contact-bar {
  position: absolute;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: -34px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 34px;
  padding: 8px 18px;
  color: var(--white);
  background: var(--gray-950);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 38px rgba(31, 36, 40, 0.18);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  animation: contactBarIn 760ms ease 220ms both;
}

.nav-contact-bar a {
  color: rgba(255, 255, 255, 0.9);
}

.nav-contact-bar a:hover {
  color: var(--green-light);
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-button {
  display: none;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--gray-950);
}

.home-hero {
  min-height: min(900px, 100svh);
  padding: 170px 0 66px;
  background: var(--gray-950);
  display: grid;
  align-items: end;
}

.hero-bg-slides,
.hero-bg-slide {
  position: absolute;
  inset: 0;
}

.hero-bg-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08) translateX(20px);
  transition: opacity 1000ms ease, transform 2400ms ease;
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1) translateX(0);
  animation: heroBgDrift 7s ease-in-out infinite alternate;
}

.hero-bg-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(37, 45, 42, 0.72), rgba(37, 45, 42, 0.38) 46%, rgba(37, 45, 42, 0.08)),
    linear-gradient(180deg, rgba(37, 45, 42, 0.1), transparent 30%, rgba(37, 45, 42, 0.18));
}

.bg-worker5 {
  background-image: url("assets/img/worker5.jpeg");
}

.bg-worker2 {
  background-image: url("assets/img/worker2.jpeg");
}

.bg-carrier2 {
  background-image: url("assets/img/carrier2.jpeg");
}

.bg-carrier {
  background-image: url("assets/img/carrier.jpeg");
}

.home-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  right: -16vw;
  bottom: -22vw;
  width: 44vw;
  height: 44vw;
  min-width: 420px;
  min-height: 420px;
  background: rgba(18, 168, 91, 0.38);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}


.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(18, 168, 91, 0.14), transparent 46%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 620px);
  justify-content: end;
  gap: 28px;
  align-items: end;
}

.hero-copy {
  position: relative;
  max-width: 620px;
  text-align: right;
  justify-self: end;
  padding: 98px 20px 60px;
  background: linear-gradient(160deg, rgba(9, 22, 16, 0.74), rgba(9, 22, 16, 0));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  clip-path: polygon(26px 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%, 0 26px);
}

.hero-copy h1,
.page-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(3rem, 7.2vw, 6.05rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  font-weight: 100;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.28);
}

.hero-copy p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 0.25rem);
  overflow-wrap: anywhere;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.26);
}

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

.hero .eyebrow,
.page-hero .eyebrow,
.cta-panel .eyebrow {
  color: #bff4d6;
}

.hero-kicker {
  color: #d6fbe5;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  font-weight: 800;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(31, 36, 40, 0.16);
}

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

.button.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.62);
}

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

.hero-service-focus {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 16px;
  row-gap: 2px;
  max-width: 680px;
  margin-top: 28px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-right: 4px solid var(--green-light);
  box-shadow: none;
  backdrop-filter: none;
}

.hero-service-focus::before,
.hero-service-focus::after {
  display: none;
}

.hero-service-focus span {
  display: block;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  margin: 2px 0 0;
  color: #d6fbe5;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-service-focus strong {
  display: block;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: var(--white);
  font-size: clamp(4.45rem, 2.6vw, 8rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-service-focus small {
  display: block;
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

@keyframes heroBgDrift {
  0%,
  100% {
    background-position: center;
  }

  50% {
    background-position: center 44%;
  }
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contactBarIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js-ready .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .hero-copy.reveal,
.js-ready .page-hero-content.reveal {
  transform: translateY(18px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .hero-bg-slide.active {
    animation: none;
  }

  .hero-bg-slide {
    transition: none;
  }

  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

.section {
  position: relative;
  padding: 96px 0;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section h3 {
  margin: 0 0 10px;
  color: var(--gray-950);
  font-size: 1.18rem;
  line-height: 1.2;
}

.section p {
  color: var(--gray-600);
}

.angle-white::before,
.services-preview::before,
.gallery-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 72px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.intro-section {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
}

.intro-content {
  display: grid;
  gap: 28px;
}

.intro-image {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 8%, 100% 100%, 16% 100%, 0 82%);
  box-shadow: var(--shadow);
}

.intro-image::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  border-top: 90px solid var(--green);
  border-left: 130px solid transparent;
}

.intro-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 130, 66, 0.18), transparent 52%);
}

.intro-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 420ms ease;
}

.intro-image:hover img,
.angled-image:hover img,
.director-image:hover img,
.profile-media:hover img {
  transform: scale(1.04);
}

.angled-image img,
.director-image img,
.profile-media img {
  transition: transform 420ms ease;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.prose p {
  margin-top: 0;
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.services-preview,
.trade-section,
.organization-section,
.gallery-section,
.contact-methods {
  background: var(--gray-100);
}

.service-grid,
.process-grid,
.principles-grid,
.value-grid,
.profile-grid,
.contact-grid,
.client-logos,
.video-grid {
  display: grid;
  gap: 22px;
}

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

.featured-services {
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.9fr));
  align-items: stretch;
}

.featured-services .service-card:first-child {
  grid-row: span 2;
}

.featured-services .service-card:first-child .service-media {
  height: 330px;
}

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

.service-card,
.process-grid article,
.principle-card,
.value-grid article,
.profile-block,
.contact-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(31, 36, 40, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.process-grid article:hover,
.profile-block:hover,
.contact-card:hover,
.project-card:hover,
.mv-panel:hover,
.value-pill-grid span:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 58px rgba(31, 36, 40, 0.12);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card::after,
.profile-block::after,
.contact-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border-top: 58px solid var(--green);
  border-left: 82px solid transparent;
}

.service-media {
  position: relative;
  z-index: 2;
  display: block;
  height: 190px;
  margin: -28px -28px 24px;
  overflow: hidden;
  background: var(--gray-200);
  clip-path: polygon(0 0, 100% 0, 100% 86%, 84% 100%, 0 100%);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 130, 66, 0.18), transparent 55%);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

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

.service-card span,
.process-grid span,
.contact-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 900;
}

.service-card h3,
.service-card p,
.service-card span,
.service-link {
  position: relative;
  z-index: 2;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin-top: auto;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.service-link:hover {
  background: var(--green-dark);
}

.process-media {
  position: relative;
  z-index: 2;
  height: 150px;
  margin: -28px -28px 22px;
  overflow: hidden;
  background: var(--gray-200);
  clip-path: polygon(0 0, 100% 0, 100% 84%, 82% 100%, 0 100%);
}

.process-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 130, 66, 0.2), transparent 54%);
}

.process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-section,
.pump-section,
.featured-work,
.inquiry-section {
  background: var(--white);
}

.angled-image {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 9%, 100% 100%, 13% 100%, 0 82%);
  box-shadow: var(--shadow);
}

.angled-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 130, 66, 0.18), transparent 50%);
}

.angled-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list p {
  position: relative;
  margin: 0;
  padding: 16px 18px 16px 46px;
  background: var(--gray-100);
  color: var(--gray-800);
  border-left: 4px solid var(--green);
}

.check-list p::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 21px;
  width: 0;
  height: 0;
  border-left: 9px solid var(--green);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.clients-section {
  background: var(--white);
}

.client-logos {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
}

.client-logos img {
  width: 100%;
  height: 118px;
  padding: 18px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  filter: grayscale(18%);
}

.cta-section,
.standards-section {
  background: var(--white);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 50px;
  color: var(--white);
  background-image:
    linear-gradient(135deg, rgba(6, 113, 63, 0.78), rgba(18, 168, 91, 0.48)),
    var(--cta-image, url("assets/img/workers.jpeg"));
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 84% 100%, 0 100%);
}

.cta-home {
  --cta-image: url("assets/img/sidePave.jpeg");
}

.cta-services {
  --cta-image: url("assets/img/PaveWork.jpeg");
}

.cta-contact {
  --cta-image: url("assets/img/worker5.jpeg");
}

.cta-panel > * {
  position: relative;
  z-index: 2;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(37, 45, 42, 0.2), transparent 58%),
    rgba(110, 231, 166, 0.18);
}

.cta-panel.compact {
  margin-top: 0;
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  border-top: 130px solid rgba(238, 250, 243, 0.28);
  border-left: 190px solid transparent;
}

.cta-panel h2 {
  max-width: 820px;
  color: var(--white);
}

.page-hero {
  min-height: 470px;
  padding: 150px 0 92px;
  background-size: cover;
  background-position: center;
}

.about-hero {
  background-image: linear-gradient(90deg, rgba(37, 45, 42, 0.66), rgba(37, 45, 42, 0.16)), url("assets/img/workers.jpeg");
}

.services-hero {
  background-image: linear-gradient(90deg, rgba(37, 45, 42, 0.66), rgba(37, 45, 42, 0.18)), url("assets/img/worker4.jpeg");
}

.work-hero {
  background-image: linear-gradient(90deg, rgba(37, 45, 42, 0.68), rgba(37, 45, 42, 0.16)), url("assets/img/sidePave.jpeg");
}

.contact-hero {
  background-image: linear-gradient(90deg, rgba(37, 45, 42, 0.68), rgba(37, 45, 42, 0.18)), url("assets/img/worker5.jpeg");
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.director-section {
  background: var(--white);
}

.director-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  align-items: center;
  gap: 64px;
}

.director-grid p {
  font-size: 1.08rem;
}

.director-image {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
  clip-path: polygon(0 0, 100% 7%, 100% 100%, 18% 100%, 0 82%);
}

.director-image::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: 110px solid var(--green);
  border-right: 150px solid transparent;
  z-index: 2;
}

.director-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
}

.fact-strip,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.fact-strip span,
.tag-list span {
  padding: 10px 14px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.9rem;
  font-weight: 800;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.values-section {
  background: var(--gray-100);
}

.values-layout {
  display: grid;
  gap: 34px;
}

.values-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  gap: 42px;
  align-items: end;
}
 h2{
    font-weight:200;
}
.values-intro h2,
.values-intro p {
  margin: 0;
  
}

.values-intro p:not(.eyebrow) {
  color: var(--gray-600);
  font-size: 1.06rem;
}

.mv-composition {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.mv-feature,
.mv-panel {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(31, 36, 40, 0.07);
}

.mv-feature {
  min-height: 340px;
  padding: 38px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 113, 63, 0.94), rgba(18, 168, 91, 0.78)),
    url("assets/img/worker2.jpeg");
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 84%, 84% 100%, 0 100%);
}

.mv-feature::after,
.mv-panel::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border-top: 96px solid rgba(110, 231, 166, 0.34);
  border-left: 136px solid transparent;
}

.mv-feature i,
.mv-panel i {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  color: var(--green-dark);
  background: var(--white);
  font-size: 1.35rem;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.mv-feature span,
.mv-panel span {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mv-feature h3,
.mv-feature p,
.mv-panel p {
  position: relative;
  z-index: 2;
}

.mv-feature h3 {
  max-width: 650px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.14;
}

.mv-feature p {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.mv-side {
  display: grid;
  gap: 22px;
}

.mv-panel {
  padding: 30px;
}

.mv-panel i {
  color: var(--white);
  background: var(--green);
}

.mv-panel span {
  color: var(--green-dark);
}

.mv-panel p {
  margin: 0;
  color: var(--gray-600);
  font-size: 1.02rem;
}

.value-pill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.value-pill-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 14px 18px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-weight: 900;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 18px) 100%, 0 100%, 0 10px);
}

.value-pill-grid i {
  color: var(--green);
}

.about-image-story {
  background: linear-gradient(135deg, #2e3b36, #0b7d49);
  color: var(--white);
}

.about-image-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(110, 231, 166, 0.2), transparent 42%),
    radial-gradient(circle at 92% 14%, rgba(110, 231, 166, 0.22), transparent 28%);
}

.about-story-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: center;
}

.about-story-copy h2 {
  color: var(--white);
}
.about-story-copy .eyebrow {
  color: var(--green-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-story-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.story-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.story-points span {
  padding: 10px 14px;
  color: var(--white);
  background: rgba(18, 168, 91, 0.76);
  font-weight: 800;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.about-image-collage {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  grid-template-rows: 220px 220px;
  gap: 16px;
}

.about-image-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.about-image-collage img:first-child {
  grid-row: 1 / -1;
  clip-path: polygon(0 0, 100% 7%, 100% 100%, 17% 100%, 0 82%);
}

.about-image-collage img:nth-child(2) {
  clip-path: polygon(0 0, 100% 0, 100% 82%, 82% 100%, 0 100%);
}

.about-image-collage img:nth-child(3) {
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 92%, 0 0);
}

.principles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.principle-card,
.value-grid article {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.principle-card:hover,
.value-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(31, 36, 40, 0.12);
}

.principle-card::after,
.value-grid article::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border-top: 64px solid var(--green);
  border-left: 94px solid transparent;
}

.principle-card i,
.value-grid article i {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-size: 1.35rem;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.principle-card h3,
.value-grid article h3,
.principle-card p,
.value-grid article p {
  position: relative;
  z-index: 2;
}

.value-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.organization-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: start;
}

.organization-intro {
  position: sticky;
  top: 110px;
}

.organization-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
}

.organization-intro p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--gray-600);
  font-size: 1.05rem;
}

.organization-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.organization-cards .profile-block:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.organization-cards .profile-block:first-child .profile-media {
  height: 260px;
  margin: -28px 0 -28px -28px;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.organization-cards .profile-block h2 {
  font-size: clamp(1.25rem, 1.7vw, 1.75rem);
  line-height: 1.1;
}

.profile-media {
  position: relative;
  z-index: 2;
  height: 170px;
  margin: -28px -28px 24px;
  overflow: hidden;
  background: var(--gray-200);
  clip-path: polygon(0 0, 100% 0, 100% 84%, 82% 100%, 0 100%);
}

.profile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 130, 66, 0.2), transparent 56%);
}

.profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-block h2,
.profile-block p {
  position: relative;
  z-index: 2;
}

.registration-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: start;
}

.details-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.details-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 16px;
  background: var(--gray-100);
  border-left: 4px solid var(--green);
}

.details-list dt {
  color: var(--gray-600);
  font-weight: 800;
}

.details-list dd {
  margin: 0;
  color: var(--gray-950);
  font-weight: 700;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-section {
  background: var(--gray-100);
}

.project-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 230px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(31, 36, 40, 0.07);
}

.project-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border-top: 74px solid var(--green);
  border-left: 108px solid transparent;
}

.project-card.featured {
  grid-column: 1 / -1;
  display: block;
  min-height: 520px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.project-card.featured img {
  position: absolute;
  inset: 0;
  clip-path: none;
}

.project-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(31, 36, 40, 0.05), rgba(31, 36, 40, 0.72));
}

.project-card div {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 28px;
}

.project-card.featured div {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: min(560px, calc(100% - 68px));
  background: rgba(255, 255, 255, 0.94);
  clip-path: polygon(0 0, 100% 0, 100% 82%, 86% 100%, 0 100%);
}

.project-status {
  width: fit-content;
  padding: 8px 12px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.project-status.ongoing {
  color: var(--white);
  background: var(--green);
}

.project-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
}

.project-card p {
  margin: 0;
  color: var(--gray-600);
}

.project-card small {
  color: var(--gray-800);
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(31, 36, 40, 0.07);
}

table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--gray-200);
}

th {
  color: var(--white);
  background: var(--green-dark);
}

td {
  color: var(--gray-800);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 28px;
}

.gallery-heading h2,
.gallery-heading p {
  margin: 0;
}

.gallery-heading > p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

.gallery-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.72fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
  margin-bottom: 16px;
}

.gallery-feature figure,
.updated-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 100%;
  background: var(--gray-200);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(31, 36, 40, 0.08);
}

.gallery-feature figure:first-child {
  grid-row: 1 / -1;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 84% 100%, 0 100%);
}

.gallery-feature figure:not(:first-child),
.updated-gallery figure {
  clip-path: polygon(0 0, 100% 0, 100% 86%, 84% 100%, 0 100%);
}

.gallery-feature img,
.updated-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-feature figure:hover img,
.updated-gallery figure:hover img {
  transform: scale(1.04);
}

.gallery-feature figcaption,
.updated-gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 42px 18px 18px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(31, 36, 40, 0.82));
  font-weight: 900;
}

.updated-gallery {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.updated-gallery figure {
  aspect-ratio: 1 / 1;
}

.updated-gallery figure:nth-child(5n + 1),
.updated-gallery figure:nth-child(5n + 4) {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--gray-200);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 84% 100%, 0 100%);
}

.gallery-grid img:nth-child(8n + 1),
.gallery-grid img:nth-child(8n + 6) {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.updated-gallery img {
  height: 100%;
  aspect-ratio: auto;
  clip-path: none;
}

.video-section {
  background: var(--white);
}

.video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-grid video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--gray-950);
  border-radius: 8px;
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card h2 {
  margin: 0;
  font-size: clamp(1.2rem, 1.55vw, 1.75rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.form-map-section {
  background: var(--white);
}

.form-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.contact-form-panel,
.map-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
}

.contact-form-panel::after,
.map-panel::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border-top: 76px solid var(--green);
  border-left: 110px solid transparent;
}

.contact-form-panel h2,
.map-address h2 {
  margin: 0 0 24px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.contact-form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--gray-800);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--gray-950);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(7, 130, 66, 0.2);
  border-color: var(--green);
}

.contact-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.map-panel {
  display: grid;
  gap: 22px;
}

.map-frame {
  position: relative;
  z-index: 2;
  min-height: 420px;
  overflow: hidden;
  background: var(--gray-200);
  clip-path: polygon(0 0, 100% 8%, 100% 100%, 16% 100%, 0 84%);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.map-address {
  position: relative;
  z-index: 2;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--green), var(--green-light));
  clip-path: polygon(0 0, 100% 0, 100% 82%, 86% 100%, 0 100%);
}

.map-address .eyebrow,
.map-address p {
  color: rgba(255, 255, 255, 0.86);
}

.map-address p {
  margin: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 28px;
  color: var(--white);
  background: linear-gradient(135deg, #2e3835, #0b7545);
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -70px;
  top: 0;
  width: 320px;
  height: 320px;
  background: rgba(110, 231, 166, 0.3);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.9fr 1.1fr;
  gap: 38px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 20px;
}

.site-footer h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a,
.footer-bottom span {
  display: block;
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.78);
}

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

.footer-credit a {
  display: inline;
  color: var(--green-light);
  font-weight: 900;
}

.footer-credit a:hover {
  color: var(--white);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 14px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: none;
}

.footer-social-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

@media (max-width: 960px) {
  .site-header {
    flex-wrap: wrap;
    align-items: flex-start;
    min-height: 78px;
    padding-right: 82px;
  }

  .brand span {
    font-size: 0.9rem;
  }

  .nav-button {
    position: absolute;
    right: 20px;
    top: 18px;
    z-index: 24;
    display: grid;
    place-items: center;
    width: 46px;
    height: 42px;
    background: var(--green);
    clip-path: polygon(9px 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
    cursor: pointer;
  }

  .nav-button span,
  .nav-button span::before,
  .nav-button span::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
  }

  .nav-button span {
    position: relative;
  }

  .nav-button span::before,
  .nav-button span::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-button span::before {
    top: -7px;
  }

  .nav-button span::after {
    top: 7px;
  }

  .nav-toggle:checked + .nav-button span {
    background: transparent;
  }

  .nav-toggle:checked + .nav-button span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle:checked + .nav-button span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .main-nav {
    position: static;
    order: 3;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 12px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(31, 36, 40, 0.12);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), 84% 100%, 0 100%);
  }

  .nav-contact-bar {
    position: static;
    order: 4;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 4px;
    padding: 12px 18px 18px;
    text-align: center;
    box-shadow: none;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), 86% 100%, 0 100%);
  }

  .nav-toggle:checked ~ .main-nav {
    display: flex;
  }

  .nav-toggle:checked ~ .nav-contact-bar {
    display: flex;
  }

  .main-nav a {
    text-align: center;
  }

  .hero-grid,
  .split,
  .intro-grid,
  .about-story-grid,
  .values-intro,
  .mv-composition,
  .organization-layout,
  .director-grid,
  .registration-grid,
  .form-map-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-service-focus {
    max-width: 620px;
  }

  .organization-intro {
    position: static;
  }

  .organization-cards .profile-block:first-child {
    grid-template-columns: 1fr;
  }

  .organization-cards .profile-block:first-child .profile-media {
    height: 240px;
    margin: -28px -28px 24px;
    clip-path: polygon(0 0, 100% 0, 100% 84%, 82% 100%, 0 100%);
  }

  .home-hero {
    min-height: auto;
    padding: 136px 0 72px;
  }

  .service-grid,
  .featured-services,
  .service-grid.wide,
  .principles-grid,
  .value-pill-grid,
  .profile-grid,
  .process-grid,
  .project-showcase,
  .contact-grid,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-services .service-card:first-child {
    grid-row: auto;
  }

  .featured-services .service-card:first-child .service-media {
    height: 220px;
  }

  .about-image-collage {
    grid-template-rows: 190px 190px;
  }

  .project-card,
  .project-card.featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .project-card.featured {
    min-height: 520px;
  }

  .project-card img {
    height: 250px;
    clip-path: polygon(0 0, 100% 0, 100% 86%, 84% 100%, 0 100%);
  }

  .project-card.featured img {
    height: 100%;
  }

  .client-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-heading,
  .gallery-feature {
    grid-template-columns: 1fr;
  }

  .gallery-feature {
    grid-template-rows: none;
  }

  .gallery-feature figure,
  .gallery-feature figure:first-child {
    grid-row: auto;
    min-height: 260px;
  }

  .updated-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .updated-gallery figure:nth-child(5n + 1),
  .updated-gallery figure:nth-child(5n + 4) {
    grid-column: span 1;
    aspect-ratio: 1 / 1;
  }

  .gallery-grid img:nth-child(8n + 1),
  .gallery-grid img:nth-child(8n + 6) {
    grid-column: span 1;
    aspect-ratio: 1 / 1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    max-width: 148px;
    white-space: normal;
    line-height: 1.1;
  }

  .section {
    padding: 68px 0;
  }

  .page-hero {
    min-height: 400px;
    padding: 124px 0 70px;
  }

  .hero-top-triangle {
    width: 84vw;
    height: 170px;
  }

  .hero-grid {
    gap: 28px;
  }

  .home-hero {
    min-height: 720px;
    padding-bottom: 38px;
  }

  .hero-copy {
    text-align: right;
    padding: 28px 26px 26px;
    clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  }

  .hero-service-focus {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 4px;
    margin-top: 22px;
    padding: 12px 16px;
  }
  
  .hero-service-focus span,
  .hero-service-focus strong,
  .hero-service-focus small {
    grid-column: 1;
    grid-row: auto;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 9.6vw, 3rem);
  }

  .service-grid,
  .featured-services,
  .service-grid.wide,
  .principles-grid,
  .value-grid,
  .value-pill-grid,
  .organization-cards,
  .profile-grid,
  .process-grid,
  .project-showcase,
  .contact-grid,
  .field-grid,
  .video-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-image-collage {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .about-image-collage img,
  .about-image-collage img:first-child,
  .about-image-collage img:nth-child(2),
  .about-image-collage img:nth-child(3) {
    grid-row: auto;
    height: 230px;
    clip-path: polygon(0 0, 100% 0, 100% 86%, 84% 100%, 0 100%);
  }

  .client-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-feature figure,
  .gallery-feature figure:first-child {
    min-height: 230px;
  }

  .updated-gallery {
    grid-template-columns: 1fr;
  }

  .updated-gallery figure,
  .updated-gallery figure:nth-child(5n + 1),
  .updated-gallery figure:nth-child(5n + 4) {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .details-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .cta-panel {
    padding: 34px 24px 42px;
  }

  .angled-image {
    min-height: 320px;
  }

  .intro-image {
    min-height: 320px;
  }

  .director-image img {
    height: 460px;
  }

  .footer-bottom {
    display: grid;
  }

  .contact-form-panel,
  .map-panel {
    padding: 26px 18px;
  }

  .contact-form .button {
    width: 100%;
  }

  .map-frame {
    min-height: 330px;
  }
}
