@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-extrabold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --white: #ffffff;
  --paper: #f7f7f7;
  --mist: #eef3f1;
  --ink: #3f3f3f;
  --ink-deep: #222222;
  --gray: #737373;
  --line: #d9dfdc;
  --green: #04aa8a;
  --green-deep: #008f75;
  --mint: #0bfa8b;
  --mint-soft: #d8f8e8;
  --radius: 6px;
  --shadow: 0 22px 65px rgba(34, 34, 34, 0.14);
  --page: min(1240px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  color: var(--green);
  font-size: clamp(3.1rem, 6.2vw, 6rem);
  font-weight: 800;
  line-height: 0.98;
}

h2 {
  margin-bottom: 20px;
  color: var(--green);
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
}

h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--gray);
}

::selection {
  background: var(--mint);
  color: var(--ink-deep);
}

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 12px;
  left: 12px;
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink-deep);
}

.kicker {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.top-bar {
  background: var(--gray);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
}

.top-bar-inner {
  width: var(--page);
  min-height: 36px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
}

.top-bar a {
  color: var(--white);
  text-decoration: none;
}

.top-bar a:hover,
.top-bar a:focus-visible {
  color: var(--mint);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(63, 63, 63, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: var(--page);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 1 270px;
}

.brand img {
  width: min(270px, 100%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--mint);
  border-bottom-color: var(--mint);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.breadcrumbs {
  width: var(--page);
  margin: 0 auto;
  padding-top: 20px;
  color: var(--gray);
  font-size: 0.75rem;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 7px;
  color: #a4aaa7;
}

.breadcrumbs a {
  color: var(--green);
  text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--ink);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--ink);
}

.button.secondary {
  border-color: var(--ink);
  color: var(--ink);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--green);
  color: var(--green);
}

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

.home-hero,
.service-hero,
.page-hero,
.intro-band,
.geo-home-band,
.home-video,
.services-showcase,
.work-band,
.process-band,
.blog-strip,
.contact-band,
.related-strip,
.service-intro,
.service-process,
.capabilities-section,
.details-section,
.editorial-content,
.blog-hero,
.blog-archive,
.article-hero,
.article-shell,
.contact-layout {
  width: var(--page);
  margin-inline: auto;
}

.home-hero {
  width: 100%;
  min-height: calc(100dvh - 108px);
  margin-inline: 0;
  display: flex;
  align-items: center;
  padding-top: clamp(54px, 7vw, 90px);
  padding-right: max(24px, calc((100vw - 1240px) / 2));
  padding-bottom: clamp(54px, 7vw, 90px);
  padding-left: max(24px, calc((100vw - 1240px) / 2));
}

.home-hero-tree {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0;
  background: url("/assets/greenhouse-hero.jpg") center right / cover no-repeat;
}

.home-hero-tree::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.14) 62%, transparent 78%);
}

.home-hero-copy {
  width: min(58%, 690px);
}

.home-hero-copy p:not(.kicker),
.service-hero-copy > p:not(.kicker),
.page-hero > div > p:not(.kicker),
.blog-hero > div > p:not(.kicker),
.article-hero > p:not(.kicker) {
  max-width: 650px;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
}

.home-hero-media {
  position: relative;
  min-height: min(680px, 72vh);
  display: grid;
  place-items: end center;
  overflow: hidden;
  padding: 42px 28px 0;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(4, 170, 138, 0.06), rgba(63, 63, 63, 0.2)),
    var(--ink);
  box-shadow: var(--shadow);
}

.home-hero-media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 3px;
}

.home-hero-media img {
  position: relative;
  width: min(78%, 365px);
  filter: drop-shadow(0 28px 28px rgba(34, 34, 34, 0.34));
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
}

.intro-band > div:first-child p {
  max-width: 620px;
  font-size: 1.08rem;
}

.intro-links {
  border-top: 1px solid var(--line);
}

