/* ================================================================
   Woodlandscapes — main.css
   ================================================================ */

:root {
  --wl-forest:       #2e5b27;
  --wl-forest-dark:  #123f1b;
  --wl-moss:         #7ea35b;
  --wl-lime:         #a7cf4a;
  --wl-lime-dark:    #8ab836;
  --wl-mist:         #f4f6f2;
  --wl-white:        #ffffff;
  --wl-charcoal:     #333333;
  --wl-border:       #dfe4da;
  --wl-shadow:       0 18px 45px rgba(25, 48, 20, 0.11);
  --wl-shadow-lift:  0 28px 64px rgba(25, 48, 20, 0.17);
  --wl-radius:       10px;
  --wl-shell:        min(100% - 48px, 1600px);
  --wl-content:      min(100% - 48px, 1180px);
  --wl-spring:       cubic-bezier(0.22, 1, 0.36, 1);
}

/* ================================================================
   RESET & BASE
   ================================================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wl-mist);
  color: var(--wl-charcoal);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

/* ================================================================
   ACCESSIBILITY
   ================================================================ */

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

.skip-link:focus {
  z-index: 9999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--wl-white);
  background: var(--wl-forest);
}

/* ================================================================
   ANIMATIONS
   ================================================================ */

@keyframes wl-rise {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes wl-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll-reveal — classes added by JS so no-JS gets visible content */
.anim-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.anim-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .anim-reveal,
  .anim-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-slide.is-active .hero-slide__content h1,
  .hero-slide.is-active .hero-slide__content p,
  .hero-slide.is-active .hero-slide__actions {
    animation: none;
  }
}

/* ================================================================
   LAYOUT
   ================================================================ */

.site-shell {
  width: var(--wl-shell);
  margin-inline: auto;
}

/* ================================================================
   BUTTONS
   ================================================================ */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 30px;
  border: 2px solid var(--wl-forest);
  border-radius: 6px;
  background: var(--wl-forest);
  color: var(--wl-white);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  line-height: 1;
  transition:
    background  200ms ease,
    border-color 200ms ease,
    color       200ms ease,
    transform   220ms var(--wl-spring),
    box-shadow  220ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--wl-forest-dark);
  border-color: var(--wl-forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(18, 63, 27, 0.24);
}

.button--lime {
  background: linear-gradient(135deg, var(--wl-lime) 0%, var(--wl-lime-dark) 100%);
  border-color: var(--wl-lime-dark);
  color: var(--wl-forest-dark);
  font-weight: 900;
}

.button--lime:hover,
.button--lime:focus-visible {
  background: var(--wl-lime-dark);
  border-color: var(--wl-lime-dark);
  color: var(--wl-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(138, 184, 54, 0.38);
}

.button--ghost {
  background: rgba(18, 63, 27, 0.22);
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--wl-white);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--wl-white);
  color: var(--wl-white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.button--light {
  background: var(--wl-white);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--wl-forest);
}

.button--light:hover,
.button--light:focus-visible {
  background: var(--wl-mist);
  border-color: var(--wl-white);
  color: var(--wl-forest-dark);
}

/* ================================================================
   SITE HEADER
   ================================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--wl-border);
  border-top: 3px solid var(--wl-lime);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 32px rgba(18, 63, 27, 0.10);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 330px 1fr auto;
  gap: 34px;
  align-items: center;
  min-height: 146px;
}

.site-logo img {
  width: min(330px, 100%);
}

.primary-nav {
  justify-self: end;
}

.primary-nav__menu,
.footer-menu {
  display: flex;
  gap: 34px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-nav a {
  position: relative;
  padding-bottom: 4px;
  color: #1f251f;
  font-weight: 800;
  font-size: 0.95rem;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--wl-lime), var(--wl-lime-dark));
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.22s ease;
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after,
.primary-nav .current_page_item > a::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.button--header {
  min-height: 48px;
  padding-inline: 26px;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--wl-border);
  border-radius: 6px;
  background: var(--wl-white);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.menu-toggle:hover {
  background: var(--wl-mist);
  border-color: var(--wl-moss);
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--wl-forest);
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

/* ================================================================
   MOBILE DRAWER
   ================================================================ */

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  background: rgba(0, 0, 0, 0);
  transition: background 200ms ease;
}

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 88vw);
  height: 100%;
  padding: 28px;
  background: var(--wl-white);
  box-shadow: var(--wl-shadow);
  transform: translateX(100%);
  transition: transform 260ms var(--wl-spring);
}

