:root {
  --green: #58bb64;
  --green-dark: #2f7f3a;
  --red: #ef4149;
  --ink: #17211b;
  --muted: #5b665f;
  --line: #dfe8e1;
  --soft: #f6f8f5;
  --white: #ffffff;
  font-family: Inter, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(223, 232, 225, 0.82);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 184px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #253229;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
}

.button:hover {
  background: var(--red);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 74px;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(46px, 7vw, 86px);
  max-width: 820px;
}

h2 {
  font-size: clamp(34px, 4.5vw, 58px);
}

h3 {
  font-size: 26px;
  letter-spacing: -0.03em;
}

.lead {
  color: var(--muted);
  font-size: clamp(19px, 2vw, 23px);
  max-width: 760px;
  margin: 24px 0 0;
}

.hero-card {
  overflow: hidden;
  border-radius: 34px;
  background: var(--soft);
  box-shadow: 0 24px 70px rgba(32, 54, 39, 0.14);
}

.hero-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.section {
  padding: 84px 0;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

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

.card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(42, 63, 47, 0.08);
}

.card img {
  width: 100%;
  height: 230px;
  margin: 0 0 24px;
  border-radius: 22px;
  object-fit: cover;
}

.card p,
.copy p {
  color: var(--muted);
  margin: 14px 0 0;
}

.locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.location {
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
}

.footer {
  padding: 42px 0;
  background: #17211b;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer a {
  color: #fff;
}

.page-hero {
  padding: 78px 0 50px;
  background: linear-gradient(135deg, #f7fbf7, #ffffff);
  border-bottom: 1px solid var(--line);
}

.content {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.content p,
.content li {
  color: var(--muted);
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    padding: 18px 0;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 12px;
  }

  .hero,
  .split,
  .grid,
  .locations {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-card img {
    height: 420px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