.intro-links a {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.intro-links span {
  color: var(--green);
  font-weight: 800;
}

.intro-links strong {
  color: var(--ink);
  font-weight: 600;
}

.intro-links a:hover span,
.intro-links a:focus-visible span {
  color: var(--ink);
}

.geo-home-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
  margin-bottom: clamp(90px, 11vw, 150px);
  padding: clamp(42px, 6vw, 72px);
  border-radius: var(--radius);
  background: var(--mint-soft);
}

.geo-home-band h2 {
  margin-bottom: 0;
  color: var(--ink);
}

.geo-home-band > div:last-child p {
  max-width: 680px;
  color: var(--ink);
  font-size: 1.08rem;
}

.geo-home-band .button {
  margin-top: 8px;
}

.home-video {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
  padding: 0 0 clamp(90px, 11vw, 150px);
}

.video-copy p:not(.kicker) {
  max-width: 520px;
  font-size: 1.05rem;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.services-showcase,
.capabilities-section,
.details-section,
.blog-strip,
.blog-archive {
  padding: clamp(78px, 9vw, 126px) 0;
}

.services-showcase {
  position: relative;
}

.services-showcase::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  background: var(--paper);
}

.section-lede {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-lede p {
  max-width: 650px;
  font-size: 1.05rem;
}

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

.service-tile {
  min-height: 290px;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(34, 34, 34, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-tile:nth-child(1),
.service-tile:nth-child(4) {
  grid-column: span 7;
}

.service-tile:nth-child(2),
.service-tile:nth-child(3) {
  grid-column: span 5;
}

.service-tile:nth-child(1) {
  min-height: 420px;
  justify-content: flex-end;
  background:
    linear-gradient(rgba(34, 34, 34, 0.22), rgba(34, 34, 34, 0.76)),
    url("/assets/generated/digital-strategy.jpg") center / cover;
}

.service-tile:nth-child(4) {
  min-height: 420px;
  justify-content: flex-end;
  background:
    linear-gradient(rgba(34, 34, 34, 0.18), rgba(34, 34, 34, 0.74)),
    url("/assets/generated/web-design-studio.jpg") center / cover;
}

.service-tile:nth-child(3),
.service-tile:nth-child(6) {
  background: var(--ink);
}

.services-index .service-tile:nth-child(1),
.services-index .service-tile:nth-child(4) {
  min-height: 290px;
  justify-content: space-between;
  background: var(--white);
}

.services-index .service-tile:nth-child(4) {
  background: var(--mint-soft);
}

.services-index .service-tile:nth-child(1) span,
.services-index .service-tile:nth-child(4) span {
  color: var(--green);
}

.services-index .service-tile:nth-child(1) p,
.services-index .service-tile:nth-child(4) p {
  color: var(--gray);
}

.service-tile span {
  color: var(--green);
  font-size: clamp(1.45rem, 2.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.08;
}

.service-tile p {
  max-width: 520px;
  margin-bottom: 0;
}

.service-tile:nth-child(1) span,
.service-tile:nth-child(1) p,
.service-tile:nth-child(3) span,
.service-tile:nth-child(3) p,
.service-tile:nth-child(4) span,
.service-tile:nth-child(4) p,
.service-tile:nth-child(6) span,
.service-tile:nth-child(6) p {
  color: var(--white);
}

.service-tile:hover,
.service-tile:focus-visible,
.post-card:hover,
.post-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(34, 34, 34, 0.13);
}

.work-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.7fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  padding: clamp(88px, 11vw, 150px) 0;
}

.work-image {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.work-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.work-copy p {
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  padding-bottom: 5px;
  border-bottom: 2px solid currentColor;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
}

.process-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: clamp(50px, 7vw, 88px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-band article {
  min-height: 220px;
  padding: 0 clamp(24px, 4vw, 52px);
  border-right: 1px solid var(--line);
}

.process-band article:first-child {
  padding-left: 0;
}

.process-band article:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-band span {
  display: block;
  margin-bottom: 26px;
  color: var(--green);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.05;
}

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

.blog-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.blog-controls {
  display: flex;
  gap: 10px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.carousel-arrow {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 1.35rem;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.carousel-arrow:active {
  transform: scale(0.96);
}

.carousel-arrow:disabled {
  border-color: var(--line);
  color: #a4aaa7;
  cursor: default;
}

.home-blog-carousel {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-blog-carousel::-webkit-scrollbar {
  display: none;
}

.post-track {
  display: flex;
  gap: 18px;
}

.post-track .post-card {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
}

.post-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.post-card span {
  margin-bottom: 54px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
}

.post-card p {
  margin-top: auto;
  margin-bottom: 0;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  margin-top: clamp(72px, 9vw, 120px);
  margin-bottom: clamp(72px, 9vw, 120px);
  padding: clamp(40px, 6vw, 72px);
  border-radius: var(--radius);
  background: var(--ink);
}

.contact-band h2,
.contact-band p {
  color: var(--white);
}

.contact-band p {
  max-width: 670px;
  margin-bottom: 0;
}

.contact-band .button.primary:hover,
.contact-band .button.primary:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.service-hero {
  min-height: min(780px, calc(100dvh - 108px));
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(480px, 1fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  padding: clamp(56px, 7vw, 92px) 0;
}

.service-hero h1 {
  max-width: 790px;
  font-size: clamp(3rem, 5.6vw, 5.55rem);
}

.service-hero-visual {
  position: relative;
  min-height: 580px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.service-photo {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.service-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 52%, rgba(4, 170, 138, 0.3));
  pointer-events: none;
}

.device-art {
  position: absolute;
  z-index: 2;
  right: 3%;
  bottom: -12%;
  width: min(43%, 330px);
  filter: drop-shadow(0 24px 24px rgba(34, 34, 34, 0.38));
}

.services-index-hero .device-art {
  right: auto;
  left: 7%;
  width: min(40%, 300px);
}

.related-strip {
  display: flex;
  align-items: center;
  gap: 4px 26px;
  overflow-x: auto;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}

.related-strip a {
  flex: none;
  color: var(--gray);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.related-strip a:hover,
.related-strip a:focus-visible {
  color: var(--green);
}

.service-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
  padding: clamp(90px, 11vw, 150px) 0;
}

.service-intro h2 {
  color: var(--ink);
}

.overview-copy {
  display: grid;
  gap: 16px;
}

.overview-copy p {
  margin: 0;
  font-size: 1.08rem;
}

.service-process {
  padding-bottom: clamp(80px, 10vw, 130px);
}

.service-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.service-path article {
  min-height: 230px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.service-path article:last-child {
  border-right: 0;
}

.service-path span {
  display: block;
  margin-bottom: 34px;
  color: var(--mint);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 800;
}

.service-path p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.capabilities-section {
  position: relative;
}

.capabilities-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  background: var(--paper);
}

.content-feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.content-feature-card {
  min-height: 340px;
  grid-column: span 6;
  padding: clamp(30px, 4vw, 50px);
  border-radius: var(--radius);
  background: var(--white);
}

.content-feature-card:nth-child(1),
.content-feature-card:nth-child(4) {
  grid-column: span 7;
}

.content-feature-card:nth-child(2),
.content-feature-card:nth-child(3) {
  grid-column: span 5;
}

.content-feature-card:nth-child(1) {
  background: var(--green);
}

.content-feature-card:nth-child(3) {
  background: var(--ink);
}

.content-feature-card:nth-child(4) {
  background: var(--mint-soft);
}

.content-feature-card:nth-child(1) h2,
.content-feature-card:nth-child(1) p,
.content-feature-card:nth-child(1) li,
.content-feature-card:nth-child(3) h2,
.content-feature-card:nth-child(3) p,
.content-feature-card:nth-child(3) li {
  color: var(--white);
}

.content-feature-card h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.section-copy {
  display: grid;
  gap: 12px;
}

.section-copy p,
.section-copy li {
  color: var(--gray);
}

.section-copy p:last-child,
.section-copy ul:last-child,
.section-copy ol:last-child,
.section-copy blockquote:last-child {
  margin-bottom: 0;
}

.section-copy ul,
.section-copy ol {
  margin: 4px 0 0;
  padding-left: 20px;
}

.section-copy li + li {
  margin-top: 8px;
}

.section-copy a {
  color: var(--green);
  font-weight: 700;
}

.blog-reference {
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.detail-blog-link {
  width: max-content;
  display: inline-flex;
  margin-top: 10px;
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
  text-decoration: none;
}

.section-copy blockquote {
  margin: 12px 0;
  padding-left: 20px;
  border-left: 4px solid var(--green);
  color: var(--ink);
  font-weight: 600;
}

.details-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.details-section .section-lede {
  position: sticky;
  top: 130px;
}

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

.content-detail {
  border-bottom: 1px solid var(--line);
}

.content-detail summary {
  position: relative;
  padding: 25px 52px 25px 0;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.content-detail summary::-webkit-details-marker {
  display: none;
}

.content-detail summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 20px;
  color: var(--green);
  font-size: 1.8rem;
  font-weight: 400;
}

.content-detail[open] summary::after {
  content: "−";
}

.content-detail .section-copy {
  max-width: 760px;
  padding: 0 50px 30px 0;
}

.page-hero-editorial,
.blog-hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  padding: clamp(60px, 8vw, 110px) 0;
}

.page-hero-editorial.text-only {
  min-height: 500px;
  grid-template-columns: minmax(0, 900px);
}

.editorial-hero-image {
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.editorial-hero-image img,
.blog-hero > img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.editorial-content {
  padding-bottom: clamp(86px, 10vw, 140px);
}

.editorial-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 120px);
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
}

.editorial-intro > div p {
  font-size: 1.08rem;
}

.info-features {
  margin-bottom: clamp(60px, 8vw, 100px);
}

.info-details {
  max-width: 900px;
  margin-left: auto;
}

.blog-hero {
  min-height: 590px;
}

.blog-hero > img {
  min-height: 440px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.blog-archive {
  padding-top: 40px;
}

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

.article-hero {
  max-width: 1040px;
  padding: clamp(70px, 9vw, 120px) 0 clamp(46px, 6vw, 74px);
}

.article-hero h1 {
  font-size: clamp(2.75rem, 5vw, 5.15rem);
}

.article-hero span {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 700;
}

.article-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: clamp(44px, 7vw, 90px);
  align-items: start;
  padding-bottom: clamp(80px, 10vw, 130px);
}

.article-content {
  max-width: 820px;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin-top: 1.7em;
}

.article-content h2 {
  font-size: clamp(1.9rem, 3vw, 3.1rem);
}

.article-content h3 {
  color: var(--green);
}

.article-content p,
.article-content li {
  font-size: 1.04rem;
}

.article-content a {
  color: var(--green);
  font-weight: 700;
}

.article-review-note {
  margin: 0 0 36px;
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  background: var(--paper);
  color: var(--ink);
}

.article-content code {
  padding: 0.12em 0.32em;
  border-radius: 3px;
  background: var(--paper);
  color: var(--ink-deep);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.92em;
}

.article-content pre {
  max-width: 100%;
  overflow-x: auto;
  margin: 28px 0;
  padding: 22px;
  border-left: 4px solid var(--green);
  background: var(--ink);
  color: var(--white);
}

.article-content pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

.article-content img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 32px auto;
  border-radius: var(--radius);
}

.article-content blockquote {
  margin: 32px 0;
  padding: 8px 0 8px 24px;
  border-left: 4px solid var(--green);
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 600;
}

.side-panel {
  position: sticky;
  top: 128px;
  display: grid;
  border-top: 3px solid var(--green);
}

.side-panel h2 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 1rem;
}

.side-panel a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.side-panel a:hover,
.side-panel a:focus-visible {
  color: var(--green);
}

.contact-hero {
  width: var(--page);
  min-height: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 50px;
  align-items: center;
  padding: clamp(60px, 8vw, 110px) 0;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--ink);
}

.contact-card a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-card a:first-child {
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.52fr) minmax(0, 1.35fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  padding-bottom: clamp(72px, 9vw, 112px);
}

.contact-form-intro {
  padding-top: 20px;
}

.contact-form-intro h2 {
  max-width: 10ch;
  margin: 12px 0 20px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
}

.contact-form-intro > p:not(.kicker) {
  max-width: 38rem;
  margin: 0;
  color: var(--text);
  line-height: 1.75;
}

.contact-brief-list {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.contact-brief-list span {
  position: relative;
  padding: 14px 0 14px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-brief-list span::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius);
  background: var(--paper);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-form .wide,
.contact-form .form-status,
.send-button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #aeb6b2;
  border-radius: 3px;
  background: var(--white);
  color: var(--ink-deep);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(4, 170, 138, 0.18);
}

.contact-form .consent {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-form .consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
}

.contact-form .consent a {
  color: var(--green-dark);
}

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

.form-status {
  margin: 0;
  padding: 14px 16px;
  border-left: 4px solid currentColor;
  background: var(--white);
  line-height: 1.5;
}

.form-status.is-success {
  color: #08705b;
}

.form-status.is-error {
  color: #9a2f2f;
}

.send-button {
  justify-self: start;
  min-height: 50px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.send-button:hover,
.send-button:focus-visible {
  background: var(--ink);
}

.contact-next {
  width: 100%;
  padding: clamp(56px, 7vw, 86px) 0;
  background: var(--ink);
  color: var(--white);
}

.contact-next-inner {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.contact-next .kicker {
  color: var(--green-bright);
}

.contact-next h2 {
  max-width: 12ch;
  margin: 12px 0 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.contact-next-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-next-list li {
  padding-top: 16px;
  border-top: 2px solid var(--green);
}

.contact-next-list span {
  color: var(--green-bright);
  font-size: 0.75rem;
  font-weight: 800;
}

.contact-next-list h3 {
  margin: 24px 0 10px;
  color: var(--white);
  font-size: 1.05rem;
}

.contact-next-list p {
  margin: 0;
  color: #d9dddb;
  font-size: 0.94rem;
  line-height: 1.7;
}

.site-footer {
  padding-top: 68px;
  background: var(--gray);
  color: var(--white);
}

.footer-grid {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: clamp(28px, 5vw, 70px);
}

.footer-brand img {
  width: 250px;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 390px;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.92rem;
}

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

.footer-grid a:not(.button) {
  display: block;
  margin-bottom: 11px;
  color: var(--white);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--mint);
}

.footer-button {
  margin-top: 8px;
  background: var(--mint);
  color: var(--ink-deep);
}

.footer-button:hover,
.footer-button:focus-visible {
  background: var(--white);
  color: var(--ink-deep) !important;
}

.legal {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  margin-top: 62px;
  padding: 20px;
  background: var(--ink-deep);
  color: var(--white);
  font-size: 0.8rem;
}

.legal a {
  color: var(--white);
  text-decoration: none;
}

.legal a:hover,
.legal a:focus-visible {
  color: var(--mint);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms cubic-bezier(0.16, 1, 0.3, 1), transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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

@media (max-width: 1080px) {
  :root {
    --page: min(100% - 36px, 1240px);
  }

  .site-nav {
    font-size: 0.74rem;
  }

  .site-nav a {
    padding-inline: 7px;
  }

  .home-hero,
  .service-hero,
  .page-hero-editorial,
  .blog-hero,
  .home-video,
  .geo-home-band,
  .work-band,
  .service-intro,
  .editorial-intro,
  .contact-hero,
  .contact-layout,
  .contact-next-inner {
    grid-template-columns: 1fr;
  }

  .contact-form-intro h2 {
    max-width: 14ch;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero-tree {
    min-height: 680px;
    background-position: 62% center;
  }

  .home-hero-copy {
    width: min(68%, 650px);
  }

  .home-hero-media,
  .service-hero-visual {
    min-height: 520px;
  }

  .service-photo {
    min-height: 520px;
  }

  .intro-band {
    grid-template-columns: 1fr;
  }

  .details-section {
    grid-template-columns: 1fr;
  }

  .details-section .section-lede {
    position: static;
  }

  .article-shell {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

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

@media (max-width: 820px) {
  .article-hero h1 {
    font-size: 2.35rem;
    overflow-wrap: anywhere;
  }

  .top-bar-inner {
    justify-content: center;
    gap: 10px 18px;
    padding: 7px 0;
    flex-wrap: wrap;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    flex-basis: 230px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--ink);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18);
    font-size: 0.92rem;
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
  }

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

  .site-nav a {
    justify-content: center;
    min-height: 48px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .service-mosaic,
  .content-feature-grid {
    grid-template-columns: 1fr;
  }

  .service-tile,
  .service-tile:nth-child(1),
  .service-tile:nth-child(2),
  .service-tile:nth-child(3),
  .service-tile:nth-child(4),
  .content-feature-card,
  .content-feature-card:nth-child(1),
  .content-feature-card:nth-child(2),
  .content-feature-card:nth-child(3),
  .content-feature-card:nth-child(4) {
    grid-column: auto;
  }

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

  .post-track .post-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .process-band,
  .service-path {
    grid-template-columns: 1fr;
  }

  .process-band article,
  .process-band article:first-child,
  .process-band article:last-child,
  .service-path article {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-path article {
    padding: 30px;
    border-bottom-color: rgba(255, 255, 255, 0.16);
  }

  .process-band article:last-child,
  .service-path article:last-child {
    border-bottom: 0;
  }

  .process-band span,
  .service-path span {
    margin-bottom: 14px;
  }

  .article-shell {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 600px) {
  :root {
    --page: calc(100% - 28px);
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .top-bar-inner > a:first-child {
    display: none;
  }

  .home-hero,
  .service-hero,
  .page-hero-editorial,
  .blog-hero {
    padding-block: 46px;
  }

  .home-hero-tree {
    min-height: 690px;
    align-items: flex-start;
    padding: 54px 24px;
    background-position: 72% center;
  }

  .home-hero-tree::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 255, 255, 0.24) 68%, transparent 84%);
  }

  .home-hero-copy {
    width: 100%;
  }

  .home-hero-media,
  .service-hero-visual,
  .service-photo,
  .editorial-hero-image,
  .editorial-hero-image img,
  .blog-hero > img {
    min-height: 360px;
  }

  .device-art {
    width: 44%;
  }

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

  .button {
    width: 100%;
  }

  .intro-links a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .service-tile,
  .service-tile:nth-child(1),
  .service-tile:nth-child(4) {
    min-height: 320px;
  }

  .work-image,
  .work-image img {
    min-height: 380px;
  }

  .post-grid,
  .blog-archive .post-grid,
  .footer-grid,
  .contact-form,
  .contact-next-list {
    grid-template-columns: 1fr;
  }

  .blog-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .blog-controls {
    flex: none;
    margin-bottom: 28px;
  }

  .post-track .post-card {
    flex-basis: 86%;
  }

  .contact-form .wide,
  .contact-form .form-status,
  .send-button {
    grid-column: auto;
  }

  .post-card {
    min-height: 260px;
  }

  .contact-band {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .content-feature-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .content-detail summary {
    padding-right: 44px;
  }

  .content-detail .section-copy {
    padding-right: 0;
  }

  .legal {
    flex-direction: column;
    align-items: center;
  }
}
