@font-face {
  font-family: "Poppins";
  src: url("poppins-300.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("poppins-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("poppins-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("poppins-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --green: #44933f;
  --green-dark: #327832;
  --ink: #101010;
  --muted: #686868;
  --line: #303030;
  --page-padding: clamp(1.5rem, 4vw, 4rem);
  --max-width: 1500px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--green-dark);
}

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  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 {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: #fff;
  background: #111;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--page-padding);
}

.site-header {
  width: min(100%, var(--max-width));
  min-height: 184px;
  margin-inline: auto;
  padding: 28px var(--page-padding) 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.brand {
  display: block;
  width: 180px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding-top: 38px;
}

.site-nav a {
  color: var(--ink);
  font-weight: 300;
  text-decoration: none;
}

.linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.3rem;
  color: #111 !important;
  font-weight: 700 !important;
  line-height: 1;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 8px;
  border: 0;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #111;
}

.hero {
  min-height: 380px;
  display: flex;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 55px;
}

.hero h1,
.about-intro h1,
.contact-layout h1,
.error-page h1 {
  margin: 0;
  max-width: 1120px;
  font-size: clamp(2.3rem, 4.65vw, 4.55rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.image-strip {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.08fr 0.75fr 1.17fr;
  height: clamp(170px, 22vw, 330px);
  overflow: hidden;
}

.image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-strip img:nth-child(1) {
  object-position: 50% 50%;
}

.image-strip img:nth-child(2) {
  object-position: 50% 55%;
}

.image-strip img:nth-child(3) {
  object-position: 50% 55%;
}

.content-section {
  padding-top: clamp(4.5rem, 8vw, 8.5rem);
  padding-bottom: clamp(4.5rem, 8vw, 8.5rem);
}

.content-section h2,
.site-footer h2 {
  margin: 0 0 1.9rem;
  color: var(--green);
  font-size: clamp(2rem, 3.1vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.content-section h3 {
  margin: 2.2rem 0 1.7rem;
  color: var(--green);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 400;
  line-height: 1.35;
}

.content-section p,
.about-copy p,
.contact-layout p,
.legal-page p,
.legal-page li {
  margin: 0 0 1.2rem;
}

.section-intro > p {
  max-width: 1220px;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
}

.concept-grid-titled article h3 {
  min-height: 4.5rem;
  margin-top: 1.5rem;
}

.ruled {
  position: relative;
}

.ruled::before,
.ruled::after {
  content: "";
  position: absolute;
  left: var(--page-padding);
  right: var(--page-padding);
  height: 1px;
  background: var(--line);
}

.ruled::before { top: 0; }
.ruled::after { bottom: 0; }

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 1fr);
  gap: clamp(3rem, 8vw, 10rem);
}

.split-copy {
  max-width: 690px;
}

.split-action {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2.25rem;
  border: 1px solid var(--green);
  border-radius: 0;
  color: #fff;
  background: var(--green);
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease;
}

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

.work-together {
  padding-top: clamp(4rem, 6vw, 6.5rem);
  padding-bottom: clamp(4rem, 6vw, 6.5rem);
}

.about-intro {
  padding-top: 62px;
  padding-bottom: 110px;
}

.about-intro h1 {
  max-width: none;
  font-size: clamp(2.2rem, 3.55vw, 2.65rem);
  white-space: nowrap;
}

.about-copy {
  margin-top: 95px;
}

.team {
  min-height: 560px;
  padding-bottom: 115px;
}

.team-member {
  width: min(320px, 100%);
  margin: 0;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.team-member figcaption {
  margin-top: 0.55rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(480px, 1.15fr);
  gap: clamp(4rem, 10vw, 12rem);
  padding-top: 62px;
  padding-bottom: 95px;
}

.contact-layout h1 {
  margin-bottom: 2rem;
  color: var(--green);
  font-size: clamp(2.25rem, 3.1vw, 3.1rem);
}

.contact-details a {
  color: var(--green);
}

.contact-form {
  display: grid;
  gap: 1.35rem;
}

.contact-form label,
.field-label {
  display: grid;
  gap: 0.65rem;
  color: #222;
}

.contact-form label span {
  color: var(--muted);
  font-size: 0.92em;
}

.name-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.4rem 0;
  border: 0;
  border-bottom: 1px solid #555;
  border-radius: 0;
  outline: 0;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--green);
  box-shadow: 0 1px 0 var(--green);
}

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

.contact-form .button {
  justify-self: start;
  margin-top: -0.25rem;
}

.field-error,
.form-notice.error {
  color: #a12626;
}

.form-notice {
  margin-bottom: 1.6rem;
  padding: 1.2rem 1.4rem;
  border-left: 4px solid var(--green);
  background: #f3f8f2;
}

.form-notice h2,
.form-notice p {
  margin: 0;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
}

.legal-page,
.error-page {
  padding-top: 58px;
  padding-bottom: 110px;
}

.legal-page > h1 {
  margin: 0 0 4.5rem;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.legal-content {
  max-width: 980px;
}

.legal-content h2 {
  margin: 2.6rem 0 1rem;
  color: var(--green);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.35;
}

.legal-content h3 {
  margin: 2rem 0 0.8rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.legal-content ul {
  margin: 0.5rem 0 1.6rem;
  padding-left: 1.4rem;
}

.eyebrow {
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.error-page h1 {
  margin-bottom: 1.5rem;
}

.error-page .button {
  margin-top: 1.5rem;
}

.site-footer {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding: clamp(5rem, 10vw, 10rem) var(--page-padding) 4rem;
}

.site-footer h2 {
  margin-bottom: 2.6rem;
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr 0.95fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.footer-grid address {
  font-style: normal;
}

.footer-links {
  display: grid;
  justify-items: start;
  gap: 0.6rem;
}

.plain-link {
  color: var(--ink);
  text-decoration: none;
}

.footer-linkedin {
  margin-top: 0.15rem;
  font-size: 1.25rem;
}

.cookie-banner {
  position: fixed;
  z-index: 900;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.35rem;
  color: #fff;
  background: #050505;
  font-size: 0.82rem;
  line-height: 1.5;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex: none;
}

.cookie-actions button {
  min-width: 76px;
  padding: 0.65rem 0.9rem;
  border: 0;
  color: #fff;
  background: var(--green);
  cursor: pointer;
}

.cookie-actions button:hover,
.cookie-actions button:focus-visible {
  background: var(--green-dark);
}

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

  .hero {
    min-height: 330px;
  }

  .hero h1 br {
    display: none;
  }

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

  .concept-grid-titled article h3 {
    min-height: auto;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-intro h1 {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
    line-height: 1.65;
  }

  .site-header {
    min-height: 112px;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .brand {
    width: 130px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    z-index: 50;
    top: 96px;
    right: 0;
    left: 0;
    display: none;
    padding: 1.5rem var(--page-padding);
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background: #fff;
  }

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

  .hero {
    min-height: 310px;
    padding-top: 30px;
    padding-bottom: 48px;
  }

  .hero h1,
  .about-intro h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .image-strip {
    grid-template-columns: 1fr;
    height: auto;
  }

  .image-strip img {
    height: 185px;
  }

  .concept-grid,
  .split-section,
  .footer-grid,
  .name-fields {
    grid-template-columns: 1fr;
  }

  .split-action {
    justify-content: flex-start;
  }

  .concept-grid {
    gap: 0.5rem;
  }

  .about-intro {
    padding-top: 42px;
    padding-bottom: 80px;
  }

  .about-copy {
    margin-top: 55px;
  }

  .team {
    min-height: 0;
    padding-bottom: 70px;
  }

  .contact-layout,
  .legal-page {
    padding-top: 38px;
    padding-bottom: 75px;
  }

  .legal-page > h1 {
    margin-bottom: 3rem;
  }

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

  .footer-grid {
    gap: 2.2rem;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-actions {
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
