:root {
  --agf-forest: #073d2d;
  --agf-forest-deep: #052c21;
  --agf-natural: #3e7134;
  --agf-accent: #74c900;
  --agf-ivory: #f5f3ea;
  --agf-white: #fff;
  --agf-ink: #102d23;
  --agf-muted: #617069;
  --agf-line: rgba(16, 45, 35, .14);
  --agf-radius-sm: 12px;
  --agf-radius: 22px;
  --agf-radius-lg: 34px;
  --agf-shadow: 0 24px 70px rgba(5, 44, 33, .14);
  --agf-heading: "Montserrat", Arial, sans-serif;
  --agf-body: "Source Sans 3", Arial, sans-serif;
}

html {
  overflow-x: clip;
}

.agf-home-redesign {
  overflow-x: clip;
  background: var(--agf-ivory);
  color: var(--agf-ink);
  font-family: var(--agf-body);
}

.agf-home-redesign .container {
  width: min(1240px, calc(100% - clamp(40px, 8vw, 112px)));
}

.agf-home-redesign h1,
.agf-home-redesign h2,
.agf-home-redesign h3,
.agf-home-redesign strong {
  font-family: var(--agf-heading);
}

.agf-home-redesign h2 {
  margin: 0;
  color: var(--agf-ink);
  font-size: clamp(2.15rem, 4.2vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.agf-home-redesign p {
  text-wrap: pretty;
}

.agf-home-redesign .agf-header {
  background: linear-gradient(180deg, rgba(5, 33, 25, .8), rgba(5, 33, 25, 0)) !important;
  border-bottom-color: transparent;
  box-shadow: none !important;
  backdrop-filter: none;
  transition: background-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.agf-home-redesign .agf-header.is-scrolled,
.agf-home-redesign .agf-header:focus-within {
  background: rgba(5, 44, 33, .97) !important;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .2) !important;
  backdrop-filter: blur(14px);
}

.agf-home-redesign .agf-header-top {
  background: rgba(255, 255, 255, .04);
}

.agf-home-redesign .nav-shell {
  min-height: 78px;
}

.agf-home-redesign .brand img {
  width: min(260px, 23vw);
  height: auto;
}

.agf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #b9f178;
  font: 700 12px/1 var(--agf-body);
  letter-spacing: .17em;
  text-transform: uppercase;
}

.agf-eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.agf-eyebrow-dark {
  color: var(--agf-natural);
}

.agf-home-faq {
  background: var(--agf-ivory);
}

.agf-faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: start;
}

.agf-faq-heading {
  position: sticky;
  top: 120px;
}

.agf-faq-heading p {
  max-width: 48ch;
  margin: 22px 0 28px;
  color: var(--agf-muted);
}

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

.agf-faq-list details {
  overflow: hidden;
  border: 1px solid var(--agf-line);
  border-radius: 14px;
  background: var(--agf-white);
}

.agf-faq-list summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 21px;
  color: var(--agf-ink);
  font: 650 17px/1.35 var(--agf-heading);
  cursor: pointer;
}

.agf-faq-list summary::-webkit-details-marker { display: none; }

.agf-faq-list summary span {
  color: var(--agf-natural);
  font-size: 25px;
  transition: transform .2s ease;
}

.agf-faq-list details[open] summary span { transform: rotate(45deg); }

.agf-faq-list details > div {
  padding: 0 21px 20px;
}

.agf-faq-list details p {
  max-width: 68ch;
  margin: 0;
  color: var(--agf-muted);
  line-height: 1.65;
}

.agf-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 10px;
  font: 700 15px/1 var(--agf-body);
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.agf-button:hover,
.agf-button:focus-visible {
  transform: translateY(-2px);
}

.agf-button-accent {
  background: var(--agf-accent);
  color: #09251b !important;
}

.agf-button-accent:hover,
.agf-button-accent:focus-visible {
  background: #88df14;
}

