:root {
  --green-950: #07170f;
  --green-900: #0d281b;
  --green-800: #113d29;
  --green-700: #17633d;
  --green-600: #24834f;
  --green-100: #e7f1ea;
  --ink: #111714;
  --muted: #5f6b64;
  --line: #dfe7e1;
  --paper: #ffffff;
  --soft: #f4f7f5;
  --gold: #c8a24a;
  --blue: #2f6784;
  --shadow: 0 18px 42px rgba(10, 31, 20, 0.13);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

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

svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--paper);
  color: var(--green-900);
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: 76px;
  padding: 0.85rem 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: #fff;
  background: rgba(7, 23, 15, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 23, 15, 0.96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  width: 188px;
  height: 54px;
}

.brand img {
  width: 188px;
  height: 54px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 0.35rem;
  color: var(--green-950);
  background: #fff;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--green-950);
  background: var(--green-100);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  position: relative;
  width: 100%;
  inline-size: 100%;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 8rem 4vw 5.5rem;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  backface-visibility: hidden;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 23, 15, 0.9) 0%, rgba(7, 23, 15, 0.7) 42%, rgba(7, 23, 15, 0.35) 100%),
    linear-gradient(0deg, rgba(7, 23, 15, 0.72) 0%, rgba(7, 23, 15, 0.04) 48%);
}

.hero-designed .hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 23, 15, 0.76) 0%, rgba(7, 23, 15, 0.46) 42%, rgba(7, 23, 15, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 23, 15, 0.36) 0%, rgba(7, 23, 15, 0.02) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--green-600);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.contact-section .eyebrow {
  color: #bfe5c9;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 4.6rem;
}

h2 {
  font-size: 2.55rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 680px;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-caption {
  position: absolute;
  z-index: 2;
  left: 4vw;
  bottom: 2.2rem;
  width: min(720px, calc(100% - 430px));
  min-height: 50px;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(7, 23, 15, 0.72);
  backdrop-filter: blur(14px);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-caption span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-caption span.is-active {
  opacity: 1;
}

.hero-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  background: rgba(7, 23, 15, 0.42);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.hero-arrow svg {
  width: 2rem;
  height: 2rem;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: rgba(7, 23, 15, 0.78);
  border-color: rgba(255, 255, 255, 0.52);
  outline: none;
}

.hero-arrow-prev {
  left: 1.2rem;
}

.hero-arrow-next {
  right: 1.2rem;
}

.hero-dots {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 3rem;
  display: flex;
  gap: 0.45rem;
}

.hero-dots button {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active,
.hero-dots button:hover,
.hero-dots button:focus-visible {
  width: 46px;
  background: #fff;
  outline: none;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-light {
  color: var(--green-950);
  background: #fff;
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--green-100);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.button-outline {
  color: var(--green-900);
  border-color: var(--green-700);
  background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
  color: #fff;
  background: var(--green-800);
}

.section {
  padding: 6rem 4vw;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  gap: 3rem;
  align-items: center;
}

.home-intro-copy {
  display: grid;
  gap: 1.1rem;
}

.home-intro-copy h2,
.home-focus h2,
.home-team-snapshot h2,
.home-cta h2 {
  color: var(--green-950);
}

.home-intro-copy p:not(.eyebrow),
.home-team-snapshot p {
  color: #3f4f46;
  font-size: 1.05rem;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.home-intro .button-light,
.home-capabilities .button-light,
.home-team-snapshot .button-light {
  color: #fff;
  background: var(--green-800);
}

.home-intro .button-light:hover,
.home-intro .button-light:focus-visible,
.home-capabilities .button-light:hover,
.home-capabilities .button-light:focus-visible,
.home-team-snapshot .button-light:hover,
.home-team-snapshot .button-light:focus-visible {
  background: var(--green-700);
}

.home-intro-media {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--green-950);
  box-shadow: var(--shadow);
}

.home-intro-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.home-intro-media figcaption {
  padding: 1rem;
  color: rgba(255, 255, 255, 0.86);
  background: var(--green-900);
  font-weight: 760;
}

.home-card-grid,
.home-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(10, 31, 20, 0.06);
}

.home-service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.home-service-card div {
  padding: 1.25rem;
}

.home-service-card h3 {
  margin-bottom: 0.65rem;
  color: var(--green-950);
}

.home-service-card p {
  color: #4b5a52;
}

.home-section-link {
  margin-top: 1.3rem;
}

.home-focus {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) 1fr;
  gap: 2rem;
  align-items: start;
}

.focus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.focus-grid span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0.58rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--green-950);
  background: var(--green-100);
  font-weight: 850;
}

