:root {
  --green: #0c4234;
  --green-2: #155d4a;
  --red: #b51f24;
  --gold: #d8ad27;
  --ink: #17201d;
  --muted: #64706b;
  --line: #dbe3df;
  --paper: #f8faf8;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(16, 32, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(248, 250, 248, 0.86);
  border-bottom: 1px solid rgba(219, 227, 223, 0.7);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 250, 248, 0.96);
  box-shadow: 0 8px 32px rgba(16, 32, 28, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: contain;
  background: var(--white);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #293833;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--red);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 110px clamp(20px, 6vw, 72px) 48px;
  color: var(--white);
}

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

.hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 34, 28, 0.88) 0%, rgba(7, 34, 28, 0.62) 42%, rgba(7, 34, 28, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 34, 28, 0.12) 0%, rgba(7, 34, 28, 0.72) 100%);
}

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

.hero-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  padding: 8px;
  margin-bottom: 26px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
}

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

.hero .eyebrow {
  color: #f0ca48;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero p {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 40px rgba(181, 31, 36, 0.24);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 120px) 0;
}

.section-copy {
  max-width: 710px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}

.section-copy p,
.region p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.founders-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.founders-panel {
  padding: 28px;
}

.founders-logo {
  display: grid;
  place-items: center;
  min-height: 250px;
  margin-bottom: 24px;
  background: #eef4f1;
  border-radius: 8px;
}

.founders-logo img {
  width: min(220px, 80%);
}

.founders-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-weight: 800;
}

.founders-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1.2;
}

.founders-panel p,
.problem-grid p,
.reason-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.problem-grid,
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.problem-grid article,
.reason-grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 6px;
  color: var(--green);
  background: #eef4f1;
}

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

.work {
  width: 100%;
  max-width: none;
  padding-right: clamp(20px, 6vw, 72px);
  padding-left: clamp(20px, 6vw, 72px);
  background: var(--green);
}

.work .section-heading {
  width: min(1160px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.work .eyebrow {
  color: #f0ca48;
}

.work h2 {
  color: var(--white);
}

.work-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1160px, 100%);
  margin: 0 auto;
  gap: 12px;
}

.work-list div {
  display: flex;
  min-height: 88px;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 650;
}

.work-list span {
  color: #f0ca48;
  font-weight: 900;
}

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

.reason-grid article {
  min-height: 180px;
}

.region {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
}

.contact-copy blockquote {
  margin: 30px 0 0;
  padding-left: 20px;
  color: var(--green);
  border-left: 4px solid var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-panel {
  padding: 28px;
}

.contact-panel img {
  width: 150px;
  margin-bottom: 24px;
}

.contact-panel dl,
.contact-panel dd {
  margin: 0;
}

.contact-panel dl {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.contact-panel div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-panel dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel dd {
  color: var(--green);
  font-size: 1.08rem;
  font-weight: 800;
}

.contact-panel a {
  text-decoration: none;
}

.full {
  width: 100%;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.74);
  background: #10201c;
  font-size: 0.94rem;
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 980px) {
  .intro,
  .region,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

  .contact-panel {
    max-width: 520px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand span {
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 82svh;
    padding-top: 112px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 34, 28, 0.76) 0%, rgba(7, 34, 28, 0.84) 100%),
      linear-gradient(90deg, rgba(7, 34, 28, 0.7) 0%, rgba(7, 34, 28, 0.18) 100%);
  }

  .hero-logo {
    width: 76px;
    height: 76px;
  }

  .section {
    width: min(100% - 32px, 1160px);
  }

  .problem-grid,
  .reason-grid,
  .work-list {
    grid-template-columns: 1fr;
  }

  .problem-grid article,
  .reason-grid article,
  .work-list div {
    min-height: auto;
  }

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