.agf-button-glass {
  border-color: rgba(255, 255, 255, .68);
  background: rgba(5, 44, 33, .18);
  color: var(--agf-white) !important;
  backdrop-filter: blur(8px);
}

.agf-button-glass:hover,
.agf-button-glass:focus-visible {
  background: var(--agf-white);
  color: var(--agf-forest) !important;
}

.agf-button-forest {
  background: var(--agf-forest);
  color: var(--agf-white) !important;
}

.agf-button-forest:hover,
.agf-button-forest:focus-visible {
  background: var(--agf-natural);
}

.agf-button-outline {
  border-color: rgba(255, 255, 255, .7);
  color: var(--agf-white) !important;
}

.agf-cinematic-hero {
  position: relative;
  height: max(640px, 84svh);
  min-height: 640px;
  overflow: hidden;
  background: var(--agf-forest-deep);
  color: var(--agf-white);
}

.agf-hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .65s ease, visibility .65s step-end;
}

.agf-hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  transition: opacity .65s ease;
}

.agf-hero-photo,
.agf-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.agf-hero-photo {
  object-fit: cover;
  object-position: center;
  transform: scale(1.005);
  transition: transform 12s linear;
}

.agf-hero-slide.is-active .agf-hero-photo {
  transform: scale(1.025);
}

.agf-hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 32, 24, .8) 0%, rgba(4, 32, 24, .54) 44%, rgba(4, 32, 24, .12) 78%),
    linear-gradient(0deg, rgba(4, 32, 24, .5), transparent 42%);
}

.agf-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 122px;
  padding-bottom: 100px;
}

.agf-hero-content h1,
.agf-hero-heading {
  max-width: 820px;
  margin: 0 0 24px;
  color: var(--agf-white);
  font: 700 clamp(2.8rem, 5.3vw, 5.45rem)/1.01 var(--agf-heading);
  letter-spacing: -.045em;
  text-wrap: balance;
  text-shadow: 0 5px 35px rgba(0, 0, 0, .25);
}

.agf-hero-content > p:not(.agf-hero-heading) {
  max-width: 650px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}

.agf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.agf-hero-controls {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 30px;
  left: 0;
  display: grid;
  grid-template-columns:auto minmax(120px, 260px) 46px auto 46px;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.agf-hero-controls button,
.agf-review-controls button {
  min-width: 46px;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(5, 44, 33, .5);
  color: var(--agf-white);
  font: 700 14px var(--agf-body);
  cursor: pointer;
}

.agf-hero-controls [data-agf-hero-pause] {
  width: auto;
  border-radius: 30px;
  padding-inline: 16px;
}

.agf-hero-count {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 700 13px var(--agf-body);
}

.agf-hero-count i {
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, .5);
}

.agf-hero-progress {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, .3);
}

.agf-hero-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--agf-accent);
  transform: scaleX(0);
  transform-origin: left;
}

.agf-hero-progress span.is-running {
  animation: agfHeroProgress 6.5s linear forwards;
}

@keyframes agfHeroProgress {
  to { transform: scaleX(1); }
}

.agf-trust-bar {
  position: relative;
  z-index: 4;
  background: var(--agf-white);
  border-bottom: 1px solid var(--agf-line);
}

.agf-trust-items {
  min-height: 94px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.agf-trust-items a {
  min-width: 0;
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  border-right: 1px solid var(--agf-line);
  color: var(--agf-ink);
  text-align: left;
}

.agf-trust-items a:first-child {
  border-left: 1px solid var(--agf-line);
}

.agf-trust-items span {
  min-width: 38px;
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7f5da;
  color: var(--agf-forest);
  font: 800 12px var(--agf-heading);
}

.agf-trust-items strong {
  font-size: 13px;
  line-height: 1.3;
}

.agf-section {
  padding: clamp(82px, 10vw, 140px) 0;
}

.agf-section-heading {
  margin-bottom: clamp(40px, 6vw, 72px);
}

.agf-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .6fr);
  align-items: end;
  gap: clamp(36px, 8vw, 100px);
}