.home-projects {
  background:
    linear-gradient(180deg, rgba(7, 23, 15, 0.96), rgba(7, 23, 15, 1)),
    var(--green-950);
}

.home-project-grid article {
  min-height: 430px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
}

.home-project-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.home-project-grid h3 {
  margin: 0.35rem 0 0.65rem;
  color: #fff;
}

.home-project-grid p:not(.project-meta) {
  color: rgba(255, 255, 255, 0.78);
}

.home-team-snapshot {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 0.95fr);
  gap: 2.5rem;
  align-items: center;
}

.home-team-snapshot > div:first-child {
  display: grid;
  gap: 1rem;
}

.team-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.team-mini-grid img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(10, 31, 20, 0.07);
}

.home-cta {
  padding: 4.5rem 4vw;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 23, 15, 0.96), rgba(17, 61, 41, 0.9)),
    url("assets/hero-water.jpg") center / cover;
}

.home-cta h2 {
  max-width: 880px;
  color: #fff;
}

.home-cta p {
  max-width: 760px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.page-visual {
  position: relative;
  width: 100%;
  inline-size: 100%;
  min-height: 520px;
  padding: calc(6rem + 76px) 4vw 4rem;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--green-950);
}

.page-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 23, 15, 0.9) 0%, rgba(7, 23, 15, 0.64) 46%, rgba(7, 23, 15, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 23, 15, 0.72) 0%, rgba(7, 23, 15, 0.08) 58%);
}

.page-visual-about::after {
  background:
    linear-gradient(90deg, rgba(7, 23, 15, 0.92) 0%, rgba(7, 23, 15, 0.68) 42%, rgba(7, 23, 15, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 23, 15, 0.48) 0%, rgba(7, 23, 15, 0.02) 58%);
}

.page-visual-services::after {
  background:
    linear-gradient(90deg, rgba(7, 23, 15, 0.86) 0%, rgba(7, 23, 15, 0.6) 39%, rgba(7, 23, 15, 0.1) 100%),
    linear-gradient(0deg, rgba(7, 23, 15, 0.42) 0%, rgba(7, 23, 15, 0.02) 58%);
}

.page-visual-projects::after,
.page-visual-gallery::after,
.page-visual-news::after,
.page-visual-contact::after {
  background:
    linear-gradient(90deg, rgba(7, 23, 15, 0.86) 0%, rgba(7, 23, 15, 0.58) 39%, rgba(7, 23, 15, 0.1) 100%),
    linear-gradient(0deg, rgba(7, 23, 15, 0.4) 0%, rgba(7, 23, 15, 0.02) 58%);
}

.page-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  backface-visibility: hidden;
}

.page-visual-news img {
  object-position: center 48%;
}

.page-visual > div {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
}

.page-visual h1 {
  font-size: 3.15rem;
}

.page-visual p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.page-main > .section:first-child,
.page-main > .gallery-section:first-child,
.page-main > .contact-section:first-child {
  padding-top: calc(6rem + 76px);
}

.section-dark {
  color: #fff;
  background: var(--green-950);
}

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

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  color: var(--green-950);
}

.section-dark .section-heading h2 {
  color: #fff;
}

.section-heading-wide {
  width: min(980px, 100%);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-item {
  min-height: 132px;
  padding: 1.5rem 4vw;
  display: grid;
  align-content: center;
  gap: 0.25rem;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  color: var(--green-800);
  font-size: 2.1rem;
  line-height: 1;
}

.proof-item span {
  color: var(--muted);
  font-weight: 750;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 2rem;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 1rem;
  color: #324139;
  font-size: 1.05rem;
}

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.principles span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  color: var(--green-950);
  background: var(--green-100);
  font-weight: 850;
}

.mission-panel {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mission-panel > div {
  padding: 1.45rem;
  background: #fff;
}

.mission-panel h3 {
  margin-bottom: 0.6rem;
  color: var(--green-800);
}

.mission-panel p {
  color: #3b4841;
}

.partners {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 4vw;
  border-block: 1px solid var(--line);
}

.partner-copy h2 {
  color: var(--green-950);
  font-size: 2rem;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.partner-logos img {
  width: 100%;
  height: 112px;
  object-fit: contain;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

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

.service-card {
  min-height: 410px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 1rem;
  padding: 0 0 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 31, 20, 0.06);
}

.service-image {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--green-100);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-icon {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-800);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(7, 23, 15, 0.18);
}

.service-card h3 {
  padding: 0 1.35rem;
  color: var(--green-950);
}

.service-card p {
  padding: 0 1.35rem;
  color: #4b5a52;
}

.service-card .button-light {
  justify-self: start;
  color: #fff;
  background: var(--green-800);
}

.service-card .button-light:hover,
.service-card .button-light:focus-visible {
  background: var(--green-700);
}

.thematic-band {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.5rem;
  border-radius: 8px;
  color: #fff;
  background: var(--green-900);
}

.thematic-band h3 {
  color: #fff;
}

.thematic-band ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  list-style: none;
}