.menu-open .mobile-drawer {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.42);
}

.menu-open .mobile-drawer__panel {
  transform: translateX(0);
}

.mobile-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.mobile-drawer__top img {
  max-width: 220px;
}

.mobile-drawer__close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--wl-border);
  border-radius: 6px;
  background: var(--wl-mist);
  color: var(--wl-forest);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.mobile-drawer__close:hover {
  background: var(--wl-border);
}

.mobile-drawer__menu {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.mobile-drawer__menu a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--wl-border);
  font-weight: 800;
  transition: color 0.18s ease, padding-left 0.18s ease;
}

.mobile-drawer__menu a:hover {
  color: var(--wl-forest);
  padding-left: 6px;
}

/* ================================================================
   HERO SLIDER
   ================================================================ */

.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--wl-forest-dark);
}

.hero-slide {
  position: relative;
  min-height: 600px;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(18, 63, 27, 0.97) 0%,
    rgba(18, 63, 27, 0.84) 36%,
    rgba(18, 63, 27, 0.22) 72%,
    transparent 100%
  );
}

/* Lime accent bar at bottom of hero */
.hero-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wl-lime) 0%, var(--wl-lime-dark) 55%, transparent 100%);
  z-index: 2;
}

.hero-slide__inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 600px;
  z-index: 1;
}

.hero-slide__content {
  width: min(680px, 100%);
  padding: 72px 0;
  color: var(--wl-white);
}

/* Staggered entrance animations on the active slide */
.hero-slide.is-active .hero-slide__content h1 {
  animation: wl-rise 0.85s var(--wl-spring) 0.10s both;
}

.hero-slide.is-active .hero-slide__content p {
  animation: wl-rise 0.80s var(--wl-spring) 0.27s both;
}

.hero-slide.is-active .hero-slide__actions {
  animation: wl-rise 0.80s var(--wl-spring) 0.44s both;
}

.hero-slide h1 {
  max-width: 700px;
  margin: 0 0 24px;
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.015em;
}

.hero-slide p {
  max-width: 540px;
  margin: 0 0 34px;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.52;
  opacity: 0.92;
}

.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ================================================================
   CONFIDENCE STRIP
   ================================================================ */

.confidence-strip {
  background: var(--wl-white);
  border-bottom: 1px solid var(--wl-border);
}

.confidence-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 88px;
}

.confidence-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 22px;
  border-left: 1px solid var(--wl-border);
  font-weight: 800;
  font-size: 0.9rem;
  transition: background 0.22s ease;
}

.confidence-strip__item:first-child {
  border-left: 0;
}

.confidence-strip__item:hover {
  background: var(--wl-mist);
}

.confidence-strip__icon {
  flex-shrink: 0;
  color: var(--wl-forest);
  font-size: 34px;
}

/* ================================================================
   TEXT / MEDIA
   ================================================================ */

.text-media,
.card-section,
.sectors-section,
.projects-section {
  background: var(--wl-white);
}

.text-media__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 9vw, 160px);
  align-items: center;
  width: var(--wl-content);
  padding: 68px 0 52px;
}

.section-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--wl-forest);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 22px;
  text-align: center;
  color: var(--wl-forest);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Lime underline accent on section titles */
.section-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, var(--wl-lime), var(--wl-lime-dark));
  border-radius: 2px;
}

.section-title--left {
  text-align: left;
}

.section-title--left::after {
  margin-left: 0;
}