.agf-heading-row > p {
  max-width: 560px;
  margin: 0 0 5px;
  color: var(--agf-muted);
  font-size: 17px;
  line-height: 1.7;
}

.agf-heading-light h2,
.agf-heading-light > p {
  color: var(--agf-white);
}

.agf-heading-light > p {
  color: rgba(255, 255, 255, .72);
}

.agf-services {
  background: var(--agf-ivory);
}

.agf-priority-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.agf-priority-service-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--agf-line);
  border-radius: var(--agf-radius);
  background: var(--agf-white);
  box-shadow: 0 14px 38px rgba(5, 44, 33, .08);
}

.agf-priority-service-image {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #dce7d8;
}

.agf-priority-service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .25s ease;
}

.agf-priority-service-card:hover .agf-priority-service-image img,
.agf-priority-service-card:focus-within .agf-priority-service-image img {
  transform: scale(1.025);
}

.agf-priority-service-image > span {
  position: absolute;
  top: 15px;
  left: 15px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(5, 44, 33, .92);
  color: #fff;
  font: 700 12px var(--agf-heading);
}

.agf-priority-service-card > div { padding: 24px; }
.agf-priority-service-card h3 { margin: 0 0 11px; font-size: clamp(1.35rem, 2vw, 1.7rem); }
.agf-priority-service-card h3 a { color: var(--agf-forest); }
.agf-priority-service-card p { min-height: 5.1em; margin: 0 0 18px; color: var(--agf-muted); line-height: 1.7; }
.agf-card-link { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; color: var(--agf-forest); font-weight: 700; }

.agf-project-proof { background: var(--agf-white); }
.agf-project-proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.agf-project-proof-card { position: relative; min-height: 330px; overflow: hidden; border-radius: var(--agf-radius); background: var(--agf-forest); box-shadow: var(--agf-shadow); }
.agf-project-proof-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .25s ease; }
.agf-project-proof-card:hover img,.agf-project-proof-card:focus-visible img { transform: scale(1.025); }
.agf-project-proof-card > span { position: absolute; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr auto; padding: 65px 22px 20px; background: linear-gradient(0deg, rgba(4,35,26,.95), transparent); color: #fff; }
.agf-project-proof-card small { grid-column: 1; color: #b9f178; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.agf-project-proof-card strong { grid-column: 1; font: 600 1.45rem var(--agf-heading); }
.agf-project-proof-card i { grid-column: 2; grid-row: 1 / span 2; align-self: end; font-style: normal; font-size: 1.35rem; }

.agf-service-experience {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(350px, .65fr);
  overflow: hidden;
  border-radius: var(--agf-radius-lg);
  background: var(--agf-white);
  box-shadow: var(--agf-shadow);
}

.agf-service-preview {
  position: relative;
  min-width: 0;
  min-height: 700px;
  overflow: hidden;
  background: var(--agf-forest);
}

.agf-service-preview::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(0deg, rgba(4, 35, 26, .94), transparent);
  content: "";
}

.agf-service-preview > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: opacity .25s ease, transform .55s ease;
}

.agf-service-preview-copy {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5vw, 64px);
  bottom: clamp(28px, 5vw, 62px);
  left: clamp(24px, 5vw, 64px);
  color: var(--agf-white);
}

.agf-service-preview-copy > span {
  color: #b9f178;
  font: 700 13px var(--agf-heading);
}

