:root {
  --bg: #f8f6f2;
  --surface: #ffffff;
  --surface-strong: #f1f5ef;
  --text: #171514;
  --muted: #645f58;
  --brand-green: #4f7d53;
  --brand-green-strong: #365f3f;
  --brand-green-dark: #294d32;
  --brand-green-soft: #edf4ed;
  --brand-green-border: #cad9ca;
  --brand-green-faint: rgba(79, 125, 83, 0.1);
  --border: #d8dfd5;
  --accent: var(--brand-green-strong);
  --accent-strong: var(--brand-green-dark);
  --accent-soft: var(--brand-green-soft);
  --success: var(--brand-green);
  --shadow-soft: 0 14px 42px rgba(54, 95, 63, 0.1);
  --shadow-card: 0 9px 26px rgba(54, 95, 63, 0.06);
  --radius: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
  --section-pad: clamp(2rem, 4vw, 3.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 82% -4%, rgba(79, 125, 83, 0.13) 0%, transparent 28%),
    var(--bg);
  line-height: 1.6;
}

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

a {
  color: #332d27;
  text-decoration: none;
}

a:hover {
  color: var(--brand-green-strong);
}

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-pad);
}

.section-tight {
  padding-block: clamp(1.35rem, 2.7vw, 2.25rem);
}

.surface {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.16rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.2;
}

.ui-arrow-icon {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.12em;
}

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

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 9px 28px rgba(54, 95, 63, 0.22);
}

.btn-primary:hover {
  background: var(--accent-strong);
  color: #fff;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  color: var(--brand-green-strong);
  border-color: var(--brand-green-border);
}

.btn-text {
  padding: 0;
  border: 0;
  border-radius: 0;
  font-weight: 700;
  color: var(--accent);
}