.text-media h2 {
  max-width: 560px;
  margin: 0 0 20px;
  color: #111711;
  font-size: clamp(1.85rem, 2.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.rich-text > *:first-child {
  margin-top: 0;
}

.rich-text > *:last-child {
  margin-bottom: 0;
}

.text-media .rich-text {
  max-width: 560px;
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.65;
}

.text-media__image {
  margin: 0;
}

.text-media__image img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: var(--wl-radius);
  box-shadow: var(--wl-shadow);
}

/* ================================================================
   SERVICES GRID
   ================================================================ */

.card-section {
  padding: 24px 0 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  width: var(--wl-content);
  margin-inline: auto;
}

.service-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--wl-border);
  border-radius: var(--wl-radius);
  background: var(--wl-white);
  box-shadow: 0 8px 24px rgba(34, 50, 30, 0.06);
  transition:
    transform   0.32s var(--wl-spring),
    box-shadow  0.32s ease,
    border-color 0.25s ease;
  text-decoration: none;
  color: inherit;
}

@media (hover: hover) {
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--wl-shadow-lift);
    border-color: var(--wl-moss);
  }

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

  .service-card:hover .service-card__icon {
    background: var(--wl-lime);
    color: var(--wl-forest-dark);
    transform: scale(1.12);
  }

  .service-card:hover .card-arrow {
    transform: translateX(5px);
    color: var(--wl-lime-dark);
  }
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
  transition: transform 0.52s ease;
}

.service-card__icon {
  position: absolute;
  top: 80px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid var(--wl-white);
  border-radius: 50%;
  background: var(--wl-forest);
  color: var(--wl-white);
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(18, 63, 27, 0.32);
  transition:
    background 0.28s ease,
    color      0.28s ease,
    transform  0.28s var(--wl-spring);
}

.service-card h3 {
  min-height: 56px;
  margin: 32px 20px 16px;
  color: #111711;
  font-size: 0.97rem;
  font-weight: 800;
  line-height: 1.2;
}

.card-arrow {
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: var(--wl-forest);
  font-size: 20px;
  transition: transform 0.22s ease, color 0.22s ease;
}

/* ================================================================
   SECTORS GRID
   ================================================================ */

.sectors-section {
  padding: 16px 0 44px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  width: var(--wl-content);
  margin-inline: auto;
}

.sector-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid var(--wl-border);
  border-radius: 8px;
  background: var(--wl-white);
  box-shadow: 0 6px 16px rgba(34, 50, 30, 0.05);
  text-decoration: none;
  color: inherit;
  transition:
    background    0.26s ease,
    border-color  0.26s ease,
    transform     0.28s var(--wl-spring),
    box-shadow    0.28s ease,
    color         0.26s ease;
}

@media (hover: hover) {
  .sector-card:hover {
    background: var(--wl-forest);
    border-color: var(--wl-forest);
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(18, 63, 27, 0.24);
    color: var(--wl-white);
  }

  .sector-card:hover > span {
    color: var(--wl-lime);
  }

  .sector-card:hover em {
    color: var(--wl-lime);
  }
}

.sector-card > span {
  color: var(--wl-forest);
  font-size: 28px;
  transition: color 0.26s ease;
}

.sector-card strong {
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
}

.sector-card em {
  color: var(--wl-forest);
  font-style: normal;
  font-size: 22px;
  transition: color 0.26s ease;
}

/* ================================================================
   CONFIDENCE BOOSTER
   ================================================================ */

.confidence-booster__top {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, var(--wl-forest-dark) 0%, var(--wl-forest) 55%, #3a6e32 100%);
  color: var(--wl-white);
}

/* Top lime accent bar */
.confidence-booster__top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wl-lime) 0%, transparent 70%);
}

.confidence-booster__top::after {
  content: '';
  position: absolute;
  right: 6%;
  bottom: -70px;
  width: 280px;
  height: 280px;
  background: url('../images/leaf-mark.svg') center / contain no-repeat;
  opacity: 0.09;
  pointer-events: none;
}

.confidence-booster__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  align-items: center;
  min-height: 130px;
}

.confidence-booster__copy {
  padding-right: 42px;
}

.confidence-booster__copy h2 {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wl-lime);
}

.confidence-booster__copy p {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.42;
}

.confidence-stat {
  min-height: 80px;
  padding: 14px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.confidence-stat strong {
  display: block;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--wl-lime);
}

.confidence-stat span {
  display: block;
  font-size: 0.87rem;
  font-weight: 800;
  opacity: 0.88;
}

.confidence-booster__features {
  background: var(--wl-mist);
  border-bottom: 1px solid var(--wl-border);
}