.thematic-band li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.thematic-band li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.projects-section {
  background:
    linear-gradient(180deg, rgba(7, 23, 15, 0.96), rgba(7, 23, 15, 1)),
    var(--green-950);
}

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

.project-card {
  min-height: 360px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
}

.project-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 6px;
}

.project-card h3 {
  margin: 0.25rem 0 0.65rem;
  color: #fff;
}

.project-card p {
  color: rgba(255, 255, 255, 0.78);
}

.project-meta {
  color: #bfe5c9 !important;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.team-grid-detailed {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.team-card {
  min-height: 500px;
  display: grid;
  grid-template-rows: 210px 1fr;
  gap: 1.1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(10, 31, 20, 0.06);
}

.team-card-detailed {
  min-height: 0;
  grid-template-columns: 220px 1fr;
  grid-template-rows: auto;
  align-items: start;
  gap: 1.25rem;
  padding: 1.1rem;
}

.team-card img,
.avatar-placeholder {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--green-100);
}

.avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
  font-size: 3rem;
  font-weight: 900;
}

.team-card-detailed > img,
.team-card-detailed > .avatar-placeholder {
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  background: #f6f8f6;
}

.team-card h3 {
  margin-bottom: 0.4rem;
  color: var(--green-950);
}

.role {
  min-height: 52px;
  margin-bottom: 0.7rem;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 850;
}

.team-card p:not(.role) {
  color: #526158;
  font-size: 0.95rem;
}

.team-card-detailed p:not(.role) {
  font-size: 0.94rem;
}

.team-highlights {
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  list-style: none;
}

.team-highlights li {
  position: relative;
  padding-left: 1rem;
  color: #526158;
  font-size: 0.92rem;
  line-height: 1.55;
}

.team-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-700);
}

.gallery-section {
  padding: 6rem 4vw;
  background: #fff;
}

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

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green-950);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  opacity: 1;
}

.gallery-item.portrait img {
  object-position: center top;
}

.gallery-item figcaption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  color: #fff;
  background: rgba(7, 23, 15, 0.76);
  font-weight: 850;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.news-card {
  min-height: 260px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.news-card time {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--green-800);
  font-weight: 900;
}

.news-card h3 {
  margin-bottom: 0.75rem;
  color: var(--green-950);
}

.news-card p {
  color: #4b5a52;
}

.contact-section {
  padding: 6rem 4vw;
  background:
    linear-gradient(90deg, rgba(7, 23, 15, 0.96), rgba(13, 40, 27, 0.92)),
    url("assets/workshop-facilitation.jpeg") center / cover;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 0.9fr);
  gap: 3rem;
  align-items: start;
}

.contact-content h2 {
  max-width: 720px;
  color: #fff;
}

.contact-content p {
  max-width: 600px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.contact-methods {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-methods a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.contact-methods svg {
  flex: 0 0 auto;
  color: var(--gold);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: #fff;
  background: rgba(0, 0, 0, 0.24);
  padding: 0.72rem 0.8rem;
  outline: none;
}

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

.contact-form select option {
  color: var(--ink);
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14);
}

.contact-form .button {
  justify-self: start;
}

.form-note {
  margin: 0 !important;
  align-self: center;
  font-size: 0.9rem;
}

.site-footer {
  padding: 4.8rem 4vw 1.5rem;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 12% 0%, rgba(36, 131, 79, 0.22), transparent 30%),
    #080b09;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(150px, 0.6fr) minmax(150px, 0.6fr) minmax(280px, 0.95fr);
  gap: 3rem;
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
}

.site-footer img {
  width: 190px;
  height: auto;
  margin-bottom: 1.15rem;
}

