@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --ink: #162126;
  --ink-soft: #3f5248;
  --surface: #edf3ef;
  --surface-strong: #dbe7dc;
  --line: rgba(22, 33, 38, 0.14);
  --accent: #2f6b57;
  --accent-warm: #caa453;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(22, 33, 38, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(237, 243, 239, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.logo {
  height: 58px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar-links a {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
}

.navbar-links a:hover,
.navbar-links a:focus-visible {
  color: var(--accent);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.navbar-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 78vh;
  padding: 120px 28px 72px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

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

.hero-scrim {
  background:
    linear-gradient(
      90deg,
      rgba(22, 33, 38, 0.9) 0%,
      rgba(22, 33, 38, 0.72) 42%,
      rgba(22, 33, 38, 0.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(22, 33, 38, 0.18) 0%,
      rgba(22, 33, 38, 0.56) 100%
    );
}

.hero-content,
.section-inner,
.footer-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.hero-kicker,
.section-kicker,
.service-tag {
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-kicker,
.section-kicker {
  margin-bottom: 16px;
}

.hero h1 {
  max-width: 760px;
  font-size: 4rem;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-lead {
  max-width: 640px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.cta-button,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
}

.cta-button {
  background: var(--accent-warm);
  color: var(--ink);
}

.cta-button:hover,
.cta-button:focus-visible {
  background: #d6b46c;
}

.secondary-link {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

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

.service-overview {
  padding: 72px 28px;
  background: var(--surface);
}

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

.section-heading h2 {
  font-size: 2.4rem;
  line-height: 1.15;
}

.service-grid,
.approach-grid {
  display: grid;
  gap: 24px;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.service-tag {
  color: var(--accent);
  margin-bottom: 10px;
}

.service-card h3,
.approach-item h3 {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.service-card p,
.approach-item p {
  color: var(--ink-soft);
}

.service-card p {
  margin-bottom: 18px;
}

.service-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.service-list li {
  position: relative;
  padding-left: 18px;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-warm);
}

.approach {
  padding: 0 28px 88px;
  background: linear-gradient(180deg, var(--surface), var(--surface-strong));
}

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

.approach-item {
  padding-top: 22px;
  border-top: 1px solid rgba(22, 33, 38, 0.18);
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 20px 28px 28px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-inner p {
  font-weight: 600;
}

.linkedin-icon {
  width: 40px;
  height: 40px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 72vh;
    padding-top: 104px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .service-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .navbar {
    flex-wrap: wrap;
    padding: 14px 20px;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 16px;
  }

  .navbar.active .navbar-links {
    display: flex;
  }

  .hero,
  .service-overview,
  .approach,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    min-height: 70vh;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-lead,
  .service-card p,
  .approach-item p {
    font-size: 1rem;
  }

  .section-heading h2 {
    font-size: 1.75rem;
  }

  .service-card {
    padding: 22px;
  }

  .service-card h3,
  .approach-item h3 {
    font-size: 1.45rem;
  }

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