.agf-service-preview-copy h3 {
  max-width: 650px;
  margin: 10px 0 15px;
  color: var(--agf-white);
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.agf-service-preview-copy p {
  max-width: 580px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
}

.agf-service-preview-copy a,
.agf-section-link a {
  color: inherit;
  font-weight: 700;
}

.agf-service-preview-copy a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.agf-service-list {
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.agf-service-list li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 87.5px;
  padding: 0 22px;
  border-bottom: 1px solid var(--agf-line);
  transition: background-color .2s ease;
}

.agf-service-list li:last-child {
  border-bottom: 0;
}

.agf-service-list li.is-active {
  background: #edf6e7;
}

.agf-service-list li > img {
  display: none;
}

.agf-service-list button {
  min-width: 0;
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  align-items: center;
  gap: 5px 11px;
  padding: 13px 0;
  border: 0;
  background: transparent;
  color: var(--agf-ink);
  text-align: left;
  cursor: pointer;
}

.agf-service-list button span {
  grid-row: 1 / span 2;
  color: var(--agf-natural);
  font: 700 12px var(--agf-heading);
}

.agf-service-list button strong {
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agf-service-list button small {
  overflow: hidden;
  color: var(--agf-muted);
  font-size: 12px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agf-service-list li > a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--agf-forest);
  font-size: 0;
}

.agf-service-list li > a span {
  font-size: 17px;
}

.agf-section-link {
  margin: 28px 0 0;
  text-align: right;
}

.agf-section-link a {
  color: var(--agf-forest);
}

.agf-transformation {
  background: var(--agf-white);
}

.agf-transform-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, .78fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.agf-transform-visual,
.agf-transform-copy {
  min-width: 0;
}

.agf-before-after {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--agf-radius-lg);
  background: #dce7d8;
  box-shadow: var(--agf-shadow);
}

.agf-before-after .ba-after,
.agf-before-after .ba-before {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.agf-before-after .ba-before-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
}

.agf-before-after .ba-before {
  width: 100%;
  max-width: none;
}

.agf-before-after input[type="range"] {
  touch-action: pan-y;
}

.agf-before-after:focus-within {
  outline: 3px solid var(--agf-accent);
  outline-offset: 4px;
}

.agf-before-after .ba-label {
  top: 20px;
  bottom: auto;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(5, 44, 33, .86);
  font: 700 12px var(--agf-body);
}

.agf-before-after .ba-label-before {
  left: 20px;
}

.agf-before-after .ba-label-after {
  right: 20px;
}

.agf-transform-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.agf-location {
  margin: 15px 0 30px;
  color: var(--agf-natural);
  font-weight: 700;
}

.agf-transform-copy dl {
  display: grid;
  gap: 0;
  margin: 0 0 34px;
}

.agf-transform-copy dl div {
  padding: 18px 0;
  border-top: 1px solid var(--agf-line);
}

.agf-transform-copy dt {
  margin-bottom: 5px;
  color: var(--agf-ink);
  font: 700 13px var(--agf-heading);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.agf-transform-copy dd {
  margin: 0;
  color: var(--agf-muted);
  line-height: 1.6;
}

.agf-projects {
  background: var(--agf-forest);
  color: var(--agf-white);
}

.agf-project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
}

.agf-project-filters button {
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 30px;
  background: transparent;
  color: rgba(255, 255, 255, .75);
  font: 600 14px var(--agf-body);
  cursor: pointer;
}

.agf-project-filters button.is-active {
  border-color: var(--agf-accent);
  background: var(--agf-accent);
  color: var(--agf-ink);
}

.agf-project-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 280px;
  gap: 14px;
}

.agf-project-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--agf-radius);
  background: var(--agf-forest-deep);
  transition: opacity .25s ease, transform .25s ease;
}

.agf-project-card[hidden] {
  display: none;
}

.agf-project-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.agf-project-card:nth-child(4) {
  grid-column: span 2;
}

.agf-project-image-button {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.agf-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.agf-project-card:hover img,
.agf-project-card:focus-within img {
  transform: scale(1.045);
}

.agf-project-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 52px 22px 20px;
  background: linear-gradient(0deg, rgba(4, 35, 26, .94), transparent);
  pointer-events: none;
}

