:root {
  --color-ink: #141514;
  --color-muted: #62675f;
  --color-soft: #f5f2ea;
  --color-card: #ffffff;
  --color-line: #ded8ca;
  --color-accent: #1f4d3a;
  --color-accent-dark: #143327;
  --color-accent-soft: #dce9df;
  --shadow-card: 0 24px 80px rgba(20, 21, 20, 0.10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-soft);
  color: var(--color-ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 92px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 10;
  transform: translateY(-160%);
  background: var(--color-ink);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(245, 242, 234, 0.92);
  border-bottom: 1px solid rgba(222, 216, 202, 0.85);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-ink);
  font-weight: 760;
  letter-spacing: -0.03em;
  text-decoration: none;
  font-size: 1.02rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--color-muted);
  font-size: 0.94rem;
}

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

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

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.hero {
  padding-top: 112px;
  background:
    radial-gradient(circle at 72% 20%, rgba(31, 77, 58, 0.16), transparent 34%),
    linear-gradient(180deg, #fbfaf6 0%, var(--color-soft) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 58px;
  align-items: center;
}

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

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

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 660px;
  color: var(--color-muted);
  font-size: 1.25rem;
}

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

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

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

.button-primary {
  background: var(--color-accent);
  color: white;
  box-shadow: 0 14px 36px rgba(31, 77, 58, 0.24);
}

.button-primary:hover {
  background: var(--color-accent-dark);
}

.button-secondary {
  background: white;
  border: 1px solid var(--color-line);
  color: var(--color-ink);
}

.hero-card,
.audience-card,
.solution-card,
.team-card,
.contact-card,
.process-steps article {
  background: var(--color-card);
  border: 1px solid rgba(222, 216, 202, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.hero-card {
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 180px;
  height: 180px;
  background: var(--color-accent-soft);
  border-radius: 0 0 0 100%;
  z-index: 0;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.card-topline {
  color: var(--color-accent);
  font-weight: 800;
  margin-bottom: 22px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 18px;
  color: var(--color-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: inset 0 0 0 4px white;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
}

.prose {
  color: var(--color-muted);
  font-size: 1.08rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

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

.section-heading.narrow {
  max-width: 700px;
}

.section-heading p {
  color: var(--color-muted);
}

.audience-section,
.team-section {
  background: #fbfaf6;
  border-block: 1px solid var(--color-line);
}

.audience-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.audience-card,
.solution-card,
.team-card {
  padding: 28px;
}

.audience-card p,
.solution-card p,
.team-card p,
.process-steps p,
.contact-card p {
  color: var(--color-muted);
}

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

.solution-card {
  min-height: 260px;
  box-shadow: none;
}

.solution-number {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--color-accent);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-section {
  background: var(--color-accent-dark);
  color: white;
}

.process-section .eyebrow,
.process-section h2 {
  color: white;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 54px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-steps article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.process-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: white;
  color: var(--color-accent-dark);
  font-weight: 800;
}

.process-steps p {
  color: rgba(255, 255, 255, 0.78);
}

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

.team-card {
  padding: 34px;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  border-radius: 22px;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.role {
  margin-top: -6px;
  color: var(--color-accent) !important;
  font-weight: 760;
}

.contact-section {
  background:
    radial-gradient(circle at 12% 30%, rgba(31, 77, 58, 0.15), transparent 28%),
    var(--color-soft);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 42px;
}

.contact-card p {
  max-width: 680px;
  margin-bottom: 0;
}

.site-footer {
  padding: 52px 0;
  background: var(--color-ink);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 42px;
}

.footer-grid p,
.footer-grid span {
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-brand {
  margin-bottom: 18px;
  color: white;
}

.footer-label {
  margin-bottom: 12px;
  color: white !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .section-pad {
    padding: 72px 0;
  }

  .site-nav {
    display: none;
  }

  .hero-grid,
  .split,
  .process-grid,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid,
  .solutions-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    align-items: start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.5rem);
  }

  .hero-card,
  .contact-card {
    padding: 26px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
