@font-face {
  font-family: DM Sans;
  src: url("/assets/fonts/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
}
:root {
  --ink: #101817;
  --ink-soft: #192522;
  --paper: #f7f9f8;
  --white: #fff;
  --muted: #60706a;
  --line: #dbe2de;
  --lime: #a9ff4f;
  --radius: 12px;
  --font: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
h1 {
  font-size: clamp(3rem, 6.8vw, 7rem);
}
h2 {
  font-size: clamp(2.4rem, 4.1vw, 4.25rem);
  margin: 18px 0 26px;
}
h3 {
  font-size: 1.6rem;
}
p {
  color: var(--muted);
}
em,
.serif-word {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #6e9311;
  outline-offset: 5px;
}
::selection {
  color: var(--ink);
  background: var(--lime);
}
.wrap {
  width: min(1320px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding: 110px 0;
}
.eyebrow {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.6;
  display: block;
}
.tiny-cross {
  display: inline-block;
  font-size: 24px;
  vertical-align: middle;
  margin-right: 10px;
  color: var(--lime);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn span {
  font-size: 1.25rem;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-lime,
.btn-primary {
  background: var(--lime);
  color: var(--ink);
}
.btn-lime:hover,
.btn-primary:hover {
  background: #e0ff85;
}
.btn-outline {
  border-color: var(--ink);
  background: transparent;
}
.btn-outline:hover {
  background: var(--ink);
  color: white;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-size: 0.95rem;
  font-weight: 500;
}
.text-link span {
  font-size: 1.25rem;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  background: var(--lime);
  padding: 12px 20px;
  z-index: 100;
}
.skip-link:focus {
  top: 15px;
}
.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;
}
.site-header {
  height: 92px;
  background: var(--ink);
  color: #fff;
  position: relative;
  z-index: 20;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #34403c;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.055em;
  color: #f0fff4;
  white-space: nowrap;
}
.brand img {
  flex-shrink: 0;
  width: 48px;
  height: auto;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 48px;
}
.primary-nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.primary-nav li a {
  font-size: 0.88rem;
  color: #c4cdc8;
  transition: color 0.2s;
}
.primary-nav li a:hover,
.primary-nav a[aria-current] {
  color: var(--lime);
}
.nav-cta {
  display: flex;
  gap: 35px;
  align-items: center;
  border: 1px solid #5b6860;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 0.9rem;
}
.nav-cta:hover {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}
.nav-toggle {
  display: none;
}
.home-hero {
  background: var(--ink);
  color: #f4f7f0;
  padding: 32px 0 26px;
  overflow: hidden;
}
.hero-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-topline .eyebrow {
  font-size: 0.75rem;
  color: #d6dfd7;
}
.hero-location {
  font-size: 0.76rem;
  color: #a6b6ac;
}
.hero-title-row {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  align-items: end;
  gap: 70px;
  padding: 60px 0 70px;
}
.hero-title-row h1 {
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.99;
  font-weight: 500;
  letter-spacing: -0.065em;
}
.hero-title-row .serif-word {
  color: var(--lime);
  font-style: italic;
}
.hero-intro {
  max-width: 360px;
  padding-bottom: 3px;
}
.hero-intro p {
  color: #c1cec5;
  font-size: 1.06rem;
  line-height: 1.7;
}
.hero-intro .btn {
  margin: 24px 0 20px;
  font-size: 0.85rem;
  width: 100%;
  gap: 18px;
}
.hero-intro .text-link {
  font-size: 0.82rem;
  color: #d9e4dd;
  border: 0;
}
.hero-showcase {
  position: relative;
  display: flex;
  align-items: center;
  gap: 55px;
  padding: 0 36px;
}
.hero-screen {
  width: 81%;
  transform: perspective(1200px) rotateY(3deg) rotateX(2deg);
  box-shadow: 0 35px 70px #0006;
  transition: transform 0.7s;
}
.hero-screen .screen-viewport {
  height: 350px;
}
.hero-screen .screen-viewport img {
  width: 100%;
  transform: translateY(var(--hero-shift, 0px));
  transition: transform 0.1s linear;
}
.hero-note {
  width: 190px;
  transform: rotate(-6deg);
}
.hero-note .tiny-cross {
  font-size: 70px;
  line-height: 1;
  margin: 0 0 16px;
}
.hero-note p {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.65rem;
  line-height: 1.2;
  color: var(--lime);
}
.hero-note > span:last-child {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  display: block;
  margin-top: 20px;
  color: #a0b29e;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 44px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #9cae9f;
}
.app-preview {
  background: #fff;
  border: 1px solid #cfd5d1;
  border-radius: 10px;
  overflow: hidden;
  color: var(--ink);
}
.window-bar {
  height: 35px;
  background: #edf0ee;
  border-bottom: 1px solid #dbe1dc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #52635b;
}
.window-dots {
  display: flex;
  gap: 5px;
}
.window-dots i {
  width: 6px;
  height: 6px;
  border: 1px solid #95a69c;
  border-radius: 50%;
}
.preview-label {
  font-size: 0.75rem;
  color: #637069;
}
.screen-viewport {
  overflow: hidden;
  background: #eef2f0;
}
.platform-strip {
  border-bottom: 1px solid var(--line);
  background: white;
  padding: 32px 0;
}
.trusted-section {
  background: #eef3ef;
  padding: 78px 0 64px;
  border-bottom: 1px solid var(--line);
}
.trusted-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 34px;
}
.trusted-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  margin-top: 14px;
}
.trusted-heading > p {
  max-width: 320px;
  font-size: 1rem;
  color: #52665a;
}
.client-bands {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.client-band {
  overflow-x: auto;
  scrollbar-width: thin;
  padding: 4px 0;
}
.client-track,
.client-group {
  display: flex;
  width: max-content;
}
.client-group {
  flex-shrink: 0;
  gap: 14px;
  padding-right: 14px;
}
.client-group-copy {
  display: none;
}
.client-band .client-tile {
  flex: 0 0 184px;
  width: 184px;
  min-height: 122px;
  padding: 18px 16px 12px;
}
.client-band .client-logo-space {
  height: 56px;
}
.client-flow-animated .client-band {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 24px, #000 calc(100% - 24px), transparent);
}
.client-flow-animated .client-group-copy {
  display: flex;
}
.client-flow-animated .client-track {
  animation: client-scroll 56s linear infinite;
}
.client-flow-animated .client-band:nth-child(2) .client-track {
  animation-direction: reverse;
}
.client-flow-paused .client-track,
.client-band:hover .client-track {
  animation-play-state: paused;
}
/* Keyboard navigation uses the original, naturally scrollable row. */
.client-flow-animated .client-band:has(:focus-visible) {
  overflow-x: auto;
  mask-image: none;
}
.client-band:has(:focus-visible) .client-track {
  animation: none;
  transform: none;
}
.client-band:has(:focus-visible) .client-group-copy {
  display: none;
}
@keyframes client-scroll {
  to { transform: translateX(-50%); }
}
.client-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 16px 14px;
  background: #fff;
  border: 1px solid #d2ded5;
  border-radius: 9px;
  min-width: 0;
  color: #163627;
}
a.client-tile:hover {
  border-color: #709b55;
  transform: translateY(-3px);
}
.client-logo-space {
  height: 72px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo-space img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.client-name {
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.35;
  color: #506759;
}
.client-name-mark {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}
.client-tile-dark {
  background: #123b2c;
  border-color: #325e46;
  color: #f0fff4;
}
.client-tile-dark .client-name {
  color: #c4d6cc;
}
.trusted-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 22px 0 34px;
  font-size: 0.85rem;
  color: #526b5b;
}
.client-motion-toggle {
  padding: 4px 0;
  color: inherit;
  border: 0;
  border-bottom: 1px solid #8ca28f;
  background: transparent;
  font-size: 0.8rem;
}
.showcase-launch {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 30px;
  background: #0e291e;
  border-radius: 12px;
  color: #f2fff4;
}
.showcase-play {
  background: var(--lime);
  color: #173519;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.showcase-launch strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin-bottom: 3px;
}
.showcase-launch > span > span {
  color: #bfcec1;
  font-size: 0.95rem;
}
.showcase-launch-arrow {
  margin-left: auto;
  font-size: 2rem;
  color: var(--lime);
}
.showcase-launch:hover .showcase-play {
  box-shadow: 0 0 0 8px #a9ff4f20;
}
@media (max-width: 1000px) {
  .trusted-heading {
    align-items: start;
    gap: 28px;
  }
  .trusted-heading > p {
    max-width: 270px;
  }
}
@media (max-width: 600px) {
  .trusted-section {
    padding: 50px 0;
  }
  .trusted-heading {
    display: block;
  }
  .trusted-heading > p {
    max-width: none;
    margin-top: 22px;
  }
  .client-band .client-tile {
    flex-basis: 158px;
    width: 158px;
  }
  .client-tile {
    padding: 18px 12px 12px;
  }
  .client-logo-space {
    height: 62px;
  }
  .trusted-bottom {
    align-items: start;
    font-size: 0.8rem;
  }
  .client-motion-toggle {
    white-space: nowrap;
  }
  .showcase-launch {
    padding: 22px 18px;
    gap: 16px;
  }
  .showcase-launch strong {
    font-size: 1.25rem;
  }
  .showcase-launch > span > span {
    font-size: 0.85rem;
    line-height: 1.5;
    display: block;
  }
  .showcase-launch-arrow {
    display: none;
  }
  .showcase-play {
    width: 42px;
    height: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .client-flow-animated .client-track {
    animation: none;
  }
  .client-flow-animated .client-band {
    overflow-x: auto;
    mask-image: none;
  }
  .client-flow-animated .client-group-copy {
    display: none;
  }
  a.client-tile:hover {
    transform: none;
  }
}
.platform-strip .wrap {
  display: flex;
  align-items: center;
  gap: 38px;
}
.platform-strip p {
  font-size: 0.8rem;
  line-height: 1.5;
  min-width: 190px;
}
.platform-strip strong {
  font-weight: 500;
  color: var(--ink);
}
.platform-wordmarks {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex: 1;
  gap: 32px;
  font-size: 1.35rem;
  letter-spacing: -0.05em;
  font-weight: 600;
}
.platform-wordmarks img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.platform-wordmarks > span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.shopify-wordmark {
  font-style: italic;
}
.zoho-wordmark {
  letter-spacing: 0.08em !important;
}
.round-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.expertise-section {
  padding: 64px 0 48px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.expertise-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 32px;
}
.expertise-heading h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  margin-bottom: 0;
}
.expertise-actions {
  display: flex;
  align-items: end;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.expertise-pause {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 10px 16px;
  font: inherit;
  font-size: 0.875rem;
  cursor: pointer;
}
.expertise-pause:hover {
  background: #f0f4eb;
}
.expertise-window {
  overflow-x: auto;
  padding: 6px 0 14px;
  scrollbar-width: thin;
}
.expertise-track {
  display: flex;
  width: max-content;
}
.expertise-track + .expertise-track {
  margin-top: 16px;
}
.expertise-set {
  list-style: none;
  margin: 0;
  padding: 0 16px 0 0;
  display: flex;
  gap: 16px;
}
.expertise-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 310px;
  flex: 0 0 auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fcfdfb;
}
.expertise-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.expertise-brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 600;
}
.expertise-brand span span {
  display: block;
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 6px;
  line-height: 1.4;
}
.expertise-copy {
  display: none;
}
.is-animated .expertise-copy {
  display: flex;
}
.is-animated .expertise-set {
  min-width: 100vw;
  justify-content: space-around;
}
.is-animated .expertise-window {
  overflow: hidden;
}
.is-animated .expertise-track {
  animation: expertise-scroll 60s linear infinite;
}
.is-animated .expertise-track:nth-child(even) {
  animation-direction: reverse;
  animation-duration: 55s;
}
.expertise-section:not(.is-animated) .expertise-track {
  width: auto;
}
.expertise-section:not(.is-animated) .expertise-set {
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 16px;
}
.is-animated.is-paused .expertise-track,
.is-animated .expertise-window:hover .expertise-track,
.is-animated .expertise-window:focus-within .expertise-track {
  animation-play-state: paused;
}
@keyframes expertise-scroll {
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 800px) {
  .expertise-heading {
    align-items: start;
    flex-direction: column;
  }
  .expertise-actions {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .expertise-brand {
    width: 280px;
    padding: 20px;
  }
}
@media print {
  .expertise-pause,
  .expertise-copy {
    display: none !important;
  }
  .expertise-window {
    overflow: visible !important;
  }
  .expertise-track {
    width: auto;
    animation: none !important;
    transform: none !important;
  }
  .expertise-set {
    flex-wrap: wrap;
  }
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-bottom: 52px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p {
  max-width: 340px;
  font-size: 1.05rem;
}
.software-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.software-type {
  padding: 27px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.software-type:hover {
  background: #edf3e5;
}
.software-type svg {
  width: 30px;
  height: 30px;
  display: block;
  margin-bottom: 20px;
  color: #435b46;
}
.software-type h3 {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  font-weight: 550;
}
.software-type p {
  font-size: 0.84rem;
  line-height: 1.5;
  max-width: 210px;
}
.solutions-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.solutions-grid .software-type {
  padding: 30px;
  background: white;
  scroll-margin-top: 110px;
}
.solutions-grid .software-type:target {
  background: #edf3e5;
  box-shadow: inset 0 0 0 2px #7a9468;
}
.solutions-grid .software-type h3 {
  font-size: 1.3rem;
}
.solutions-grid .software-type p {
  max-width: none;
  font-size: 1rem;
}
.solutions-grid ul {
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.solutions-grid li + li {
  margin-top: 8px;
}
@media (max-width: 1100px) {
  .software-grid.solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .software-grid.solutions-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.work-section {
  background: #edf1ee;
}
.scroll-showcase {
  display: grid;
  grid-template-columns: 36% 59%;
  gap: 5%;
  position: relative;
  align-items: start;
}
.story-step {
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 0;
  scroll-margin-top: 100px;
}
.story-step h3 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  margin: 20px 0 25px;
}
.story-step > p {
  max-width: 360px;
  font-size: 1rem;
}
.story-number {
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  color: #526758;
}
.feature-list {
  padding: 0;
  list-style: none;
  margin: 26px 0 32px;
  color: #495b50;
  font-size: 0.85rem;
}
.feature-list li {
  padding: 7px 0 7px 22px;
  position: relative;
}
.feature-list li:before {
  content: "↗";
  position: absolute;
  left: 0;
  color: #638338;
}
.sticky-screen {
  position: sticky;
  top: calc(50vh - 240px);
  margin-top: 90px;
  min-width: 0;
}
.screen-stack {
  position: relative;
  aspect-ratio: 1.45;
}
.screen-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity 0.55s,
    transform 0.55s,
    visibility 0.55s;
  box-shadow: 0 22px 42px #263d2421;
}
.screen-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.screen-panel .screen-viewport {
  height: calc(100% - 35px);
}
.screen-panel .screen-viewport img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: top;
  transform: translateY(var(--screen-shift, 0px));
}
.mobile-panel .screen-viewport {
  background: #efe6f4;
  display: flex;
  justify-content: center;
}
.mobile-panel .screen-viewport img {
  width: auto;
  height: 170%;
  min-height: 0;
  object-fit: contain;
  box-shadow: 0 0 35px #524b6c21;
  border-left: 1px solid #cac4d3;
  border-right: 1px solid #cac4d3;
}
.map-panel .screen-viewport img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: none;
}
.screen-caption {
  display: flex;
  justify-content: space-between;
  color: #6b7c6e;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  margin-top: 20px;
}
.selected-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.selected-grid {
  margin: 50px 0 40px;
}
.project-card {
  min-width: 0;
}
.hobby-project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hobby-project-grid .project-card-art {
  height: auto;
  aspect-ratio: 16 / 10;
}
.hobby-project-grid .project-thumbnail {
  width: 92%;
  height: 92%;
  margin: 0;
  object-fit: contain;
}
.project-card-art {
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}
.blue {
  background: #d8e8ed;
  color: #274251;
}
.lime {
  background: #daeaaa;
  color: #2b421b;
}
.sage {
  background: #d8e5d8;
  color: #2f4e3b;
}
.pink {
  background: #ead9e1;
  color: #743b54;
}
.purple {
  background: #e1daed;
  color: #554771;
}
.orange {
  background: #eadccc;
  color: #81512b;
}
.dark {
  background: #1e2e29;
  color: #f5f6ef;
}
.project-logo {
  width: 160px;
  height: 70px;
  object-fit: contain;
}
.project-monogram {
  font-size: 4rem;
  letter-spacing: -0.1em;
  font-weight: 500;
}
.project-index {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 0.75rem;
  opacity: 0.6;
}
.project-thumbnail {
  width: 90%;
  height: 88%;
  object-fit: cover;
  object-position: top;
  border-radius: 5px;
  margin-top: 30px;
  box-shadow: 0 10px 30px #0002;
  transition: transform 0.35s;
}
.project-thumbnail.mobile {
  object-fit: contain;
  box-shadow: none;
  width: auto;
  max-width: 90%;
  height: calc(100% - 24px);
  margin: 24px 0 0;
}
.project-card-link:hover .project-thumbnail {
  transform: translateY(-7px);
}
.project-card-link:hover h3 span {
  transform: translate(3px, -3px);
}
.project-card-copy {
  padding: 23px 0;
}
.project-card-copy .eyebrow {
  font-size: 0.75rem;
  color: #6d7c70;
}
.project-card-copy h3 {
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 10px 0 15px;
}
.project-card-copy h3 span {
  font-size: 1.2rem;
  transition: transform 0.2s;
}
.project-card-copy p {
  font-size: 0.9rem;
  line-height: 1.6;
}
.project-card-story {
  margin: 0;
}
.project-card-story dt {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}
.project-card-story dd {
  margin: 5px 0 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}
.project-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  border-top: 1px solid #d1dbd1;
  margin-top: 22px;
  padding-top: 13px;
  font-size: 0.75rem;
  color: #627264;
}
.impact-section {
  background: var(--lime);
  padding: 92px 0;
}
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.impact-grid > div:first-child p {
  max-width: 360px;
  color: #3e5326;
}
.impact-stat {
  border-left: 1px solid #abc952;
  padding-left: 70px;
}
.stat-number {
  font-size: clamp(6rem, 12vw, 12rem);
  letter-spacing: -0.09em;
  line-height: 0.95;
  font-weight: 500;
}
.stat-number span {
  font-size: 0.4em;
  letter-spacing: -0.04em;
}
.impact-stat h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin-top: 25px;
}
.stat-note {
  font-size: 0.76rem;
  color: #445629;
  max-width: 385px;
  margin-top: 20px;
  line-height: 1.55;
}
.service-list > a {
  display: grid;
  grid-template-columns: 45px 1.2fr 1fr 30px;
  gap: 24px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.service-list > a:last-child {
  border-bottom: 1px solid var(--line);
}
.service-list > a > span {
  font-size: 0.75rem;
  color: #738678;
}
.service-list h3 {
  font-size: 1.7rem;
}
.service-list p {
  font-size: 0.95rem;
  max-width: 355px;
}
.service-list b {
  font-size: 24px;
  font-weight: 400;
}
.service-list > a:hover h3 {
  color: #587a27;
}
.hobby-section {
  background: #e7eddf;
}
.hobby-preview {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
}
.hobby-image {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.hobby-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
}
.hobby-image > span {
  display: flex;
  justify-content: space-between;
  font-size: 1.35rem;
  margin-top: 18px;
  letter-spacing: -0.04em;
}
.hobby-image b {
  font-weight: 400;
}
.hobby-links > a {
  display: flex;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid #c3cebc;
  font-size: 1rem;
}
.hobby-links .text-link {
  margin-top: 10px;
  border: 0;
}
.world-section {
  padding: 115px 0;
  background: var(--ink);
  color: white;
}
.world-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}
.world-label {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  color: #a8bcad;
}
.world-label .tiny-cross {
  font-size: 170px;
  font-weight: 300;
  line-height: 1;
  margin: 0;
}
.world-grid h2 {
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  margin-top: 0;
}
.world-grid h2 em {
  color: var(--lime);
}
.world-grid p {
  color: #a8bbae;
  max-width: 480px;
  font-size: 1.05rem;
}
.world-grid .text-link {
  margin-top: 32px;
  color: var(--lime);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 55px;
}
.process-grid article {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.process-grid article > span {
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  color: #70826f;
}
.process-grid h3 {
  font-size: 1.6rem;
  margin: 25px 0 18px;
}
.process-grid p {
  font-size: 0.97rem;
}
.site-footer {
  background: var(--ink);
  color: #edf4ec;
  padding: 90px 0 25px;
}
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 65px;
  border-bottom: 1px solid #3a473f;
}
.footer-cta .eyebrow {
  color: #a0b399;
}
.footer-cta h2 {
  font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: 1;
  margin: 22px 0 0;
}
.footer-cta h2 em {
  color: var(--lime);
}
.footer-contact {
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
  border-radius: 50%;
  width: 145px;
  height: 145px;
  font-size: 5rem;
  font-weight: 300;
  transition: transform 0.25s;
}
.footer-contact:hover {
  transform: rotate(45deg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 0.8fr 1fr;
  gap: 45px;
  margin: 60px 0 70px;
}
.footer-grid p {
  font-size: 0.83rem;
  color: #93a68f;
  line-height: 1.8;
  margin-top: 23px;
}
.footer-label {
  display: block;
  color: #93a68f;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  margin-bottom: 18px;
}
.footer-grid > div > a:not(.brand) {
  display: block;
  color: #d2decf;
  font-size: 0.84rem;
  padding: 4px 0;
}
.footer-grid a:hover {
  color: var(--lime);
}
.footer-small {
  display: block;
  color: #93a68f;
  font-size: 0.75rem;
  margin-top: 15px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #344536;
  padding-top: 24px;
  font-size: 0.75rem;
  color: #9aad93;
}
.hero {
  padding: 88px 0 75px;
  background: var(--ink);
  color: #f3f5ed;
}
.hero .eyebrow {
  color: #afc095;
}
.hero h1 {
  font-size: clamp(3rem, 5.8vw, 6rem);
  max-width: 1050px;
  margin: 24px 0 32px;
}
.hero p {
  color: #b6c6b8;
  font-size: 1.1rem;
  max-width: 730px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}
.hero .btn-outline {
  border-color: #72836e;
  color: #e7eee0;
}
.inner-page section:not(.hero):not(.section) {
  scroll-margin-top: 35px;
}
.inner-page main > section:not(.hero):not(.section) {
  padding: 70px 0;
}
.inner-page .hero + section {
  padding-top: 70px;
}
.wrap-narrow {
  max-width: 880px;
}
.grid {
  display: grid;
  gap: 28px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.card,
.post-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.card h3,
.post-card h3 {
  font-size: 1.45rem;
  margin-bottom: 18px;
}
.card p,
.post-card p {
  font-size: 0.95rem;
}
.card p + p {
  margin-top: 16px;
}
.card ul {
  padding-left: 20px;
  color: var(--muted);
}
.tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: #e9efd9;
  color: #4d653b;
  border-radius: 4px;
  margin-bottom: 16px;
}
.post-card h3 a:hover {
  text-decoration: underline;
}
.post-meta {
  font-size: 0.75rem !important;
  margin-top: 20px;
  color: #738471;
}
.bg-soft {
  background: #eaf0e8;
}
.section-head {
  margin-bottom: 45px;
}
.section-head p {
  max-width: 730px;
}
.section-head h2 {
  margin-top: 15px;
}
.cta-banner {
  padding: 55px;
  background: var(--lime);
  border-radius: 10px;
}
.cta-banner h2 {
  font-size: 2.8rem;
  max-width: 850px;
  margin-top: 0;
}
.cta-banner p {
  max-width: 730px;
  color: #496033;
}
.cta-banner .btn {
  margin-top: 25px;
  background: var(--ink);
  color: white;
}
.card-link {
  display: inline-block;
  margin-top: 20px;
  text-decoration: underline;
}
.inner-page .wrap-narrow > p {
  margin: 18px 0 30px;
}
.inner-page .wrap-narrow > h2 {
  margin-top: 52px;
  font-size: 2.3rem;
}
.portfolio-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 45px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
}
.portfolio-intro p {
  max-width: 620px;
  font-size: 0.94rem;
}
.portfolio-count {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.07em;
}
.portfolio-section-title {
  margin: 60px 0 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.portfolio-section-title h2 {
  margin: 0;
}
.portfolio-section-title p {
  max-width: 460px;
}
.project-detail-hero {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 70px;
  align-items: center;
}
.detail-brand {
  height: 280px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.detail-brand .project-logo {
  width: 70%;
  height: 140px;
}
.detail-brand .project-monogram {
  font-size: 7rem;
}
.project-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin: 0 0 55px;
}
.project-facts .eyebrow {
  color: #6c7f66;
  margin-bottom: 16px;
}
.project-facts p {
  color: var(--ink);
  font-size: 1.1rem;
}
.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tool-tags span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 0.85rem;
}
.detail-image {
  background: #e5eae4;
  border-radius: 10px;
  padding: 25px;
  margin: 0 0 64px;
}
.detail-image img {
  width: 100%;
  max-height: 800px;
  object-fit: contain;
}
.detail-image figcaption {
  margin-top: 15px;
  font-size: 0.8rem;
  color: #60715a;
}
.detail-image.mobile img {
  max-height: 650px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.project-gallery {
  margin: 0 0 88px;
}
.gallery-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 40px;
}
.gallery-intro h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin: 12px 0 18px;
  max-width: 750px;
}
.gallery-intro p {
  max-width: 700px;
  color: var(--muted);
}
.gallery-count {
  flex-shrink: 0;
  color: #07382a;
  font-weight: 700;
}
.gallery-count small {
  font-weight: 400;
  color: var(--muted);
}
.gallery-group + .gallery-group {
  margin-top: 56px;
}
.gallery-group h3 {
  font-size: 1.2rem;
  margin: 0 0 24px;
}
.gallery-grid {
  display: grid;
  gap: 28px;
}
.gallery-grid--mobile {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gallery-grid--desktop {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.gallery-card {
  min-width: 0;
  margin: 0;
}
.gallery-open {
  display: block;
  position: relative;
  padding: 18px;
  background: #e5eae4;
  border: 1px solid #d9e1d6;
  border-radius: 14px;
  transition:
    border-color 180ms,
    background 180ms;
}
.gallery-open:hover,
.gallery-open:focus-visible {
  background: #dae5d7;
  border-color: #567c53;
}
.gallery-screen {
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
}
.gallery-screen img {
  display: block;
  width: 100%;
  height: auto;
}
.gallery-grid--mobile .gallery-screen {
  border: 4px solid #173a2c;
  border-radius: 20px;
}
.gallery-enlarge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #07382a;
  color: #a9ff4f;
}
.gallery-card figcaption {
  padding: 16px 2px 0;
}
.gallery-card h4 {
  font-size: 1rem;
  margin: 0 0 6px;
}
.gallery-card p {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}
.gallery-dialog {
  width: min(1440px, calc(100vw - 32px));
  height: calc(100dvh - 32px);
  max-width: none;
  max-height: none;
  padding: 24px;
  border: 1px solid #426357;
  border-radius: 16px;
  background: #082c23;
  color: #f7fbf4;
}
.gallery-dialog[open] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gallery-dialog::backdrop {
  background: rgb(0 15 10 / 88%);
}
.gallery-dialog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.gallery-dialog .eyebrow {
  color: #a9ff4f;
}
.gallery-dialog h2 {
  font-size: 1.35rem;
  margin: 6px 0 0;
}
.gallery-dialog button {
  flex-shrink: 0;
  border: 1px solid #779188;
  border-radius: 7px;
  background: transparent;
  color: #fff;
  min-height: 44px;
  padding: 10px 16px;
  font: inherit;
  cursor: pointer;
}
.gallery-dialog button:hover {
  background: #22473b;
}
.gallery-dialog button:focus-visible {
  outline: 2px solid #a9ff4f;
  outline-offset: 3px;
}
.gallery-dialog-image {
  flex: 1;
  min-height: 0;
  display: flex;
  justify-content: center;
}
.gallery-dialog-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery-dialog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.gallery-dialog-footer p {
  text-align: center;
  font-size: 0.85rem;
  color: #d4e0d9;
  margin: 0;
}
html:has(.gallery-dialog[open]) {
  overflow: hidden;
}
@media (max-width: 900px) {
  .gallery-grid--mobile {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .gallery-intro {
    align-items: start;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .gallery-grid--mobile {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid--desktop {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    gap: 28px 14px;
  }
  .gallery-open {
    padding: 9px;
    border-radius: 9px;
  }
  .gallery-grid--mobile .gallery-screen {
    border-width: 2px;
    border-radius: 12px;
  }
  .gallery-dialog {
    padding: 16px;
    width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
  }
  .gallery-dialog-footer {
    flex-wrap: wrap;
    gap: 12px;
  }
  .gallery-dialog-footer p {
    flex-basis: 100%;
    order: -1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-open {
    transition: none;
  }
}
.detail-grid h2 {
  font-size: 2.4rem;
  margin-top: 0;
}
.detail-grid .feature-list {
  font-size: 1rem;
}
.project-story section + section {
  margin-top: 36px;
}
.project-story h2 {
  font-size: 1.75rem;
  margin-bottom: 14px;
}
.project-story .text-link {
  margin-top: 28px;
}
.project-story p + p {
  margin-top: 18px;
}
.case-decisions {
  margin-bottom: 40px;
  padding: 28px;
  border: 1px solid #d2dcd1;
  border-radius: 12px;
  background: #eef2e9;
}
.detail-grid .case-decisions h2 {
  margin-bottom: 24px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.case-decisions dl,
.case-decisions dd {
  margin: 0;
}
.case-decisions dl > div + div {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #d2dcd1;
}
.case-decisions dt {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 650;
}
.case-decisions dd {
  color: #495b50;
  font-size: 1rem;
  line-height: 1.65;
}
.breadcrumb-link {
  display: inline-block;
  font-size: 0.85rem;
  color: #a8be98;
  margin-bottom: 24px;
}
.toolkit-group {
  margin-bottom: 65px;
}
.toolkit-group h2 {
  font-size: 2.4rem;
  margin-bottom: 28px;
}
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tool-card {
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 22px;
  background: white;
  border-radius: 8px;
  min-width: 0;
}
.tool-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #eaf0e3;
  border-radius: 9px;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.tool-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.tool-card h3 {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}
.tool-card p {
  font-size: 0.75rem;
  margin-top: 5px;
}
.tool-note {
  font-size: 0.82rem;
  margin-top: 24px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 70px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-field {
  margin-bottom: 24px;
}
.form-field label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 9px;
  color: #334832;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #bcc8b8;
  background: white;
  color: var(--ink);
  border-radius: 5px;
  min-height: 50px;
}
.form-field textarea {
  resize: vertical;
}
.form-note {
  font-size: 0.83rem;
  line-height: 1.5;
  margin-top: 17px;
  max-width: 500px;
}
.info-list {
  list-style: none;
  padding: 0;
}
.business-address {
  font-style: normal;
  line-height: 1.7;
}
.footer-grid .business-address {
  font-size: 0.875rem;
  color: #a8beae;
  margin-top: 14px;
}
.info-list li {
  margin: 25px 0;
}
.info-list strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--ink);
}
.info-list a {
  text-decoration: underline;
}
.faq-item {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.faq-item p {
  font-size: 1rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.step h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.article,
.article-body,
.post-content {
  max-width: 800px;
  margin: auto;
}
.article p,
.article-body p,
.post-content p {
  margin: 18px 0;
}
.article h2,
.article-body h2,
.post-content h2 {
  font-size: 2.3rem;
  margin-top: 48px;
}
.article h3,
.article-body h3,
.post-content h3 {
  font-size: 1.5rem;
  margin: 32px 0 18px;
}
.article ul,
.article-body ul,
.post-content ul {
  color: var(--muted);
}
.article a,
.article-body a,
.post-content a {
  text-decoration: underline;
}
.blog-post-header {
  padding: 70px 0;
}
.blog-post-header h1 {
  font-size: 3.8rem;
}
.blog-post-content {
  max-width: 800px;
  margin: auto;
  padding: 60px 0;
}
.blog-post-content p {
  margin: 20px 0;
}
.blog-post-content h2 {
  font-size: 2.4rem;
  margin-top: 45px;
}
.blog-post-content h3 {
  font-size: 1.6rem;
  margin: 30px 0 15px;
}
.related-posts {
  margin-top: 70px;
}
.service-detail {
  border-top: 1px solid var(--line);
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}
.service-detail h2,
.service-detail h3 {
  margin: 0;
  font-size: 2.8rem;
}
.service-detail p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}
@media (min-width: 1500px) {
  .hero-screen .screen-viewport {
    height: 400px;
  }
  .hero-title-row {
    padding-top: 75px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .primary-nav {
    gap: 25px;
  }
  .primary-nav ul {
    gap: 22px;
  }
  .hero-title-row {
    gap: 40px;
  }
  .hero-intro p {
    font-size: 0.96rem;
  }
  .hero-showcase {
    padding: 0;
    gap: 28px;
  }
  .hero-screen {
    width: 80%;
  }
  .hero-note {
    width: 160px;
  }
  .hero-note p {
    font-size: 1.4rem;
  }
  .hero-screen .screen-viewport {
    height: 300px;
  }
  .platform-wordmarks {
    gap: 20px;
    font-size: 1rem;
  }
  .platform-strip .wrap {
    gap: 20px;
  }
  .platform-strip p {
    min-width: 155px;
  }
  .platform-wordmarks img {
    width: 20px;
    height: 20px;
  }
  .section {
    padding: 85px 0;
  }
  .story-step {
    min-height: 560px;
  }
  .sticky-screen {
    top: calc(50vh - 190px);
  }
  .impact-grid {
    gap: 60px;
  }
  .impact-stat {
    padding-left: 45px;
  }
  .toolkit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    gap: 25px;
  }
  .hobby-preview {
    gap: 35px;
  }
  .world-grid {
    gap: 50px;
  }
  .world-label .tiny-cross {
    font-size: 120px;
  }
}
@media (max-width: 800px) {
  .site-header {
    height: 78px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .brand {
    font-size: 1.35rem;
  }
  .brand img {
    width: 42px;
    height: auto;
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    border: 1px solid #5f715f;
    border-radius: 5px;
    color: white;
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  .primary-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    padding: 25px;
    background: var(--ink);
    border-bottom: 1px solid #64735e;
  }
  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .primary-nav li a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
  }
  .nav-cta {
    justify-content: space-between;
  }
  .hero-location {
    display: none;
  }
  .hero-topline .eyebrow {
    font-size: 0.75rem;
  }
  .hero-title-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 42px 0 45px;
  }
  .hero-title-row h1 {
    font-size: clamp(3.5rem, 11vw, 5.5rem);
  }
  .hero-intro {
    max-width: 500px;
  }
  .hero-intro p {
    font-size: 1.05rem;
  }
  .hero-intro .btn {
    width: auto;
    margin: 22px 20px 0 0;
  }
  .hero-intro .text-link {
    margin-top: 18px;
  }
  .hero-showcase {
    padding: 10px 0;
    display: block;
  }
  .hero-screen {
    width: 100%;
    transform: none;
  }
  .hero-screen .screen-viewport {
    height: 310px;
  }
  .hero-note {
    display: none;
  }
  .hero-bottom {
    margin-top: 24px;
    font-size: 0.75rem;
    gap: 25px;
  }
  .hero-bottom > span:last-child {
    display: none;
  }
  .platform-strip .wrap {
    flex-wrap: wrap;
    gap: 22px;
  }
  .platform-strip p {
    width: 100%;
    font-size: 0.8rem;
  }
  .platform-strip p br {
    display: none;
  }
  .platform-wordmarks {
    justify-content: space-between;
    gap: 22px;
    flex-wrap: wrap;
  }
  .platform-wordmarks > span {
    font-size: 0.9rem;
  }
  .round-link {
    display: none;
  }
  .section-heading {
    display: block;
    margin-bottom: 35px;
  }
  .section-heading > p {
    margin-top: 24px;
    max-width: 500px;
    font-size: 1rem;
  }
  .section-heading > .text-link {
    margin-top: 25px;
  }
  .section {
    padding: 65px 0;
  }
  .software-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .software-type {
    padding: 22px;
  }
  .software-type svg {
    margin-bottom: 16px;
  }
  .software-type h3 {
    font-size: 1rem;
  }
  .software-type p {
    font-size: 0.8rem;
  }
  .scroll-showcase {
    display: flex;
    flex-direction: column;
  }
  .story-rail {
    width: 100%;
  }
  .story-step {
    min-height: 0;
    padding: 40px 0;
    border-top: 1px solid #c8d4c5;
  }
  .story-step h3 {
    font-size: 2.5rem;
  }
  .story-step > p {
    max-width: 550px;
  }
  .sticky-screen {
    position: static;
    margin-top: 15px;
    width: 100%;
  }
  .screen-stack {
    aspect-ratio: 1.45;
  }
  .screen-panel {
    display: none;
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
    height: 100%;
  }
  .screen-panel:first-child {
    display: block;
  }
  .screen-caption {
    margin-bottom: 20px;
  }
  .selected-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .selected-grid .project-card:last-child {
    grid-column: 1/-1;
  }
  .selected-grid .project-card:last-child .project-card-art {
    height: 190px;
  }
  .project-card-art {
    height: 190px;
  }
  .project-card-copy h3 {
    font-size: 1.25rem;
  }
  .project-card-copy p {
    font-size: 0.86rem;
  }
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .impact-stat {
    border-left: 0;
    border-top: 1px solid #adc955;
    padding: 35px 0 0;
  }
  .impact-section {
    padding: 65px 0;
  }
  .stat-number {
    font-size: 9rem;
  }
  .service-list > a {
    grid-template-columns: 25px 1fr 25px;
    gap: 16px;
    padding: 28px 0;
  }
  .service-list p {
    grid-column: 2;
    grid-row: 2;
  }
  .service-list b {
    grid-column: 3;
    grid-row: 1;
  }
  .service-list h3 {
    font-size: 1.5rem;
  }
  .hobby-preview {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .world-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .world-label {
    gap: 20px;
  }
  .world-label .tiny-cross {
    font-size: 70px;
  }
  .world-section {
    padding: 65px 0;
  }
  .world-grid h2 {
    font-size: 3.7rem;
  }
  .process-grid {
    gap: 22px;
  }
  .process-grid h3 {
    font-size: 1.3rem;
  }
  .process-grid p {
    font-size: 0.9rem;
  }
  .footer-contact {
    width: 100px;
    height: 100px;
    font-size: 3.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .footer-cta h2 {
    font-size: 4.6rem;
  }
  .footer-cta .eyebrow {
    font-size: 0.75rem;
  }
  .site-footer {
    padding-top: 65px;
  }
  .hero {
    padding: 55px 0;
  }
  .hero h1 {
    font-size: 3.6rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .grid-3,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .project-detail-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .detail-brand {
    height: 170px;
    max-width: 450px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .detail-image {
    margin-inline: 0;
    padding: 12px;
  }
  .toolkit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-detail {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .portfolio-section-title {
    display: block;
  }
  .portfolio-section-title p {
    margin-top: 20px;
  }
  .cta-banner {
    padding: 35px;
  }
  .cta-banner h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  .hero-title-row h1 {
    font-size: 3.5rem;
  }
  .hero-intro .btn {
    font-size: 0.82rem;
    padding: 14px 18px;
  }
  .hero-screen .screen-viewport {
    height: 225px;
  }
  .window-bar {
    font-size: 0.75rem;
    padding: 0 9px;
  }
  .preview-label {
    display: none;
  }
  .platform-wordmarks {
    justify-content: flex-start;
    column-gap: 24px;
    row-gap: 16px;
  }
  .platform-wordmarks > span {
    font-size: 1rem;
  }
  .software-type {
    padding: 20px 16px;
  }
  .software-type h3 {
    font-size: 0.94rem;
  }
  .software-type p {
    font-size: 0.78rem;
  }
  .selected-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }
  .selected-grid .project-card:last-child {
    grid-column: auto;
  }
  .project-card-art,
  .selected-grid .project-card:last-child .project-card-art {
    height: 240px;
  }
  .project-card-copy {
    padding: 20px 0 30px;
  }
  .project-card-copy h3 {
    font-size: 1.55rem;
  }
  .project-card-copy p {
    font-size: 0.96rem;
  }
  .project-logo {
    width: 170px;
    height: 85px;
  }
  .project-monogram {
    font-size: 5rem;
  }
  .hobby-image img {
    height: 260px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 35px;
  }
  .process-grid h3 {
    font-size: 1.6rem;
    margin: 17px 0 12px;
  }
  .process-grid p {
    font-size: 1rem;
  }
  .footer-cta h2 {
    font-size: 3.8rem;
  }
  .footer-contact {
    width: 70px;
    height: 70px;
    font-size: 2.7rem;
    flex-shrink: 0;
    margin-left: 10px;
  }
  .footer-cta .eyebrow {
    font-size: 0.75rem;
  }
  .footer-grid {
    column-gap: 20px;
    row-gap: 32px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-grid .brand {
    font-size: 1.5rem;
  }
  .footer-grid > div > a:not(.brand) {
    font-size: 0.8rem;
  }
  .footer-label {
    font-size: 0.75rem;
  }
  .hero h1 {
    font-size: 2.9rem;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .blog-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .toolkit-grid {
    gap: 10px;
  }
  .tool-card {
    padding: 16px 12px;
    gap: 10px;
    align-items: flex-start;
  }
  .tool-icon {
    width: 29px;
    height: 29px;
    border-radius: 5px;
    font-size: 0.85rem;
  }
  .tool-icon img {
    width: 20px;
    height: 20px;
  }
  .tool-card h3 {
    font-size: 0.86rem;
    line-height: 1.2;
  }
  .tool-card p {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .project-facts {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .portfolio-count {
    font-size: 2.5rem;
  }
  .portfolio-intro {
    align-items: flex-start;
  }
  .portfolio-intro p {
    font-size: 0.87rem;
  }
  .hero-actions {
    gap: 12px;
  }
  .detail-grid h2 {
    font-size: 2.15rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .hero-screen,
  .screen-panel,
  .screen-panel .screen-viewport img {
    transform: none !important;
  }
}
@media print {
  .site-header,
  .site-footer,
  .hero-note,
  .nav-toggle {
    display: none;
  }
  body {
    color: #000;
    background: #fff;
  }
  .wrap {
    width: 100%;
  }
  .hero {
    background: #fff;
    color: #000;
  }
  .hero p {
    color: #333;
  }
  .section {
    padding: 25px 0;
  }
  .sticky-screen {
    position: static;
  }
  .story-step {
    min-height: 0;
  }
  .screen-stack {
    display: none;
  }
  a {
    text-decoration: underline;
  }
}

/* Existing long-form articles retain their readable layout. */
.post {
  padding: 65px 0;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 40px;
}
.post h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.7rem);
  margin: 15px 0 25px;
}
.post-body {
  margin-top: 45px;
}
.post-body p {
  margin: 20px 0;
  line-height: 1.85;
}
.post-body h2 {
  font-size: 2.2rem;
  margin: 45px 0 22px;
}
.post-body h3 {
  font-size: 1.5rem;
  margin: 30px 0 18px;
}
.post-body li {
  margin: 10px 0;
  color: var(--muted);
}
.post-body a {
  color: #42682b;
  text-decoration: underline;
}
.post-body table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
}
.post-body th,
.post-body td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
}
.post-body pre {
  overflow-x: auto;
  background: #e6ece2;
  padding: 20px;
}
.post-cta {
  padding: 35px;
  background: var(--lime);
  margin-top: 55px;
  border-radius: 8px;
}
.post-cta h2 {
  font-size: 2rem;
}
.post-cta p {
  color: #455635;
  margin-bottom: 25px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.related-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.related-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.related-card p {
  font-size: 0.9rem;
}
@media (max-width: 600px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
  .post {
    padding: 45px 0;
  }
  .post-cta {
    padding: 25px;
  }
}
h1,
h2,
h3 {
  overflow-wrap: break-word;
}
@media (max-width: 480px) {
  .hero-title-row h1 {
    font-size: clamp(2.75rem, 12.7vw, 3.5rem);
  }
}