.footer-brand p,
.footer-enquiry p {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-address {
  margin-top: 1.15rem;
  color: #bfe5c9;
  font-weight: 850;
}

.footer-column {
  display: grid;
  gap: 0.72rem;
}

.footer-column h3 {
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 1rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 720;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #bfe5c9;
  outline: none;
}

.footer-form {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 0;
  width: min(100%, 360px);
  margin-top: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.footer-form input {
  min-width: 0;
  min-height: 48px;
  border: 0;
  padding: 0.75rem 0.9rem;
  color: var(--ink);
  outline: none;
}

.footer-form button {
  min-height: 48px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--green-700);
  cursor: pointer;
}

.footer-form button:hover,
.footer-form button:focus-visible {
  background: var(--green-600);
  outline: none;
}

.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
  color: #fff;
  font-weight: 850;
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
  font-weight: 900;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--green-700);
  outline: none;
}

.footer-bottom {
  max-width: 1160px;
  margin: 3.5rem auto 0;
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.footer-bottom a {
  color: #bfe5c9;
  font-weight: 850;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
  outline: none;
}

@media (max-width: 1120px) {
  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .service-grid,
  .team-grid,
  .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-intro,
  .home-team-snapshot {
    grid-template-columns: 1fr;
  }

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

  .team-grid-detailed {
    grid-template-columns: 1fr;
  }

  .team-card {
    min-height: 430px;
  }

  .team-card-detailed {
    min-height: 0;
  }

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

  .partners,
  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 70px;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: calc(100% + 0.6rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
    padding: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(7, 23, 15, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: 84vh;
    padding-top: 7rem;
  }

  .page-visual {
    min-height: 460px;
    padding-top: calc(5rem + 70px);
  }

  .page-visual h1 {
    font-size: 2.45rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.9rem;
  }

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

  .proof-item {
    min-height: 112px;
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .about-grid,
  .thematic-band,
  .home-focus,
  .home-cta {
    grid-template-columns: 1fr;
  }

  .home-cta {
    justify-items: start;
  }

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

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

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

  .gallery-item.large {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .section,
  .gallery-section,
  .contact-section {
    padding: 4.5rem 5vw;
  }

  .page-main > .section:first-child,
  .page-main > .gallery-section:first-child,
  .page-main > .contact-section:first-child {
    padding-top: calc(4.5rem + 70px);
  }

  .hero {
    min-height: 82vh;
    padding: 7rem 5vw 3.8rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 23, 15, 0.66) 0%, rgba(7, 23, 15, 0.92) 78%),
      linear-gradient(90deg, rgba(7, 23, 15, 0.78), rgba(7, 23, 15, 0.18));
  }

  h1 {
    font-size: 2.42rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-caption {
    left: 5vw;
    right: 5vw;
    bottom: 4.2rem;
    width: auto;
    min-height: 70px;
    font-size: 0.84rem;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-arrow svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .hero-arrow-prev {
    left: 0.7rem;
  }

  .hero-arrow-next {
    right: 0.7rem;
  }

  .hero-dots {
    left: 5vw;
    right: auto;
    bottom: 1.8rem;
  }

  .hero-dots button {
    width: 24px;
  }

  .hero-dots button.is-active,
  .hero-dots button:hover,
  .hero-dots button:focus-visible {
    width: 34px;
  }

  .button {
    padding-inline: 0.9rem;
  }

  .page-visual {
    min-height: 430px;
    padding: calc(4.5rem + 70px) 5vw 3.4rem;
  }

  .page-visual h1 {
    font-size: 2rem;
  }

  .page-visual p:not(.eyebrow) {
    font-size: 1rem;
  }

  .proof-strip,
  .home-card-grid,
  .home-project-grid,
  .service-grid,
  .project-grid,
  .team-grid,
  .news-list,
  .gallery-grid,
  .contact-form,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 3.6rem;
  }

  .footer-bottom {
    margin-top: 2.4rem;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .service-card,
  .home-project-grid article,
  .project-card,
  .news-card {
    min-height: 0;
  }

  .home-intro-media img,
  .home-service-card img,
  .home-project-grid img {
    height: 230px;
  }

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

  .team-mini-grid img {
    height: 260px;
  }

  .home-actions,
  .home-actions .button,
  .home-cta .button {
    width: 100%;
  }

  .project-card img {
    height: 220px;
  }

  .team-card {
    min-height: 0;
    grid-template-rows: 240px 1fr;
  }

  .team-card-detailed {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .team-card img,
  .avatar-placeholder {
    height: 240px;
  }

  .team-card-detailed > img,
  .team-card-detailed > .avatar-placeholder {
    height: 320px;
  }

  .role {
    min-height: 0;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-item {
    min-height: 260px;
  }

  .thematic-band ul,
  .partner-logos {
    grid-template-columns: 1fr;
  }

  .contact-form .button,
  .form-note {
    grid-column: 1 / -1;
  }
}