.agf-project-overlay span {
  color: #b9f178;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.agf-project-overlay h3 {
  margin: 4px 0 2px;
  color: var(--agf-white);
  font-size: clamp(1.12rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.agf-project-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.agf-project-overlay a {
  position: relative;
  z-index: 3;
  display: inline-flex;
  margin-top: 9px;
  color: var(--agf-white);
  font-size: 13px;
  font-weight: 700;
  pointer-events: auto;
}

.agf-link-light a {
  color: var(--agf-white);
}

.agf-process {
  background:
    radial-gradient(circle at 85% 15%, rgba(116, 201, 0, .12), transparent 24%),
    var(--agf-ivory);
}

.agf-process-layout {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: clamp(35px, 6vw, 72px);
  margin-bottom: 34px;
}

.agf-process-photo {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--agf-radius-lg);
  background: var(--agf-forest);
  box-shadow: var(--agf-shadow);
}

.agf-process-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  transition: opacity .2s ease;
}

.agf-process-photo span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 16px 18px;
  border-radius: 10px;
  background: rgba(5, 44, 33, .88);
  color: var(--agf-white);
  font: 700 15px var(--agf-heading);
  backdrop-filter: blur(10px);
}

.agf-process-steps {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.agf-process-steps::before {
  position: absolute;
  top: 35px;
  bottom: 35px;
  left: 35px;
  width: 2px;
  background: var(--agf-line);
  content: "";
}

.agf-process-steps li {
  position: relative;
}

.agf-process-steps button {
  width: 100%;
  min-height: 180px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-content: center;
  gap: 5px 22px;
  padding: 25px 20px 25px 0;
  border: 0;
  border-bottom: 1px solid var(--agf-line);
  background: transparent;
  color: var(--agf-ink);
  text-align: left;
  cursor: pointer;
}

.agf-process-steps li:last-child button {
  border-bottom: 0;
}

.agf-process-steps button > span {
  z-index: 2;
  grid-row: 1 / span 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid var(--agf-line);
  border-radius: 50%;
  background: var(--agf-ivory);
  color: var(--agf-natural);
  font: 700 15px var(--agf-heading);
}

.agf-process-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.agf-process-steps .is-active button > span {
  border-color: var(--agf-accent);
  background: var(--agf-accent);
  color: var(--agf-ink);
}

.agf-process-steps strong {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.agf-process-steps small {
  max-width: 580px;
  color: var(--agf-muted);
  font-size: 15px;
  line-height: 1.55;
}

.agf-drainage-feature {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, .92fr);
  background: var(--agf-forest-deep);
  color: var(--agf-white);
}

.agf-drainage-photo {
  min-height: 720px;
}

.agf-drainage-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.agf-drainage-copy {
  align-self: center;
  padding: clamp(60px, 8vw, 120px);
}

.agf-drainage-copy h2 {
  color: var(--agf-white);
}

.agf-drainage-copy > p {
  max-width: 580px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.7;
}

.agf-drainage-copy ul {
  display: grid;
  gap: 13px;
  margin: 30px 0 36px;
  padding: 0;
  list-style: none;
}

.agf-drainage-copy li {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
}

.agf-drainage-copy li::before {
  position: absolute;
  left: 0;
  color: var(--agf-accent);
  content: "✓";
}

.agf-reviews {
  background: var(--agf-white);
}

.agf-review-controls {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
}

.agf-review-controls button {
  border-color: var(--agf-line);
  background: var(--agf-ivory);
  color: var(--agf-ink);
}

.agf-review-controls [data-review-pause] {
  width: auto;
  border-radius: 30px;
  padding-inline: 16px;
}

.agf-review-track {
  display: grid;
  grid-auto-columns: minmax(320px, 40%);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 25px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--agf-natural) #e8ece5;
}

.agf-review-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--agf-line);
  border-radius: var(--agf-radius);
  background: var(--agf-ivory);
  scroll-snap-align: start;
}

.agf-stars {
  margin: 0 0 18px;
  color: var(--agf-natural);
  letter-spacing: .08em;
}

