:root {
  --green-950: #10261f;
  --green-900: #18362c;
  --green-800: #21493a;
  --green-700: #2d604d;
  --blue-900: #0c2d47;
  --blue-800: #123d5e;
  --gold-500: #c89b3c;
  --gold-300: #e6c982;
  --cream: #f6f1e7;
  --paper: #fffaf0;
  --white: #ffffff;
  --text: #173129;
  --muted: #6b766f;
  --shadow: 0 20px 60px rgba(12, 45, 71, 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--cream) 0%, #ffffff 42%, var(--cream) 100%);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(246, 241, 231, 0.9);
  border-bottom: 1px solid rgba(24, 54, 44, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue-900);
}

.brand-logo {
  width: 58px;
  height: 58px;
}

.brand-text {
  font-size: 1.08rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: var(--green-900);
  font-size: 0.93rem;
  font-weight: 650;
}

.main-nav a {
  transition: color 160ms ease, transform 160ms ease;
}

.main-nav a:hover {
  color: var(--gold-500);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(24, 54, 44, 0.16);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--green-900);
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: 760px;
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px) clamp(44px, 7vw, 82px);
  overflow: hidden;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-500);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  color: var(--green-950);
  font-size: clamp(2.55rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 32px;
  color: #3f5048;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--green-950);
  box-shadow: 0 14px 30px rgba(200, 155, 60, 0.24);
}

.button-secondary {
  border: 1px solid rgba(24, 54, 44, 0.18);
  background: rgba(255, 255, 255, 0.62);
  color: var(--green-950);
}

.hero-image {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(18, 61, 94, 0.92), rgba(33, 73, 58, 0.88));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.section {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  padding-bottom: 34px;
}

.section-heading h2 {
  max-width: 840px;
  margin-bottom: 0;
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-lead {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(76px, 9vw, 126px);
}

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid rgba(24, 54, 44, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.84);
  box-shadow: 0 16px 34px rgba(16, 38, 31, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 155, 60, 0.42);
  box-shadow: 0 22px 50px rgba(16, 38, 31, 0.12);
}

.card-number {
  color: var(--gold-500);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.service-card h3 {
  margin: auto 0 18px;
  color: var(--blue-900);
  font-size: clamp(1.45rem, 2.1vw, 2.2rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.service-card p {
  margin-bottom: 0;
  color: #45584f;
}

.opportunities {
  background: radial-gradient(circle at top left, rgba(230, 201, 130, 0.18), transparent 32%), linear-gradient(135deg, var(--green-950), var(--blue-900));
  color: var(--white);
}

.section-heading.light h2,
.light-text {
  color: var(--white);
}

.light-text {
  opacity: 0.78;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.news-card {
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(230, 201, 130, 0.17);
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 850;
}

.news-card h3 {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.1;
}

.news-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.method {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.steps article {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-300);
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 10px;
  color: var(--green-950);
  font-size: 1.1rem;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.note {
  max-width: 980px;
  margin: 34px 0 0;
  border-left: 4px solid var(--gold-500);
  padding: 18px 22px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: #fff7e6;
  color: #4d574f;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  gap: 34px;
  padding: 46px clamp(18px, 5vw, 72px);
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.78);
}

.footer-logo {
  width: 76px;
  height: 76px;
  margin-bottom: 12px;
}

.footer-title {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
}

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

.site-footer strong,
.site-footer a {
  color: var(--white);
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 12px;
    font-size: 0.86rem;
  }

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

  .hero {
    min-height: auto;
  }

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

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

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0 0;
  }

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

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.42rem, 13vw, 4.2rem);
  }

  .hero-image,
  .hero-image img {
    min-height: 350px;
  }

  .cards-grid,
  .news-grid,
  .steps,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-card,
  .news-card {
    min-height: auto;
  }
}