.page-title {
  margin: 0 0 0.9rem;
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(2.45rem, 5.4vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.section-title {
  margin: 0 0 1rem;
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.lede {
  margin: 0;
  max-width: 78ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}

.kicker {
  margin: 0 0 0.9rem;
  color: var(--brand-green-strong);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: color-mix(in srgb, var(--bg) 91%, var(--brand-green-soft) 9%);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.brand {
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  color: var(--text);
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, var(--brand-green), var(--brand-green-strong));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.25rem;
  border-radius: 0;
  color: #3d3831;
  font-weight: 600;
  font-size: 0.82rem;
  border-bottom: 1px solid transparent;
}

.nav-links a[aria-current="page"] {
  color: var(--brand-green-strong);
  border-bottom-color: var(--brand-green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--brand-green-border);
  background: var(--surface);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  color: var(--text);
}

.hero {
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.3fr 1fr;
  align-items: stretch;
}

.hero-copy {
  padding: clamp(2rem, 3vw, 2.5rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-soft);
}

.hero-copy p {
  max-width: 64ch;
}

.quick-points {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: #3e4f40;
}

.quick-points li + li {
  margin-top: 0.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.hero-aside {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(175deg, #fbfdfb 0%, var(--brand-green-soft) 100%);
}

body[data-page="home"] .hero {
  padding-top: clamp(2.1rem, 5vw, 3.5rem);
  padding-bottom: clamp(0.9rem, 2.2vw, 1.5rem);
}

body[data-page="home"] .hero-layout {
  grid-template-columns: 1fr;
}

body[data-page="home"] .section {
  padding-block: clamp(1.7rem, 4vw, 2.6rem);
}

body[data-page="home"] .section-tight {
  padding-block: clamp(1rem, 2.4vw, 1.6rem);
}

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

.stat-list li + li {
  border-top: 1px solid var(--border);
  padding-top: 0.95rem;
  margin-top: 0.95rem;
}

.stat-value {
  display: block;
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.cred-item {
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
}

.cred-item h3 {
  margin: 0;
  font-size: 1rem;
}

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

.proof-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #ffffff 0%, #f5f8f4 100%);
  padding: 1.15rem;
}

.proof-number {
  margin: 0;
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
}

.proof-label {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.card {
  padding: 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.card h3,
.card h4 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.card p {
  margin-top: 0;
}

.meta-list {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.meta-list strong {
  color: var(--brand-green-strong);
}

.case-kpi {
  margin: 0;
  font-weight: 700;
  color: var(--brand-green-strong);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.tag-list li {
  font-size: 0.84rem;
  color: var(--brand-green-strong);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 0.35rem 0.64rem;
  border: 1px solid var(--brand-green-border);
}

.split {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.1fr 0.9fr;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
}

.timeline-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.timeline-meta {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.list {
  margin: 0;
  padding-left: 1.1rem;
  color: #3e4f40;
}

.list li::marker,
.quick-points li::marker,
.partner-content li::marker {
  color: var(--brand-green);
}

.list li + li {
  margin-top: 0.4rem;
}

body[data-page="work"] .work-intro {
  padding-bottom: 1.1rem;
}

body[data-page="work"] .work-tabs-wrap {
  padding-top: 0.8rem;
}

body[data-page="contact"] .section {
  padding-block: clamp(1.6rem, 3.2vw, 2.3rem);
}

body[data-page="contact"] .section-tight {
  padding-block: clamp(0.85rem, 1.8vw, 1.3rem);
}

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

.hiring-card {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.hiring-card h3 {
  margin: 0 0 0.7rem;
}

.case-study-grid {
  display: grid;
  gap: 1.05rem;
}

.case-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.case-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.case-detail {
  margin-top: 0.85rem;
}

.case-detail strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-green-strong);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.skills-grid li {
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  background: var(--surface-strong);
  border: 1px solid var(--brand-green-border);
  font-weight: 600;
  color: var(--brand-green-strong);
}

.cta-panel {
  padding: clamp(1.8rem, 3vw, 2.3rem);
  border-radius: var(--radius);
  border: 1px solid var(--brand-green-border);
  background: linear-gradient(180deg, #f3f8f2 0%, var(--brand-green-soft) 100%);
}

.cta-panel p {
  margin: 0.35rem 0 0;
}

.form-wrap {
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 700;
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  appearance: none;
  width: 100%;
  padding: 0.78rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--brand-green-border);
  background: #fff;
  color: var(--text);
  font: inherit;
}

.field textarea {
  resize: vertical;
  min-height: 150px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(79, 125, 83, 0.18);
  border-color: var(--brand-green);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

[data-form-notice] {
  min-height: 1.35rem;
  margin: 0;
  color: var(--brand-green-strong);
  font-weight: 700;
}

[data-form-notice][data-state="success"] {
  color: var(--brand-green-strong);
}

[data-form-notice][data-state="error"] {
  color: #9b2f1f;
}

.form-wrap--success {
  display: grid;
  min-height: 360px;
  place-items: center;
  text-align: center;
}

.form-success {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  max-width: 430px;
  outline: none;
}

.form-success p {
  margin: 0;
  color: var(--muted);
}

.form-success-check {
  position: relative;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 14px 32px rgba(79, 125, 83, 0.24);
  transform: scale(0.72);
  animation: success-pop 420ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.form-success-check::before {
  position: absolute;
  inset: -7px;
  content: "";
  border: 2px solid rgba(79, 125, 83, 0.28);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  animation: success-ring 620ms ease-out 110ms forwards;
}

.form-success-check span {
  width: 32px;
  height: 18px;
  border-bottom: 5px solid #fff;
  border-left: 5px solid #fff;
  opacity: 0;
  transform: rotate(-45deg) scale(0.76);
  transform-origin: center;
  animation: success-check 260ms ease-out 260ms forwards;
}

@keyframes success-pop {
  0% {
    transform: scale(0.72);
  }

  72% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes success-ring {
  0% {
    opacity: 0.75;
    transform: scale(0.8);
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes success-check {
  0% {
    opacity: 0;
    transform: rotate(-45deg) scale(0.76);
  }

  100% {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
  }
}

.footer {
  margin-top: clamp(1.75rem, 3vw, 2.75rem);
  padding-block: 2rem 1.1rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #f3f6f1 0%, #edf2eb 100%);
}

.footer-grid {
  display: grid;
  gap: 1.4rem 1.8rem;
  grid-template-columns: 1.3fr 1fr 1fr;
}

.footer h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.footer-brand {
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.footer-subhead {
  margin: 0 0 0.6rem;
  color: var(--brand-green-strong);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  color: #3a342d;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--brand-green-strong);
}

.footer-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.footer-policy {
  font-size: 0.88rem;
  color: #6a635a;
}

.home-main {
  overflow: clip;
}

.home-section {
  padding-block: clamp(2.1rem, 3.8vw, 3.25rem);
}

.home-hero {
  padding-top: clamp(2rem, 4vw, 3.25rem);
  padding-bottom: clamp(1.15rem, 2.2vw, 1.75rem);
}

.home-hero-layout {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  gap: clamp(1.6rem, 3vw, 2.4rem);
  align-items: center;
}

.home-hero-copy {
  position: relative;
  z-index: 1;
}

.home-title {
  margin: 0;
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-size: clamp(2.45rem, 5.4vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 11ch;
}

.home-lede {
  margin: 1.2rem 0 0;
  max-width: 58ch;
  color: #4f4a43;
  font-size: 1.03rem;
}

body[data-page="home"] .hero-actions {
  margin-top: 1.55rem;
}

.home-hero-visual {
  position: relative;
  aspect-ratio: 1448 / 1086;
  border: 1px solid var(--brand-green-border);
  border-radius: 24px;
  background: #f7f3ec;
  box-shadow: 0 22px 55px rgba(54, 95, 63, 0.09);
  overflow: hidden;
}

.home-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-proof-bar {
  margin-top: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.hero-proof-bar article {
  padding: 1.25rem 1.3rem;
}

.hero-proof-bar article + article {
  border-left: 1px solid var(--brand-green-border);
}

.proof-eyebrow {
  margin: 0;
  color: var(--brand-green-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-value {
  margin: 0.4rem 0 0;
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-size: clamp(1.44rem, 2vw, 1.88rem);
  line-height: 1.12;
}

.proof-caption {
  margin: 0.18rem 0 0;
  color: #5f574d;
  font-size: 0.88rem;
}

.home-trust {
  padding-top: clamp(1.5rem, 2.5vw, 2.1rem);
  padding-bottom: clamp(1.7rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--brand-green-border);
}

.trust-label {
  margin: 0;
  text-align: center;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--brand-green-strong);
}

.trust-logos {
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.trust-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.56rem;
  text-align: center;
  font-size: clamp(0.86rem, 1.2vw, 1.04rem);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 700;
  color: #2d2823;
  padding: 0.62rem 0.45rem;
}

.trust-logos li + li {
  border-left: 1px solid var(--brand-green-border);
}

.trust-logos img {
  height: clamp(1.96rem, 2.8vw, 2.4rem);
  width: auto;
  max-width: 172px;
  object-fit: contain;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--brand-green-strong);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
}

.case-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.home-case-grid .work-case-media {
  aspect-ratio: 16 / 10;
}

.case-grid .case-card {
  padding: 0.95rem;
  border-radius: 14px;
  border: 1px solid var(--brand-green-border);
  box-shadow: none;
  background: #fff;
}

.case-thumb {
  border-radius: 11px;
  height: 168px;
  border: 1px solid var(--brand-green-border);
  overflow: hidden;
}

.case-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-grid h3 {
  margin: 0.9rem 0 0;
  font-size: 1.13rem;
  line-height: 1.26;
}

.case-grid p {
  margin: 0.6rem 0 0;
  color: #595146;
  font-size: 0.94rem;
}

.chip-list {
  margin: 0.68rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem;
}

.chip-list li {
  font-size: 0.76rem;
  padding: 0.24rem 0.44rem;
  border-radius: 999px;
  background: var(--brand-green-soft);
  color: var(--brand-green-strong);
  border: 1px solid var(--brand-green-border);
}

.case-metrics {
  margin-top: 0.84rem;
  padding-top: 0.74rem;
  border-top: 1px solid var(--brand-green-border);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
}

.case-metrics p {
  margin: 0;
}

.case-metrics strong {
  display: block;
  color: #1f1b16;
  font-size: 1.18rem;
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
}

.case-metrics span {
  color: #6f675d;
  font-size: 0.8rem;
}

.services-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-card-home {
  border-radius: 14px;
  border: 1px solid var(--brand-green-border);
  background: #fff;
  padding: 1.1rem;
}

.service-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--brand-green-soft);
  color: var(--brand-green-strong);
  font-size: 1.12rem;
}

.service-icon svg {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card-home h3 {
  margin: 0.7rem 0 0;
  font-size: 1.18rem;
  line-height: 1.25;
}

.service-card-home p {
  margin: 0.55rem 0 0;
  color: #595146;
  font-size: 0.92rem;
}

.home-services-offerings {
  --services-green: var(--brand-green);
  --services-green-strong: var(--brand-green-strong);
  --services-green-soft: var(--brand-green-soft);
  --services-green-border: var(--brand-green-border);
}

.process-row {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-row li {
  position: relative;
  padding-right: 0.66rem;
}

.process-row li::after {
  content: "";
  position: absolute;
  top: 0.86rem;
  right: -0.45rem;
  width: 0.8rem;
  border-top: 1px dashed var(--brand-green-border);
}

.process-row li:last-child::after {
  display: none;
}

.step-dot {
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 50%;
  border: 1px solid var(--brand-green-border);
  background: var(--brand-green-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green-strong);
  font-size: 0.8rem;
  font-weight: 700;
}

.process-row h3 {
  margin: 0.66rem 0 0;
  font-size: 1.2rem;
}

.process-row p {
  margin: 0.4rem 0 0;
  color: #5b544b;
  font-size: 0.91rem;
}

.partner-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.partner-card {
  border: 1px solid var(--brand-green-border);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.88fr;
}

.partner-content {
  padding: 1.15rem;
}

.partner-content h3 {
  margin: 0;
  font-size: 1.5rem;
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-weight: 600;
}

.partner-content p {
  margin: 0.52rem 0 0;
  color: #5a5247;
}

.partner-content ul {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
  color: #4f473d;
  font-size: 0.9rem;
}

.partner-content ul li + li {
  margin-top: 0.35rem;
}

.partner-content .btn {
  margin-top: 0.95rem;
}

.partner-image {
  min-height: 100%;
  background: #ddd3c7;
}

.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.partner-card.freelance {
  background: linear-gradient(180deg, #fcfaf6 0%, #f1f5ef 100%);
}

.partner-card.hiring {
  background: linear-gradient(180deg, #f7faf6 0%, var(--brand-green-soft) 100%);
}

.testimonials-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.quote-card {
  padding: 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--brand-green-border);
  background: #fff;
}

.quote-mark {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1;
}

.quote-card p {
  margin: 0.5rem 0 0;
  color: #4f4941;
}

.quote-role {
  margin-top: 0.7rem;
  color: #29241f;
  font-weight: 700;
  font-size: 0.9rem;
}

.about-home-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 1rem;
  align-items: center;
}

.about-copy p {
  margin: 0.4rem 0 0;
  color: #514b42;
}

.about-points {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.about-points p {
  margin: 0;
  border: 1px solid var(--brand-green-border);
  border-radius: 12px;
  background: #fff;
  padding: 0.75rem 0.78rem;
}

.about-points strong {
  display: block;
  color: #201c18;
  font-size: 0.94rem;
}

.about-points span {
  color: #61584e;
  font-size: 0.8rem;
}

.about-visual {
  position: relative;
  padding-bottom: 2.1rem;
}

.about-image {
  min-height: 280px;
  border-radius: 18px;
  border: 1px solid var(--brand-green-border);
  background-image: url("images/about/about-me-portrait.jpg");
  background-position: center 24%;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-metrics {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 0;
  border: 1px solid var(--brand-green-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-metrics p {
  margin: 0;
  padding: 0.95rem 0.8rem;
  text-align: center;
}

.about-metrics p + p {
  border-left: 1px solid var(--brand-green-border);
}

.about-metrics strong {
  display: block;
  color: var(--brand-green-strong);
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-size: 1.5rem;
}

.about-metrics span {
  display: block;
  color: #61594e;
  font-size: 0.82rem;
}

.client-logo-section {
  padding-block: clamp(0.4rem, 1vw, 0.8rem) clamp(2.1rem, 3.8vw, 3.25rem);
}

.client-logo-heading {
  margin: 0 0 0.85rem;
  color: var(--brand-green-strong);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.client-logo-marquee {
  --client-logo-gap: clamp(2rem, 3.5vw, 3.25rem);
  position: relative;
  overflow: hidden;
  padding-block: 1rem;
  outline: none;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.client-logo-marquee:focus-visible {
  border-radius: 10px;
  box-shadow: 0 0 0 3px var(--brand-green-faint);
}

.client-logo-track {
  display: flex;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.client-logo-list {
  display: flex;
  flex: none;
  align-items: center;
  gap: var(--client-logo-gap);
  margin: 0;
  padding: 0 calc(var(--client-logo-gap) / 2);
  list-style: none;
}

.client-logo-list li {
  display: flex;
  width: auto;
  height: 4.75rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.client-logo-list img {
  width: auto;
  height: auto;
  max-width: clamp(9.75rem, 16vw, 12rem);
  max-height: 4.1rem;
  object-fit: contain;
  opacity: 0.84;
  transition: opacity 180ms ease;
}

.client-logo-list li:hover img {
  opacity: 1;
}

.home-about-section {
  border-top: 1px solid var(--brand-green-border);
}

.home-final-cta {
  margin-top: clamp(1.4rem, 2.8vw, 2.1rem);
  padding: clamp(2.1rem, 3.8vw, 3rem) clamp(1.2rem, 3vw, 2.5rem);
  border-radius: 26px;
  border: 1px solid var(--brand-green-border);
  background:
    radial-gradient(circle at 5% 105%, rgba(79, 125, 83, 0.13) 0%, transparent 38%),
    radial-gradient(circle at 95% 12%, rgba(202, 217, 202, 0.34) 0%, transparent 42%),
    #faf8f5;
  text-align: center;
}

.home-final-cta h2 {
  margin: 0;
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-size: clamp(2.05rem, 4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 23ch;
  margin-inline: auto;
}

.home-final-cta p {
  margin: 0.8rem auto 0;
  max-width: 56ch;
  color: #5d554a;
}

.home-final-cta .hero-actions {
  justify-content: center;
}

.work-main {
  overflow: clip;
}

.work-hero {
  padding-block: clamp(2.5rem, 4.8vw, 4rem) clamp(1.5rem, 3vw, 2.4rem);
}

.work-hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  gap: clamp(1.6rem, 3vw, 2.4rem);
  align-items: center;
}

.work-hero-copy h1 {
  margin: 0;
  max-width: 11.5ch;
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-size: clamp(2.45rem, 5.4vw, 4.3rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.work-hero-copy > p {
  margin: 1.18rem 0 0;
  max-width: 64ch;
  color: #4f4941;
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
}

.work-hero-media {
  min-width: 0;
  width: 100%;
  justify-self: end;
  aspect-ratio: var(--media-aspect);
  border-radius: 24px;
  overflow: hidden;
  filter: drop-shadow(0 24px 44px rgba(54, 95, 63, 0.12));
}

.work-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.work-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
  align-items: stretch;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  border: 1px solid var(--brand-green-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-card);
}

.work-featured-visual,
.work-featured-copy {
  min-width: 0;
}

.work-featured-media {
  width: 100%;
  aspect-ratio: var(--media-aspect);
  border: 1px solid var(--brand-green-border);
  border-radius: 20px;
  background: #f6f1e9;
  overflow: hidden;
}

.work-featured-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.placeholder-visual {
  position: relative;
  min-height: 230px;
  height: 100%;
  border: 1px solid #ded4c4;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(247, 242, 234, 0.86) 100%),
    #f6f1e9;
  overflow: hidden;
}

.placeholder-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(210, 199, 183, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210, 199, 183, 0.24) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.45;
}

.placeholder-inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.placeholder-inner span {
  display: inline-flex;
  max-width: 80%;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.82rem;
  border: 1px solid #d7cbbc;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #5e5549;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.placeholder-visual--browser {
  min-height: clamp(330px, 37vw, 480px);
  border-radius: 20px;
}

.placeholder-chrome {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 46px;
  padding: 0.78rem 0.9rem;
  border-bottom: 1px solid #ded4c4;
  background: rgba(255, 255, 255, 0.78);
}

.placeholder-chrome span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: #d1c4b3;
}

.placeholder-chrome i {
  display: block;
  flex: 1;
  height: 0.66rem;
  margin-left: 0.55rem;
  border-radius: 999px;
  background: #eee6dc;
}

.placeholder-visual--browser .placeholder-inner {
  padding-top: 56px;
}

.placeholder-visual--card {
  min-height: 190px;
  aspect-ratio: 16 / 10;
}

.work-featured-copy {
  padding: clamp(0.7rem, 1.5vw, 1rem);
  align-self: center;
}

.work-featured-label,
.work-card-category {
  margin: 0;
  color: var(--brand-green-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-featured-copy h2 {
  margin: 0.32rem 0 0;
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.work-featured-subtitle {
  margin: 0.36rem 0 0;
  color: #2d2822;
  font-weight: 800;
}

.work-featured-copy > p:not(.work-featured-label):not(.work-featured-subtitle) {
  margin: 0.8rem 0 0;
  color: #514a40;
}

.work-featured-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
  margin-top: 1.05rem;
}

.work-metric-card {
  min-width: 0;
  padding: 0.84rem 0.9rem;
  border: 1px solid var(--brand-green-border);
  border-radius: 12px;
  background: #fff;
}

.work-metric-card strong {
  display: block;
  color: var(--brand-green-strong);
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  line-height: 1.08;
}

.work-metric-card span {
  display: block;
  margin-top: 0.26rem;
  color: #665e54;
  font-size: 0.82rem;
  line-height: 1.35;
}

.work-featured-details {
  display: grid;
  gap: 0.78rem;
  margin-top: 1.05rem;
  padding-top: 1.05rem;
  border-top: 1px solid var(--brand-green-border);
}

.work-featured-details h3 {
  margin: 0;
  color: var(--brand-green-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-featured-details p {
  margin: 0.24rem 0 0;
  color: #565047;
  font-size: 0.94rem;
}

.work-featured-copy .btn {
  margin-top: 1.15rem;
}

.work-process-section {
  padding-block: clamp(2.2rem, 4vw, 3.25rem) clamp(1.35rem, 2.5vw, 2rem);
}

.work-secondary-section {
  padding-block: clamp(1.35rem, 2.5vw, 2rem) clamp(2.2rem, 4vw, 3.25rem);
}

.work-section-header {
  max-width: 760px;
  margin-bottom: clamp(1.1rem, 2.4vw, 1.55rem);
}

.work-section-header h2 {
  margin-bottom: 0.5rem;
}

.work-section-header p {
  margin: 0;
  color: #5a5248;
  font-size: 1rem;
}

.work-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.work-case-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0.92rem;
  border: 1px solid var(--brand-green-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.work-case-media {
  width: 100%;
  aspect-ratio: var(--media-aspect);
  border: 1px solid var(--brand-green-border);
  border-radius: 12px;
  background: #f6f1e9;
  overflow: hidden;
}

.work-case-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.work-case-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem 0.2rem 0.12rem;
}

.work-case-card h3 {
  margin: 0.34rem 0 0;
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.14;
}

.work-case-card p:not(.work-card-category) {
  margin: 0.68rem 0 0;
  color: #5a5248;
  font-size: 0.94rem;
}

.work-card-metrics {
  display: grid;
  gap: 0.42rem;
  padding: 0;
  margin: 0.9rem 0 0;
  list-style: none;
}

.work-card-metrics li {
  position: relative;
  padding-left: 1rem;
  color: #332d27;
  font-size: 0.88rem;
  font-weight: 700;
}

.work-card-metrics li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--brand-green);
}

.work-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.work-process-card {
  position: relative;
  min-width: 0;
  padding: 1.12rem;
  border: 1px solid var(--brand-green-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(54, 95, 63, 0.05);
}

.work-process-step {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-green-border);
  border-radius: 50%;
  background: var(--brand-green-soft);
  color: var(--brand-green-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.work-process-card h3 {
  margin: 0.72rem 0 0;
  font-size: 1.18rem;
  line-height: 1.22;
}

.work-process-card p {
  margin: 0.5rem 0 0;
  color: #5b544b;
  font-size: 0.91rem;
}

.work-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  margin-bottom: clamp(0.5rem, 2vw, 1.4rem);
  padding: clamp(1.6rem, 3vw, 2.3rem);
  border: 1px solid var(--brand-green-border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 110%, rgba(79, 125, 83, 0.13) 0%, transparent 30%),
    #faf8f4;
  box-shadow: var(--shadow-card);
}

.work-bottom-cta h2 {
  margin: 0;
  max-width: 16ch;
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.work-bottom-cta p {
  margin: 0.7rem 0 0;
  max-width: 62ch;
  color: #5a5248;
}

.work-bottom-cta .hero-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

body[data-page="services"] {
  --services-green: var(--brand-green);
  --services-green-strong: var(--brand-green-strong);
  --services-green-soft: var(--brand-green-soft);
  --services-green-border: var(--brand-green-border);
  background:
    radial-gradient(circle at 84% -4%, rgba(79, 125, 83, 0.13) 0%, transparent 29%),
    var(--bg);
}

.services-page {
  padding-bottom: clamp(1.35rem, 2.8vw, 2.2rem);
}

body[data-page="services"] .work-bottom-cta {
  margin-top: clamp(1.7rem, 3vw, 2.5rem);
}

body[data-page="services"] .topbar {
  background: color-mix(in srgb, var(--bg) 91%, var(--services-green-soft) 9%);
}

body[data-page="services"] .nav-links a[aria-current="page"] {
  color: var(--services-green-strong);
  border-bottom-color: var(--services-green);
}

.services-hero {
  padding-block: clamp(1.9rem, 3.4vw, 2.9rem) clamp(1rem, 2vw, 1.55rem);
}

.services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.services-hero-copy h1 {
  margin: 0;
  max-width: 14ch;
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-size: clamp(2.8rem, 3.8vw, 3.35rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.services-hero-copy > p {
  margin: 1.2rem 0 0;
  max-width: 58ch;
  color: #575149;
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  line-height: 1.65;
}

.services-hero-copy .hero-actions {
  margin-top: 1.4rem;
}

.services-hero-copy .btn {
  min-height: 44px;
  border-radius: 9px;
}

.services-hero-copy .btn-primary {
  background: var(--services-green-strong);
  box-shadow: 0 9px 28px rgba(54, 95, 63, 0.22);
}

.services-hero-copy .btn-primary:hover {
  background: var(--brand-green-dark);
}

.services-hero-copy .btn-secondary:hover {
  border-color: var(--services-green-border);
  color: var(--services-green-strong);
}

.services-link-icon,
.services-process-arrow {
  display: block;
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2rem);
  padding: 0;
  margin: 1.8rem 0 0;
  list-style: none;
}

.services-platforms li {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #292623;
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.services-platforms img {
  width: 1.15rem;
  height: 1.15rem;
  object-fit: contain;
}

.services-platforms .services-platform-wordmark {
  width: 5.5rem;
  height: auto;
}

.services-hero-media {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--services-green-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(41, 31, 18, 0.08);
}

.services-hero-media img {
  width: 100%;
  height: auto;
}

.services-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 1rem 0.8rem;
  border: 1px solid var(--services-green-border);
  border-radius: 18px;
  background: rgba(252, 254, 252, 0.82);
  box-shadow: 0 10px 30px rgba(54, 95, 63, 0.055);
}

.services-proof article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  min-width: 0;
  padding: 0.28rem 0.85rem;
}

.services-proof article + article {
  border-left: 1px solid var(--services-green-border);
}

.services-round-icon {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 2.35rem;
  padding: 0;
  border: 1px solid var(--services-green-border);
  border-radius: 50%;
  color: var(--services-green-strong);
  background: var(--services-green-soft);
  line-height: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.services-icon {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-origin: center;
}

.services-proof strong,
.services-proof article div > span,
.services-proof small {
  display: block;
}

.services-proof strong {
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.16;
}

.services-proof article div > span {
  margin-top: 0.16rem;
  color: #4c4740;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.services-proof small {
  margin-top: 0.35rem;
  color: #777067;
  font-size: 0.75rem;
  line-height: 1.45;
}

.services-offerings,
.services-process {
  padding-top: clamp(1.75rem, 3vw, 2.45rem);
}

.services-section-heading {
  text-align: center;
}

.services-section-heading > p,
.services-audience-intro > p {
  margin: 0 0 0.32rem;
  color: var(--services-green-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.services-section-heading h2,
.services-audience-intro h2 {
  margin: 0;
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-size: clamp(2rem, 3.1vw, 2.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.services-offering-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.services-offering-card {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  padding: 1.1rem 1rem 1.15rem;
  border: 1px solid var(--services-green-border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 22px rgba(54, 95, 63, 0.045);
}

.services-offering-card h3,
.services-audience-card h3 {
  margin: 0.85rem 0 0;
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.12;
}

.services-offering-card > p {
  margin: 0.58rem 0 0;
  color: #5d574f;
  font-size: 0.88rem;
  line-height: 1.58;
}

.services-offering-card ul {
  display: grid;
  gap: 0.48rem;
  padding-left: 1.05rem;
  margin: 1rem 0 0;
  color: #403b35;
  font-size: 0.84rem;
  line-height: 1.45;
}

.services-offering-card li::marker {
  color: var(--services-green);
}

.services-detail-link {
  margin: 1.25rem 0 0;
  text-align: center;
}

.services-detail-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--services-green-strong);
  font-size: 0.9rem;
  font-weight: 700;
}

.services-audience {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: clamp(1.75rem, 3vw, 2.45rem);
  padding: 1.15rem;
  border: 1px solid var(--services-green-border);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(237, 244, 237, 0.95), rgba(248, 246, 241, 0.88));
}

.services-audience-intro {
  padding: 0.55rem 0.5rem;
}

.services-audience-intro h2 {
  font-size: clamp(1.75rem, 2.35vw, 2.1rem);
}

.services-audience-intro > span {
  display: block;
  margin-top: 0.8rem;
  max-width: 29ch;
  color: #5d564d;
  font-size: 0.9rem;
  line-height: 1.6;
}

.services-audience-card {
  padding: 1rem 0.9rem;
  border: 1px solid var(--services-green-border);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.86);
}

.services-audience-card .services-round-icon {
  width: 2rem;
  height: 2rem;
  flex-basis: 2rem;
}

.services-audience-card .services-round-icon svg {
  width: 1rem;
  height: 1rem;
}

.services-audience-card p {
  margin: 0.58rem 0 0;
  color: #5e574f;
  font-size: 0.86rem;
  line-height: 1.55;
}

.services-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 1.2rem 1rem;
  margin: 1.25rem 0 0;
  list-style: none;
  border: 1px solid var(--services-green-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 24px rgba(54, 95, 63, 0.045);
}

.services-process-grid li {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.72rem;
  padding: 0.2rem 1.2rem;
}

.services-process-arrow {
  position: absolute;
  top: 50%;
  right: -0.45rem;
  width: 1.05rem;
  height: 1.05rem;
  color: var(--services-green);
  transform: translateY(-50%);
}

.services-process-grid li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--services-green-border);
  border-radius: 50%;
  color: var(--services-green-strong);
  background: var(--services-green-soft);
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  font-weight: 600;
}

.services-process-grid h3 {
  margin: 0.08rem 0 0;
  font-size: 0.96rem;
}

.services-process-grid p {
  margin: 0.24rem 0 0;
  color: #696158;
  font-size: 0.84rem;
  line-height: 1.55;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--brand-green-strong);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 8px 30px rgba(54, 95, 63, 0.28);
}

.floating-cta:hover {
  color: #fff;
  background: var(--brand-green-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-layout,
  .split,
  .work-hero-grid,
  .work-featured {
    grid-template-columns: 1fr;
  }

  .home-hero-layout,
  .about-home-grid {
    grid-template-columns: 1fr;
  }

  .home-case-grid,
  .services-grid,
  .case-grid,
  .process-row,
  .testimonials-grid,
  .work-case-grid,
  .work-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-featured-copy {
    padding: clamp(0.6rem, 2vw, 1rem) 0.2rem 0.2rem;
  }

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

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

  .partner-card {
    grid-template-columns: 1fr;
  }

  .partner-image {
    min-height: 190px;
  }

  .about-metrics {
    position: relative;
    left: 0;
    right: 0;
    margin-top: -1.2rem;
  }

  .card-grid,
  .cred-grid,
  .proof-grid,
  .hiring-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
  }

  .services-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1rem;
  }

  .services-proof article + article {
    border-left: 0;
  }

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

  .services-offering-card {
    min-height: 0;
  }

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

  .services-audience-intro {
    grid-column: 1 / -1;
  }

  .services-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.4rem;
  }

  .services-process-arrow {
    display: none;
  }

  body[data-page="work"] .section {
    padding-block: clamp(2.3rem, 5vw, 3.4rem);
  }

  body[data-page="contact"] .section {
    padding-block: clamp(1.9rem, 4.4vw, 2.7rem);
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 1.4rem, var(--max-width));
  }

  .nav {
    min-height: 74px;
  }

  .topbar nav {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .menu-toggle span {
    font-size: 2rem;
    line-height: 1;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    background: #f7faf6;
    display: none;
  }

  .brand {
    font-size: 1.7rem;
  }

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

  .nav-actions {
    display: none;
  }

  .card-grid,
  .cred-grid,
  .proof-grid,
  .hiring-grid,
  .skills-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof-bar,
  .trust-logos,
  .home-case-grid,
  .case-grid,
  .services-grid,
  .process-row,
  .testimonials-grid,
  .about-points,
  .about-metrics,
  .work-case-grid,
  .work-process-grid,
  .work-featured-metrics {
    grid-template-columns: 1fr;
  }

  .work-hero {
    padding-block: clamp(2.2rem, 8vw, 3.2rem) clamp(1.4rem, 5vw, 2rem);
  }

  .work-hero-copy h1 {
    max-width: 12ch;
  }

  .work-hero .hero-actions,
  .work-bottom-cta .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .work-hero .btn,
  .work-bottom-cta .btn {
    width: 100%;
  }

  .placeholder-visual--browser {
    min-height: 280px;
  }

  .placeholder-visual--card {
    min-height: 170px;
  }

  .work-featured,
  .work-bottom-cta {
    border-radius: 18px;
  }

  .hero-proof-bar article + article,
  .about-metrics p + p,
  .trust-logos li + li {
    border-left: 0;
    border-top: 1px solid var(--brand-green-border);
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-visual {
    padding-bottom: 0;
  }

  .about-points {
    display: none;
  }

  .partner-card .partner-image {
    display: none;
  }

  .about-metrics {
    margin-top: 0.7rem;
  }

  .client-logo-section {
    padding-bottom: clamp(1.7rem, 7vw, 2.4rem);
  }

  .client-logo-marquee {
    --client-logo-gap: 1.6rem;
    padding-block: 0.8rem;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
  }

  .client-logo-list li {
    height: 4.25rem;
  }

  .client-logo-list img {
    max-width: 9rem;
    max-height: 3.6rem;
  }

  .process-row li::after {
    display: none;
  }

  .home-final-cta {
    border-radius: 18px;
  }

  .services-hero {
    padding-top: 2.2rem;
  }

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

  .services-hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .services-hero-copy .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .services-hero-copy .btn {
    width: 100%;
  }

  .services-platforms {
    gap: 1rem 1.3rem;
  }

  .services-proof,
  .services-offering-grid,
  .services-audience,
  .services-process-grid {
    grid-template-columns: 1fr;
  }

  .services-proof {
    padding: 0.55rem;
  }

  .services-proof article {
    padding: 0.8rem 0.65rem;
  }

  .services-proof article + article {
    border-top: 1px solid var(--services-green-border);
  }

  .services-offering-card {
    min-height: 0;
  }

  .services-offering-card ul {
    margin-top: 1rem;
  }

  .services-audience-intro {
    grid-column: auto;
  }

  .services-process-grid {
    gap: 0;
    padding: 0.65rem;
  }

  .services-process-grid li {
    padding: 0.85rem 0.55rem;
  }

  .services-process-grid li + li {
    border-top: 1px solid var(--services-green-border);
  }

  body[data-page="work"] .section {
    padding-block: clamp(1.7rem, 4vw, 2.3rem);
  }

  body[data-page="work"] .work-intro {
    padding-bottom: 0.55rem;
  }

  body[data-page="work"] .work-tabs-wrap {
    padding-top: 0.4rem;
  }

  body[data-page="contact"] .section {
    padding-block: clamp(1.4rem, 3.6vw, 2rem);
  }

  body[data-page="contact"] .section-tight {
    padding-block: clamp(0.7rem, 1.9vw, 1.2rem);
  }

  .floating-cta {
    left: 0.7rem;
    right: 0.7rem;
    justify-content: center;
  }

  body[data-page="contact"] .floating-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .reveal,
  .tab-panel,
  .client-logo-list img {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .client-logo-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .client-logo-track {
    transform: none !important;
  }

  .client-logo-list[aria-hidden="true"] {
    display: none;
  }
}
