:root {
  --ink: #101915;
  --muted: #5d6862;
  --paper: #f6f8f4;
  --soft: #eaf1ec;
  --white: #ffffff;
  --pine: #0f3f32;
  --green: #176b54;
  --green-soft: #dceee7;
  --amber: #f2b945;
  --amber-soft: #fff3cf;
  --rust: #98402f;
  --blue-soft: #e7f0fb;
  --line: rgba(16, 25, 21, 0.14);
  --shadow: 0 24px 70px rgba(16, 25, 21, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 20;
  background: var(--amber);
  color: var(--ink);
  padding: 10px 12px;
  text-decoration: none;
}

.skip-link:focus {
  top: 14px;
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  background: var(--pine);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(15, 63, 50, 0.18);
}

.brand-mark svg {
  width: 46px;
  height: 46px;
}

.brand-mark rect {
  fill: var(--pine);
}

.brand-mark path:nth-of-type(1) {
  fill: var(--white);
}

.brand-mark path:nth-of-type(2),
.brand-mark path:nth-of-type(3),
.brand-mark path:nth-of-type(4),
.brand-mark path:nth-of-type(5) {
  fill: none;
  stroke-linecap: round;
}

.brand-mark path:nth-of-type(2) {
  stroke: var(--green);
  stroke-width: 4;
}

.brand-mark path:nth-of-type(3),
.brand-mark path:nth-of-type(4) {
  stroke: var(--amber);
  stroke-width: 4;
}

.brand-mark path:nth-of-type(5) {
  stroke: var(--pine);
  stroke-width: 3;
  stroke-linejoin: round;
}

.brand-mark circle {
  fill: var(--amber);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.08;
}

.brand-line {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

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

.nav-links a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--rust);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta:hover {
  color: var(--ink);
  background: #e7ac32;
}

.hero {
  padding: 46px 0 58px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbf7 58%, #edf5ef 100%);
  border-bottom: 1px solid var(--line);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  gap: 44px;
  align-items: center;
}

.hero-copy-block {
  max-width: 720px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 22px;
}

.hero-actions,
.cta-strip-inner,
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.button-primary {
  color: var(--ink);
  background: var(--amber);
}

.button-primary:hover {
  background: #e7ac32;
}

.button-secondary {
  color: var(--pine);
  border-color: rgba(23, 107, 84, 0.32);
  background: var(--white);
}

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

.hero-proof-list {
  display: grid;
  gap: 11px;
  max-width: 650px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--pine);
  font-weight: 900;
  list-style: none;
}

.hero-proof-list li {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding-left: 0;
  line-height: 1.35;
}

.hero-proof-list li::before {
  content: "";
  margin-top: 3px;
  width: 11px;
  height: 11px;
  background: var(--amber);
  border: 3px solid var(--pine);
  border-radius: 50%;
}

.hero-proof {
  display: grid;
  gap: 14px;
  align-self: center;
}