.confidence-features {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  align-items: center;
  min-height: 100px;
}

.confidence-features h2 {
  margin: 0;
  color: var(--wl-forest);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.confidence-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 12px 22px;
  border-left: 1px solid var(--wl-border);
  transition: background 0.22s ease;
}

.confidence-feature:hover {
  background: rgba(167, 207, 74, 0.08);
}

.confidence-feature span {
  color: var(--wl-forest);
  font-size: 34px;
}

.confidence-feature strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 800;
}

.confidence-feature p {
  margin: 3px 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  color: #666;
}

/* ================================================================
   PROJECTS SECTION
   ================================================================ */

.projects-section {
  padding: 34px 0 24px;
}

.projects-section > .site-shell {
  width: var(--wl-content);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 160px;
  overflow: hidden;
  border: 1px solid var(--wl-border);
  border-radius: var(--wl-radius);
  background: var(--wl-white);
  box-shadow: 0 6px 18px rgba(34, 50, 30, 0.05);
  text-decoration: none;
  color: inherit;
  transition:
    transform  0.32s var(--wl-spring),
    box-shadow 0.32s ease;
}

@media (hover: hover) {
  .project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(34, 50, 30, 0.13);
  }

  .project-card:hover img {
    transform: scale(1.06);
  }

  .project-card:hover .project-card__link {
    color: var(--wl-lime-dark);
  }
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.project-card div {
  padding: 20px 20px 20px 22px;
}

.project-card h3 {
  margin: 0 0 8px;
  color: #111711;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.project-card p {
  margin: 0 0 14px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  color: #666;
}

.project-card a,
.project-card__link {
  color: var(--wl-forest);
  font-size: 0.88rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

/* ================================================================
   FOOTER CTA
   ================================================================ */

.footer-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, var(--wl-forest-dark) 0%, var(--wl-forest) 55%, #3a6e32 100%);
  color: var(--wl-white);
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wl-lime) 0%, transparent 70%);
}

.footer-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr auto auto auto;
  gap: 38px;
  align-items: center;
  min-height: 120px;
}

.footer-cta__heading {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-cta__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 2px solid var(--wl-lime);
  border-radius: 50%;
  color: var(--wl-lime);
  font-size: 34px;
}

.footer-cta h2,
.footer-cta p {
  margin: 0;
}

.footer-cta h2 {
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  font-weight: 900;
  line-height: 1.12;
}

.footer-cta p {
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 700;
  opacity: 0.88;
}

.footer-cta__contact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-width: 170px;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-cta__contact > span {
  font-size: 28px;
  color: var(--wl-lime);
}

.footer-cta__contact small {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.72;
}

.footer-cta__contact strong {
  display: block;
  font-size: 1rem;
}

/* ================================================================
   FOOTER MAIN
   ================================================================ */

.footer-main {
  background: #073613;
  color: var(--wl-white);
}

.footer-main__grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1.25fr 0.75fr;
  gap: 42px;
  padding: 44px 0 28px;
}

.footer-main h2 {
  margin: 0 0 16px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--wl-lime);
}

.footer-main__brand img {
  width: min(290px, 100%);
}

.footer-contact,
.footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.9rem;
  opacity: 0.85;
}

.footer-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 6px 24px;
  font-size: 0.9rem;
}

.footer-menu a {
  opacity: 0.78;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-menu a:hover {
  opacity: 1;
  color: var(--wl-lime);
}

.social-link {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--wl-white);
  font-weight: 900;
  font-size: 0.9rem;
  transition: background 0.22s ease, color 0.22s ease;
}

.social-link:hover {
  background: var(--wl-lime);
  color: var(--wl-forest-dark);
}

.footer-main__bottom {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}

.footer-main__bottom p {
  margin: 0;
}

/* ================================================================
   ARCHIVE / LISTINGS
   ================================================================ */

.archive-fallback {
  padding: 80px 0;
}

.archive-card {
  padding: 24px 0;
  border-bottom: 1px solid var(--wl-border);
}

.page-content,
.single-content,
.listing-page {
  background: var(--wl-white);
}

.page-content__inner,
.single-content__inner,
.listing-page__inner {
  width: var(--wl-content);
  padding: 72px 0;
}