.agf-review-card blockquote {
  flex: 1;
  margin: 0 0 28px;
  color: var(--agf-ink);
  font: 600 clamp(1.05rem, 1.6vw, 1.35rem)/1.55 var(--agf-heading);
}

.agf-review-card footer {
  display: grid;
  gap: 3px;
  padding-top: 18px;
  border-top: 1px solid var(--agf-line);
}

.agf-review-card footer span {
  color: var(--agf-muted);
  font-size: 13px;
}

.agf-review-card footer a {
  margin-top: 5px;
  color: var(--agf-natural);
  font-size: 13px;
}

.agf-areas {
  background: var(--agf-ivory);
}

.agf-areas-grid {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

.agf-areas-copy p {
  max-width: 480px;
  margin: 24px 0 32px;
  color: var(--agf-muted);
  font-size: 17px;
  line-height: 1.7;
}

.agf-neighbourhoods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.agf-neighbourhoods a {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--agf-radius-sm);
  background: var(--agf-forest);
}

.agf-neighbourhoods img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
}

.agf-neighbourhoods a:hover img {
  transform: scale(1.05);
}

.agf-neighbourhoods span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 13px 11px;
  background: linear-gradient(0deg, rgba(4, 35, 26, .88), transparent);
  color: var(--agf-white);
  font: 700 13px var(--agf-heading);
}

.agf-final-cta {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--agf-white);
}

.agf-final-cta > img,
.agf-final-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.agf-final-cta > img {
  object-fit: cover;
}

.agf-final-shade {
  background: linear-gradient(90deg, rgba(4, 35, 26, .88), rgba(4, 35, 26, .5) 62%, rgba(4, 35, 26, .18));
}

.agf-final-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 90px;
}

.agf-final-content h2 {
  max-width: 900px;
  color: var(--agf-white);
}

.agf-final-content > p {
  max-width: 600px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, .85);
  font-size: 18px;
}

.agf-lightbox {
  width: min(1080px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: var(--agf-radius);
  background: #061d16;
  color: var(--agf-white);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .45);
}

.agf-lightbox::backdrop {
  background: rgba(2, 16, 12, .9);
  backdrop-filter: blur(7px);
}

.agf-lightbox figure {
  margin: 0;
}

.agf-lightbox img {
  width: 100%;
  max-height: calc(100svh - 110px);
  display: block;
  object-fit: contain;
  border-radius: var(--agf-radius) var(--agf-radius) 0 0;
}

.agf-lightbox figcaption {
  padding: 15px 20px;
  font-weight: 600;
}

.agf-lightbox-close {
  position: absolute;
  z-index: 2;
  top: -13px;
  right: -13px;
  width: 46px;
  height: 46px;
  border: 2px solid var(--agf-white);
  border-radius: 50%;
  background: var(--agf-accent);
  color: var(--agf-ink);
  font-size: 28px;
  cursor: pointer;
}

.agf-home-redesign .footer-cta {
  display: none;
}

.agf-home-redesign .site-footer {
  background: var(--agf-forest-deep);
}

.agf-home-redesign .agf-chat-toggle {
  display: grid !important;
}

.agf-home-redesign :focus-visible {
  outline: 3px solid var(--agf-accent);
  outline-offset: 4px;
}

.agf-trust-items,
.agf-service-list,
.agf-project-filters,
.agf-review-track {
  scrollbar-width: none;
}

.agf-trust-items::-webkit-scrollbar,
.agf-service-list::-webkit-scrollbar,
.agf-project-filters::-webkit-scrollbar,
.agf-review-track::-webkit-scrollbar {
  display: none;
}

