:root {
  --ink: #17201b;
  --muted: #5e6b63;
  --line: #dbe4dd;
  --paper: #fbfcf9;
  --leaf: #2f6b4f;
  --leaf-dark: #204735;
  --sage: #dfe9df;
  --mint: #edf5ed;
  --gold: #c08d36;
  --sky: #dceaf3;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(24, 42, 32, 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;
  font-size: 16px;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(251, 252, 249, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--leaf);
  border-radius: 8px;
  font-weight: 800;
}

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

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
}

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

.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--sage);
}

.site-nav .nav-action {
  color: var(--white);
  background: var(--leaf-dark);
}

.site-nav .nav-action:hover {
  color: var(--white);
  background: var(--leaf);
}

.site-nav .nav-action[aria-current="page"] {
  color: var(--white);
  background: var(--leaf-dark);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  padding: clamp(80px, 12vw, 150px) clamp(20px, 5vw, 72px) 72px;
  overflow: hidden;
}

.page-hero {
  padding: clamp(88px, 12vw, 150px) clamp(20px, 5vw, 72px) clamp(58px, 8vw, 90px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 36, 25, 0.92), rgba(32, 71, 53, 0.78)),
    url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
}

.page-hero p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 28, 20, 0.84), rgba(14, 28, 20, 0.55) 48%, rgba(14, 28, 20, 0.18)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  color: var(--white);
}

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

.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  font-weight: 800;
  line-height: 1.05;
}

.detail-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  padding-top: 1px;
  padding-bottom: 1px;
}

.detail-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 56px);
  padding: clamp(34px, 6vw, 70px) clamp(20px, 5vw, 72px);
  background: var(--white);
}

.detail-row > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--leaf-dark);
  background: var(--sage);
  border-radius: 8px;
  font-weight: 800;
}

.detail-row h2,
.profile-main h2,
.profile-aside h2,
.contact-card h2,
.contact-prompts h2,
.article-card h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.12;
}

.detail-row p,
.profile-main p,
.contact-card p,
.article-card p {
  max-width: 850px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.detail-row ul,
.profile-aside ul,
.contact-prompts ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.profile-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(24px, 6vw, 84px);
  background: var(--white);
}

.profile-main p + p {
  margin-top: 14px;
}

.profile-aside,
.contact-card,
.contact-prompts,
.article-card,
.value-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.profile-aside {
  background: var(--mint);
}

.values {
  background: var(--sky);
}

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

.value-grid article {
  background: rgba(255, 255, 255, 0.74);
}

.value-grid h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.value-grid p {
  margin: 0;
  color: var(--muted);
}

.article-grid {
  background: var(--mint);
}

.article-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: flex-start;
}

.article-card .text-link {
  margin-top: auto;
  padding-top: 24px;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(16, 36, 25, 0.92), rgba(47, 107, 79, 0.72)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
}

.contact-layout {
  align-items: start;
  background: var(--paper);
}

.contact-card .button {
  width: auto;
  margin-top: 24px;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2.55rem, 7vw, 5.7rem);
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
}

.button.primary {
  color: var(--white);
  background: var(--leaf);
}

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

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

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.section {
  padding: clamp(62px, 9vw, 108px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(24px, 6vw, 90px);
  align-items: start;
  background: var(--white);
}

.section h2,
.contact h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.intro p:last-child,
.about-copy p,
.insights-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.services {
  background: var(--mint);
}

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

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

.service-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--leaf-dark);
  background: var(--sage);
  border-radius: 8px;
  font-weight: 800;
}

.service-card h3 {
  margin: 48px 0 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.ai-readiness {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 32, 27, 0.94), rgba(32, 71, 53, 0.88)),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
}

.ai-readiness .eyebrow {
  color: #e6be73;
}

.ai-copy p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.ai-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ai-checklist span {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  background: var(--white);
}

.about-copy p {
  margin-top: 22px;
}

.proof-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-panel div {
  padding: 24px;
  background: var(--paper);
}

.proof-panel strong,
.proof-panel span {
  display: block;
}

.proof-panel strong {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.proof-panel span {
  color: var(--muted);
}

.audience {
  background: var(--sky);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.audience-list span {
  min-height: 94px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 32, 27, 0.08);
  border-radius: 8px;
  font-weight: 800;
}

.insights {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--paper);
}

.insights-copy {
  max-width: 720px;
}

.insights-copy p {
  margin-top: 18px;
}

.text-link {
  flex: 0 0 auto;
  color: var(--leaf-dark);
  font-weight: 800;
  border-bottom: 2px solid var(--gold);
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(54px, 8vw, 84px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--leaf-dark);
}

.contact .eyebrow {
  color: #e6be73;
}

.contact .button.primary {
  flex: 0 0 auto;
  background: var(--gold);
}

.contact .button.primary:hover {
  background: #a67525;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

.site-footer a {
  color: var(--leaf-dark);
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header,
  .site-nav,
  .intro,
  .about,
  .ai-readiness,
  .profile-layout,
  .contact-layout,
  .insights,
  .contact,
  .site-footer {
    align-items: flex-start;
  }

  .site-header,
  .insights,
  .contact,
  .site-footer {
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 620px;
  }

  .intro,
  .about,
  .ai-readiness,
  .profile-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .audience-list,
  .ai-checklist,
  .value-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-top: 14px;
  }

  .brand {
    font-size: 0.98rem;
  }

  .site-nav {
    gap: 4px;
    font-size: 0.88rem;
  }

  .site-nav a {
    padding: 8px 9px;
  }

  .hero {
    min-height: 670px;
    padding-top: 96px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(14, 28, 20, 0.7), rgba(14, 28, 20, 0.86)),
      url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1200&q=80");
    background-position: center;
  }

  .hero-actions,
  .contact {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .audience-list,
  .ai-checklist,
  .value-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .detail-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-card h3 {
    margin-top: 34px;
  }
}