.page-content h1,
.single-content h1,
.listing-page h1 {
  margin: 0 0 28px;
  color: #111711;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.single-content__image {
  width: 100%;
  max-height: 520px;
  margin-bottom: 36px;
  object-fit: cover;
  border-radius: var(--wl-radius);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.listing-card {
  overflow: hidden;
  border: 1px solid var(--wl-border);
  border-radius: var(--wl-radius);
  background: var(--wl-white);
  transition: transform 0.3s var(--wl-spring), box-shadow 0.3s ease;
}

.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--wl-shadow);
}

.listing-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.listing-card h2 {
  margin: 20px 22px 10px;
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.2;
}

.listing-card p {
  margin: 0 22px 24px;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */

.contact-page {
  background: var(--wl-white);
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 7vw, 110px);
  width: var(--wl-content);
  padding: 76px 0;
}

.contact-page h1 {
  margin: 0 0 18px;
  color: #111711;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.contact-page__details {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  font-weight: 800;
}

.contact-page__details li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.contact-page__details svg {
  color: var(--wl-forest);
  font-size: 24px;
}

.contact-page__form {
  padding: 34px;
  border: 1px solid var(--wl-border);
  border-radius: var(--wl-radius);
  background: var(--wl-mist);
}

/* ================================================================
   RESPONSIVE — 1320px
   ================================================================ */

@media (max-width: 1320px) {
  .site-header__inner {
    grid-template-columns: 260px 1fr auto;
    gap: 24px;
  }

  .primary-nav__menu {
    gap: 22px;
  }

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

  .confidence-booster__grid,
  .confidence-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding-block: 22px;
  }

  .confidence-booster__copy,
  .confidence-features h2 {
    grid-column: 1 / -1;
    padding: 0 0 18px;
  }

  .confidence-stat:nth-child(2n),
  .confidence-feature:nth-child(2n) {
    border-left: 0;
  }

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

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

/* ================================================================
   RESPONSIVE — 980px
   ================================================================ */

@media (max-width: 980px) {
  :root {
    --wl-shell: min(100% - 32px, 1600px);
    --wl-content: min(100% - 32px, 1180px);
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 92px;
  }

  .site-logo img {
    width: 230px;
  }

  .primary-nav,
  .button--header {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-slide,
  .hero-slide__inner {
    min-height: 560px;
  }

  .hero-slide {
    background-position: center;
  }

  .hero-slide__overlay {
    background: linear-gradient(90deg, rgba(18, 63, 27, 0.97), rgba(18, 63, 27, 0.76));
  }

  .confidence-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .confidence-strip__item {
    justify-content: flex-start;
    border-bottom: 1px solid var(--wl-border);
  }

  .text-media__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-cta__inner,
  .footer-main__grid,
  .contact-page__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 32px;
  }

  .footer-cta__contact {
    padding-left: 0;
    border-left: 0;
  }
}

/* ================================================================
   RESPONSIVE — 680px
   ================================================================ */

@media (max-width: 680px) {
  .button {
    width: 100%;
  }

  .hero-slide,
  .hero-slide__inner {
    min-height: 520px;
  }

  .hero-slide__content {
    padding: 52px 0;
  }

  .hero-slide h1 {
    font-size: 2.45rem;
  }

  .hero-slide p,
  .footer-cta p {
    font-size: 1.05rem;
  }

  .hero-slide__actions {
    gap: 12px;
  }

  .confidence-strip__grid,
  .service-grid,
  .sector-grid,
  .confidence-booster__grid,
  .confidence-features {
    grid-template-columns: 1fr;
  }

  .confidence-strip__item,
  .confidence-stat,
  .confidence-feature {
    border-left: 0;
  }

  .service-card__icon {
    top: 44%;
  }

  .project-card {
    grid-template-columns: 1fr;
  }

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

  .project-card img {
    border-radius: 0;
    min-height: 200px;
  }

  .project-card div {
    padding: 18px;
  }

  .footer-cta__heading {
    align-items: flex-start;
  }

  .footer-cta__icon {
    width: 54px;
    height: 54px;
    font-size: 28px;
  }
}