@media (max-width: 1100px) {
  .agf-home-redesign .agf-header,
  .agf-home-redesign .agf-header.is-scrolled {
    background: rgba(5, 44, 33, .97);
  }

  .agf-home-redesign .brand img {
    width: min(260px, 50vw);
    filter: brightness(1.42) saturate(1.15) drop-shadow(0 3px 10px rgba(0, 0, 0, .22));
    opacity: 1;
  }

  .agf-service-experience {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  }

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

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

  .agf-project-card:nth-child(4) {
    grid-column: auto;
  }

  .agf-drainage-feature {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  }

  .agf-drainage-copy {
    padding: 58px;
  }
}

@media (max-width: 900px) {
  .agf-cinematic-hero {
    height: max(640px, 82svh);
    min-height: 640px;
  }

  .agf-heading-row,
  .agf-transform-grid,
  .agf-process-layout,
  .agf-areas-grid,
  .agf-faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .agf-heading-row {
    gap: 24px;
  }

  .agf-service-experience {
    display: block;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .agf-service-preview {
    display: none;
  }

  .agf-service-list {
    display: grid;
    grid-auto-columns: minmax(290px, 78%);
    grid-auto-flow: column;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 4px 24px;
    scroll-snap-type: x mandatory;
  }

  .agf-service-list li {
    min-height: 440px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--agf-line);
    border-radius: var(--agf-radius);
    background: var(--agf-white);
    box-shadow: 0 13px 34px rgba(5, 44, 33, .08);
    scroll-snap-align: start;
  }

  .agf-service-list li > img {
    width: 100%;
    height: 230px;
    display: block;
    object-fit: cover;
  }

  .agf-service-list button {
    min-height: 155px;
    align-content: start;
    padding: 21px 20px 8px;
    cursor: default;
  }

  .agf-service-list button strong,
  .agf-service-list button small {
    white-space: normal;
  }

  .agf-service-list button strong {
    font-size: 18px;
  }

  .agf-service-list li > a {
    width: auto;
    min-height: 48px;
    display: flex;
    justify-content: flex-start;
    gap: 9px;
    margin-left: 66px;
    padding: 0 0 16px;
    font-size: 14px;
    font-weight: 700;
  }

  .agf-transform-grid {
    gap: 42px;
  }

  .agf-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 300px;
  }

  .agf-project-featured {
    grid-column: span 2;
    grid-row: auto;
  }

  .agf-process-photo {
    min-height: 500px;
  }

  .agf-drainage-feature {
    grid-template-columns: minmax(0, 1fr);
  }

  .agf-drainage-photo {
    min-height: 540px;
  }

  .agf-drainage-copy {
    padding: 70px clamp(24px, 8vw, 70px);
  }

  .agf-review-track {
    grid-auto-columns: minmax(300px, 72%);
  }
}