.stat-card {
  padding: 24px;
  color: var(--white);
  background: var(--pine);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.stat-label {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-main {
  padding: 22px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 10px;
}

.stat-main span {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(66px, 8vw, 94px);
  font-weight: 900;
  line-height: 0.9;
}

.stat-main p {
  margin-bottom: 0;
  max-width: 330px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.stat-mini-grid {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.stat-mini-grid div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-mini-grid strong {
  color: var(--amber);
  font-size: 30px;
  line-height: 1;
}

.stat-mini-grid span {
  min-width: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.stat-source {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.stat-source a {
  color: var(--amber);
  font-weight: 900;
  text-decoration: none;
}

.hero-client-card {
  display: block;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(16, 25, 21, 0.1);
  text-decoration: none;
}

.hero-client-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
  border-bottom: 1px solid var(--line);
}

.hero-client-card span {
  display: block;
  padding: 12px 14px;
  color: var(--pine);
  font-size: 14px;
  font-weight: 900;
}

.benefit-strip {
  color: var(--white);
  background: var(--pine);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.benefit-grid article {
  min-height: 132px;
  padding: 28px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.benefit-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.benefit-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 22px;
}

.benefit-grid span {
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 86px 0;
}

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

.section-work {
  background: var(--white);
}

.page-hero {
  padding: 70px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbf7 60%, #edf5ef 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.page-hero-copy {
  max-width: 760px;
}

.page-hero-copy h1 {
  max-width: 760px;
}

.service-summary-card {
  padding: 24px;
  color: var(--white);
  background: var(--pine);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.service-summary-card h2 {
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 22px;
  line-height: 1.15;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.check-list li::before {
  content: "";
  width: 11px;
  height: 11px;
  margin-top: 6px;
  background: var(--amber);
  border: 3px solid currentColor;
  border-radius: 50%;
}

.service-summary-card .check-list li {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.service-summary-card .check-list li::before {
  color: var(--white);
}

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

.service-grid .service-card {
  min-height: 220px;
}

.seo-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1fr);
  gap: 48px;
  align-items: start;
}

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

.proof-metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.proof-metric strong {
  display: block;
  margin-bottom: 5px;
  color: var(--pine);
  font-size: 30px;
  line-height: 1;
}

.proof-metric span {
  color: var(--muted);
  font-weight: 800;
}

.proof-image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
  border-bottom: 1px solid var(--line);
}

.proof-image-card > div {
  padding: 22px;
}

.plain-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding: 16px 18px;
  border-left: 5px solid var(--amber);
  border-radius: 0 8px 8px 0;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 25, 21, 0.07);
}

.proof-layout,
.split-heading,
.faq-layout,
.work-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: start;
}

.large-copy,
.split-heading > p,
.faq-layout > div:first-child p {
  color: var(--muted);
  font-size: 19px;
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list div {
  padding: 22px;
  border-left: 5px solid var(--amber);
  border-radius: 0 8px 8px 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-list strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.proof-list p,
.service-card p,
.case-body p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.work-gallery {
  display: grid;
  gap: 16px;
}

.work-gallery a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--blue-soft);
  box-shadow: var(--shadow);
}

.work-gallery a:nth-child(2) {
  transform: none;
}

.work-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9.5;
  object-fit: cover;
  object-position: center top;
}

.mini-proof-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.mini-proof-grid span {
  padding: 9px 11px;
  color: var(--pine);
  background: var(--green-soft);
  border: 1px solid rgba(23, 107, 84, 0.22);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 900;
}

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

.service-card,
.case-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(16, 25, 21, 0.08);
}

.service-card {
  padding: 24px;
}

.card-kicker {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--rust);
  font-size: 14px;
  font-weight: 900;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.case-card {
  overflow: hidden;
}

.case-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
  border-bottom: 1px solid var(--line);
  background: var(--blue-soft);
}

.case-body {
  padding: 24px;
}

.text-link {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.cta-strip {
  padding: 48px 0;
  color: var(--white);
  background: var(--green);
}

.cta-strip h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 42px);
}

.cta-strip .section-label {
  color: var(--amber-soft);
}

.cta-strip-inner {
  justify-content: space-between;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 19px;
  font-weight: 900;
}

summary::marker {
  color: var(--rust);
}

details p {
  margin-bottom: 22px;
}

.site-footer {
  padding: 62px 0 28px;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 34px;
}

.footer-brand {
  margin-bottom: 16px;
  color: var(--ink);
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 15px;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.footer-bottom {
  justify-content: space-between;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1020px) {
  .nav-wrap {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

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

  .nav-cta {
    width: 100%;
  }

  .hero-layout,
  .page-hero-layout,
  .benefit-grid,
  .card-grid,
  .service-grid,
  .case-grid,
  .proof-layout,
  .split-heading,
  .faq-layout,
  .work-layout,
  .seo-proof-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article,
  .benefit-grid article:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .work-gallery a:nth-child(2) {
    transform: none;
  }

  .proof-layout,
  .split-heading,
  .faq-layout,
  .work-layout {
    gap: 24px;
  }
}

@media (max-width: 560px) {
  body {
    overflow-x: hidden;
  }

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

  .brand-name {
    font-size: 17px;
  }

  .brand-line {
    font-size: 11px;
  }

  h1 {
    max-width: 360px;
    font-size: 40px;
    line-height: 1.02;
  }

  h2 {
    font-size: 31px;
  }

  .hero {
    padding: 30px 0 46px;
  }

  .page-hero {
    padding: 42px 0 54px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-proof,
  .stat-card,
  .hero-client-card {
    min-width: 0;
  }

  .stat-card {
    padding: 18px;
  }

  .stat-main {
    padding: 20px;
  }

  .stat-main span {
    font-size: 64px;
  }

  .stat-mini-grid div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
  }

  .large-copy,
  .split-heading > p {
    font-size: 17px;
  }

  .proof-metric-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .section {
    padding: 62px 0;
  }

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