@media (max-width: 650px) {
  .agf-home-redesign .agf-chat-toggle {
    display: none !important;
  }

  .agf-home-redesign .container {
    width: min(100% - 32px, 1240px);
  }

  .agf-home-redesign .agf-header-top {
    display: none;
  }

  .agf-home-redesign .nav-shell {
    min-height: 88px;
  }

  .agf-cinematic-hero {
    height: 690px;
    min-height: min(690px, 100svh);
  }

  .agf-hero-content {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 120px;
    padding-bottom: 125px;
  }

  .agf-hero-shade {
    background:
      linear-gradient(0deg, rgba(4, 32, 24, .76) 0%, rgba(4, 32, 24, .16) 63%, rgba(4, 32, 24, .02)),
      linear-gradient(90deg, rgba(4, 32, 24, .14), transparent 72%);
  }

  .agf-hero-photo {
    filter: saturate(1.08) brightness(1.16);
    transform: none !important;
    transition: none;
  }

  .agf-hero-slide:nth-child(1) .agf-hero-photo {
    object-position: 32% center;
  }

  .agf-hero-slide:nth-child(2) .agf-hero-photo {
    object-position: 61% center;
  }

  .agf-hero-slide:nth-child(3) .agf-hero-photo {
    object-position: 68% center;
  }

  .agf-hero-content h1,
  .agf-hero-heading {
    margin-bottom: 17px;
    font-size: clamp(2.35rem, 11.5vw, 3.35rem);
    line-height: 1.04;
  }

  .agf-hero-content > p:not(.agf-hero-heading) {
    margin-bottom: 23px;
    font-size: 16px;
    line-height: 1.55;
  }

  .agf-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .agf-hero-controls {
    bottom: 20px;
    grid-template-columns: auto minmax(20px, 1fr) 42px 42px;
    gap: 7px;
  }

  .agf-hero-progress,
  .agf-hero-controls [data-agf-hero-pause] {
    display: none;
  }

  .agf-hero-controls [data-agf-hero-prev] {
    grid-column: 3;
  }

  .agf-hero-controls [data-agf-hero-next] {
    grid-column: 4;
  }

  .agf-hero-count i {
    display: none;
  }

  .agf-trust-items {
    min-height: 78px;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .agf-trust-items a {
    min-width: 190px;
    flex: 0 0 auto;
    justify-content: flex-start;
    padding: 16px;
    scroll-snap-align: start;
  }

  .agf-section {
    padding: 76px 0;
  }

  .agf-home-redesign h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .agf-section-heading {
    margin-bottom: 35px;
  }

  .agf-heading-row > p {
    font-size: 15px;
  }

  .agf-service-list {
    grid-auto-columns: 88%;
  }

  .agf-priority-service-grid,
  .agf-project-proof-grid { grid-template-columns: minmax(0, 1fr); }
  .agf-priority-service-card p { min-height: 0; }
  .agf-project-proof-card { min-height: 300px; }

  .agf-service-list li {
    min-height: 430px;
  }

  .agf-before-after {
    aspect-ratio: 4 / 3;
    border-radius: var(--agf-radius);
  }

  .agf-transform-copy dl div {
    padding: 15px 0;
  }

  .agf-project-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .agf-project-filters button {
    flex: 0 0 auto;
  }

  .agf-project-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: 370px;
  }

  .agf-project-featured {
    grid-column: auto;
  }

  .agf-project-card {
    min-height: 370px;
  }

  .agf-process-photo {
    display: none;
  }

  .agf-process-layout { gap: 0; }

  .agf-faq-heading { position: static; }

  .agf-process-steps::before {
    display: none;
  }

  .agf-process-steps {
    gap: 12px;
  }

  .agf-process-steps li {
    border: 1px solid var(--agf-line);
    border-radius: 14px;
    background: var(--agf-white);
    box-shadow: 0 10px 28px rgba(5, 44, 33, .06);
  }

  .agf-process-steps button {
    min-height: 0;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 4px 14px;
    padding: 18px;
    border-bottom: 0;
  }

  .agf-process-steps button > span {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .agf-process-icon svg {
    width: 24px;
    height: 24px;
  }

  .agf-process > .container > .agf-button {
    width: 100%;
    margin-top: 8px;
  }

  .agf-drainage-photo {
    min-height: 400px;
  }

  .agf-drainage-copy {
    padding: 65px 20px 72px;
  }

  .agf-review-controls {
    justify-content: flex-start;
  }

  .agf-review-controls [data-review-pause] {
    display: none;
  }

  .agf-review-track {
    grid-auto-columns: 90%;
  }

  .agf-review-card {
    min-height: 390px;
    padding: 28px;
  }

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

  .agf-neighbourhoods a:nth-child(n+5) { display: none; }

  .agf-final-cta {
    min-height: 650px;
  }

  .agf-final-shade {
    background: linear-gradient(0deg, rgba(4, 35, 26, .92), rgba(4, 35, 26, .35));
  }

  .agf-final-content {
    align-self: end;
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .agf-lightbox-close {
    top: 8px;
    right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .agf-home-redesign *,
  .agf-home-redesign *::before,
  .agf-home-redesign *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .agf-hero-photo {
    transform: none !important;
  }
}

@supports not (overflow: clip) {
  .agf-home-redesign {
    overflow-x: hidden;
  }
}
