@font-face {
  font-family: "Big Shoulders Display";
  src: url("/assets/fonts/BigShouldersDisplay-ExtraBold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;
  --canvas: #050906;
  --canvas-alt: #0a1008;
  --white: #f4f4f2;
  --ink: #f4f4f2;
  --ink-soft: #949494;
  --line: #172305;
  --line-dark: #263811;
  --dark: #050906;
  --dark-text: #f4f4f2;
  --dark-muted: #949494;
  --focus: #bcfa26;
  --error: #ff7568;
  --acid: #bcfa26;
  --acid-hover: #cccccc;
  --surface: #0a1008;
  --surface-raised: #10180b;
  --section-green: #081209;
  --section-green-raised: #0b160c;
  --grid-line: #172305;
  --grid-line-strong: #263811;
  --font-display: "Big Shoulders Display", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --header-height: 96px;
  --section-space-y: 96px;
  --footer-space-y: 64px;
  --naming-tile: #cccccc;
  --reveal-cover: #949494;
  --space-5xl: 128px;
  --z-dropdown: 10;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

html {
  background: var(--canvas);
}

body {
  position: relative;
  isolation: isolate;
  background: var(--canvas);
  color: var(--ink);
  font-size: 1.0625rem;
  letter-spacing: 0.006em;
  line-height: 1.65;
}

.section-blueprint {
  --blueprint-pitch: calc((100% + 16px) / 12);
  --blueprint-parallax-y: 0px;
  position: absolute;
  z-index: 0;
  top: -72px;
  bottom: -72px;
  left: 50%;
  width: var(--content-width);
  transform: translate3d(-50%, var(--blueprint-parallax-y), 0);
  background-image:
    linear-gradient(to right, transparent calc(100% - 1px), rgba(66, 94, 31, 0.14) calc(100% - 1px)),
    repeating-linear-gradient(to right, rgba(66, 94, 31, 0.14) 0 1px, transparent 1px var(--blueprint-pitch)),
    url("/assets/blueprint-grid.svg");
  background-position: left top, left top, center top;
  background-repeat: no-repeat, no-repeat, repeat-y;
  background-size: 100% 100%, 100% 100%, 100% 972px;
  -webkit-mask-image: radial-gradient(ellipse 94% 88% at center, #000 24%, rgba(0, 0, 0, 0.72) 58%, transparent 100%);
  mask-image: radial-gradient(ellipse 94% 88% at center, #000 24%, rgba(0, 0, 0, 0.72) 58%, transparent 100%);
  content-visibility: auto;
  pointer-events: none;
}

.grid-parallax-ready .section-blueprint {
  will-change: transform;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-loader {
  background: var(--canvas);
  color: var(--white);
}

.site-loader-wordmark,
h1,
h2,
.clarity-second-line,
.footer-brand > a,
.success-page h1 {
  font-family: var(--font-display);
  font-synthesis: none;
}

.site-loader-wordmark {
  color: var(--acid);
  font-size: clamp(2.75rem, 4vw, 3.36rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 0.82;
}

h1,
h2 {
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 0.92;
}

::selection {
  background: var(--acid);
  color: var(--canvas);
}

:focus-visible {
  outline-color: var(--focus);
}

.skip-link {
  background: var(--acid);
  color: var(--canvas);
}

.site-header {
  z-index: var(--z-sticky);
  min-height: var(--header-height);
  border-bottom: 1px solid var(--grid-line);
  background: rgb(5 9 6 / 94%);
  backdrop-filter: blur(10px);
  color: var(--white);
}

.site-header-inner {
  min-height: var(--header-height);
}

.brand-wordmark {
  font-size: 1.25rem;
  letter-spacing: 0.055em;
}

.primary-nav {
  gap: 32px;
}

.primary-nav a {
  min-height: 44px;
  font-size: 0.8125rem;
  letter-spacing: 0.075em;
}

.primary-nav .nav-cta {
  min-height: 56px;
  flex-direction: row;
  gap: 16px;
  padding: 16px 24px;
  border-color: var(--acid);
  background: var(--acid);
  color: var(--canvas);
}

.primary-nav .nav-cta:hover {
  border-color: var(--acid-hover);
  background: var(--acid-hover);
  color: var(--canvas);
}

.primary-nav .nav-cta .arrow-icon {
  width: 18px;
  height: 18px;
}

.eyebrow {
  margin: 0 0 32px;
  color: var(--acid);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.button {
  min-height: 56px;
  gap: 24px;
  padding: 16px 24px;
  border: 1px solid transparent;
  color: var(--white);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
}

.button-primary {
  min-width: 236px;
  justify-content: space-between;
  border-color: var(--acid);
  background: var(--acid);
  color: var(--canvas);
}

.button-primary:hover {
  border-color: var(--acid-hover);
  background: var(--acid-hover);
  color: var(--canvas);
}

.button-secondary {
  min-width: 282px;
  border-color: var(--grid-line-strong);
  background: var(--surface);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--acid);
  background: var(--surface-raised);
  color: var(--acid);
}

.arrow-icon-up {
  width: 20px;
  height: 20px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 17 17 7M9 7h8v8' fill='none' stroke='black' stroke-width='2' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 17 17 7M9 7h8v8' fill='none' stroke='black' stroke-width='2' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button:hover .arrow-icon-up,
.primary-nav .nav-cta:hover .arrow-icon-up {
  transform: translate(4px, -4px);
}

.hero,
.process-section,
.about-section {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: var(--canvas);
}

.hero > :not(.section-blueprint),
.process-section > :not(.section-blueprint),
.about-section > :not(.section-blueprint) {
  position: relative;
  z-index: 1;
}

.clarity-section,
.faq-section {
  --ink-soft: rgb(244 244 242 / 64%);
  --dark-muted: rgb(244 244 242 / 58%);
  background: var(--section-green);
}

.services-section,
.site-footer {
  --ink-soft: rgb(244 244 242 / 64%);
  --dark-muted: rgb(244 244 242 / 58%);
  background: var(--section-green-raised);
}

.work-section,
.brands-section,
.contact-section {
  background: var(--canvas);
}

.clarity-section,
.work-section,
.process-section,
.services-section,
.brands-section,
.about-section,
.faq-section,
.contact-section,
.site-footer {
  border-top: 1px solid var(--grid-line);
}

.hero {
  min-height: 0;
  padding-bottom: 64px;
}

.hero .section-blueprint {
  filter: brightness(1.6);
  -webkit-mask-image: linear-gradient(to bottom, transparent 72px, rgba(0, 0, 0, 0.58) 140px, #000 240px, #000 calc(100% - 240px), rgba(0, 0, 0, 0.58) calc(100% - 140px), transparent calc(100% - 72px));
  mask-image: linear-gradient(to bottom, transparent 72px, rgba(0, 0, 0, 0.58) 140px, #000 240px, #000 calc(100% - 240px), rgba(0, 0, 0, 0.58) calc(100% - 140px), transparent calc(100% - 72px));
}

.hero-blueprint-draw {
  display: none;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.motion-ready .hero .section-blueprint {
  background-image: none;
  opacity: 0;
  transition: opacity 340ms var(--ease-reveal);
}

.motion-ready .hero-blueprint-draw {
  display: block;
}

.motion-ready .hero-blueprint-line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
}

.hero-blueprint-line:nth-child(1) { --grid-index: 0; }
.hero-blueprint-line:nth-child(2) { --grid-index: 1; }
.hero-blueprint-line:nth-child(3) { --grid-index: 2; }
.hero-blueprint-line:nth-child(4) { --grid-index: 3; }
.hero-blueprint-line:nth-child(5) { --grid-index: 4; }
.hero-blueprint-line:nth-child(6) { --grid-index: 5; }
.hero-blueprint-line:nth-child(7) { --grid-index: 6; }
.hero-blueprint-line:nth-child(8) { --grid-index: 7; }
.hero-blueprint-line:nth-child(9) { --grid-index: 8; }
.hero-blueprint-line:nth-child(10) { --grid-index: 9; }
.hero-blueprint-line:nth-child(11) { --grid-index: 10; }
.hero-blueprint-line:nth-child(12) { --grid-index: 11; }
.hero-blueprint-line:nth-child(13) { --grid-index: 12; }

.motion-ready .hero-blueprint-verticals .hero-blueprint-line {
  stroke: rgb(66 94 31 / 14%);
  stroke-width: 1;
}

.motion-ready .hero-blueprint-horizontals .hero-blueprint-line {
  stroke: rgb(23 35 5 / 28%);
  stroke-width: 1;
}

.motion-ready.hero-background-entering .hero .section-blueprint,
.motion-ready.hero-background-settled .hero .section-blueprint {
  opacity: 1;
}

.motion-ready.hero-background-entering .hero-blueprint-verticals .hero-blueprint-line {
  animation: hero-grid-line-draw 640ms var(--ease-reveal) forwards;
  animation-delay: calc(var(--grid-index) * 18ms);
}

.motion-ready.hero-background-entering .hero-blueprint-horizontals .hero-blueprint-line {
  animation: hero-grid-line-draw 640ms var(--ease-reveal) forwards;
  animation-delay: calc(110ms + (var(--grid-index) * 22ms));
}

.motion-ready.hero-background-settled .hero-blueprint-line {
  animation: none;
  stroke-dashoffset: 0;
}

@keyframes hero-grid-line-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.hero-grid {
  display: grid;
  width: var(--container-wide);
  min-height: 592px;
  margin: 0 auto;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 16px;
}

.hero-copy {
  max-width: none;
  grid-column: 1 / 7;
  padding: 104px 0 0;
}

.hero-copy .hero-eyebrow {
  margin-bottom: 32px;
}

.hero-copy h1 {
  max-width: 5.5em;
  margin: 0 0 32px;
  font-size: clamp(4.5rem, 7.15vw, 6rem);
  line-height: 0.9;
}

.hero-dot {
  display: inline-block;
  width: 0.16em;
  height: 0.16em;
  margin-left: 0.045em;
  border-radius: 50%;
  background: var(--acid);
  color: transparent;
  transform: translateY(0.61em);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 27rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.hero-copy .button-row {
  gap: 0;
  margin-top: 24px;
}

.hero-copy .button {
  padding: 16px 24px;
}

.hero-gallery {
  display: block;
  align-content: start;
  grid-column: 7 / 13;
  padding-top: 48px;
}

.hero-image {
  height: auto;
  background: transparent;
}

.hero-image-single {
  aspect-ratio: 4 / 3;
}

.hero-venture-slider {
  --venture-enter-x: 28px;
  --venture-exit-x: -18px;
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgb(188 250 38 / 18%);
  background:
    radial-gradient(circle at 52% 45%, rgb(29 52 23 / 42%), transparent 58%),
    linear-gradient(145deg, #0b160d 0%, #071008 100%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 2%),
    0 24px 64px rgb(0 0 0 / 16%);
  isolation: isolate;
}

.hero-venture-slider::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(188 250 38 / 2.5%) 1px, transparent 1px),
    linear-gradient(rgb(188 250 38 / 2.5%) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 78%, transparent);
  pointer-events: none;
}

.hero-venture-slider[data-direction="previous"] {
  --venture-enter-x: -28px;
  --venture-exit-x: 18px;
}

.venture-slider-count,
.venture-slider-caption {
  position: absolute;
  z-index: 4;
  margin: 0;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.venture-slider-count {
  top: 28px;
  left: 32px;
}

.venture-slider-count [data-venture-current] {
  color: var(--acid);
}

.venture-slider-stage {
  position: absolute;
  z-index: 1;
  inset: 68px 70px 112px;
}

.venture-slide {
  position: absolute;
  inset: 0;
  display: grid;
  margin: 0;
  opacity: 0;
  clip-path: inset(0 0 0 7%);
  pointer-events: none;
  transform: translate3d(var(--venture-enter-x), 0, 0) scale(0.985);
  transition:
    opacity 460ms var(--ease-reveal),
    clip-path 620ms var(--ease-reveal),
    transform 620ms var(--ease-reveal),
    visibility 0s linear 620ms;
  visibility: hidden;
  place-items: center;
  will-change: opacity, clip-path, transform;
}

.venture-slide.is-active {
  z-index: 2;
  opacity: 1;
  clip-path: inset(0);
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 90ms;
  visibility: visible;
}

.venture-slide.is-exiting {
  z-index: 1;
  opacity: 0;
  clip-path: inset(0 7% 0 0);
  transform: translate3d(var(--venture-exit-x), 0, 0) scale(0.992);
  visibility: visible;
}

.venture-slide img {
  display: block;
  width: auto;
  max-width: min(84%, 520px);
  height: auto;
  max-height: 78%;
  object-fit: contain;
  user-select: none;
}

.venture-slide[data-venture-name="Hemp Coffee"] img,
.venture-slide[data-venture-name="Softwasp"] img {
  max-width: min(68%, 390px);
  max-height: 70%;
}

.venture-slider-controls {
  position: absolute;
  z-index: 5;
  right: 24px;
  bottom: 42px;
  left: 24px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 16px;
}

.hero-venture-slider:not(.is-enhanced) .venture-slider-controls {
  display: none;
}

.venture-slider-arrow,
.venture-slider-pagination button {
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.venture-slider-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid transparent;
  transition:
    border-color 220ms var(--ease-out),
    color 220ms var(--ease-out),
    transform 220ms var(--ease-out);
  place-items: center;
}

.venture-slider-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.venture-slider-arrow:hover {
  border-color: rgb(188 250 38 / 38%);
  color: var(--acid);
}

.venture-slider-arrow:active {
  transform: scale(0.94);
}

.venture-slider-pagination {
  display: flex;
  min-width: 0;
  justify-content: center;
}

.venture-slider-pagination button {
  position: relative;
  width: 34px;
  height: 44px;
  padding: 0 4px;
}

.venture-slider-pagination button::before,
.venture-slider-pagination button::after {
  position: absolute;
  top: 50%;
  right: 4px;
  left: 4px;
  height: 8px;
  content: "";
  transform: translateY(-50%);
}

.venture-slider-pagination button::before {
  border: 1px solid rgb(244 247 241 / 66%);
  transition: border-color 220ms var(--ease-out);
}

.venture-slider-pagination button::after {
  background: var(--acid);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease-reveal);
}

.venture-slider-pagination button:hover::before,
.venture-slider-pagination button:focus-visible::before {
  border-color: var(--acid);
}

.venture-slider-pagination button[aria-current="true"]::before {
  border-color: var(--acid);
}

.venture-slider-pagination button[aria-current="true"]::after {
  transform: translateY(-50%) scaleX(1);
}

.venture-slider-caption {
  right: 72px;
  bottom: 23px;
  left: 72px;
  text-align: center;
}

.hero-venture-slider:focus-within {
  border-color: rgb(188 250 38 / 38%);
}

.hero-image img,
.process-list img,
.brand-card-image,
.about-portrait img {
  filter: grayscale(1) contrast(1.04);
}

.client-wordmarks-viewport {
  width: var(--container-wide);
  margin: 64px auto 0;
  overflow: clip;
}

.client-wordmarks {
  display: block;
  width: 108.5%;
  max-width: none;
  margin: 0;
  filter: grayscale(1) invert(1) brightness(1.08);
  opacity: 0.72;
}

.motion-ready .client-wordmarks.motion-image-fade.is-motion-visible {
  opacity: 0.72;
}

.clarity-grid,
.work-heading-grid,
.services-shell,
.brands-heading,
.about-shell,
.faq-shell {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 16px;
}

.clarity-grid {
  padding: var(--section-space-y) 0;
}

.clarity-grid > div:first-child {
  grid-column: 1 / 9;
}

.clarity-section h2,
.clarity-second-line,
.work-heading-grid h2,
.process-section h2,
.services-intro h2,
.brands-heading h2,
.about-copy h2,
.faq-intro h2,
.contact-heading h2 {
  font-size: clamp(3.25rem, 4.75vw, 3.99rem);
  line-height: 0.94;
}

.clarity-section h2 {
  max-width: 12em;
  margin: 0;
}

.clarity-second-line {
  margin: 48px 0 0;
  color: var(--acid);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.clarity-copy {
  max-width: none;
  grid-column: 9 / 13;
  padding-top: 96px;
}

.clarity-copy p {
  margin-bottom: 32px;
  color: var(--white);
  font-size: 1.125rem;
  line-height: 1.6;
}

.clarity-copy strong {
  font-weight: 600;
}

.clarity-copy .button {
  margin-top: 16px;
}

.work-section,
.process-section,
.services-section,
.brands-section,
.about-section,
.faq-section,
.contact-section {
  min-height: 0;
  padding: var(--section-space-y) 0;
}

.work-heading-grid {
  margin-bottom: 64px;
  align-items: end;
}

.work-heading-grid > div:first-child {
  grid-column: 1 / 7;
}

.work-heading-grid h2 {
  margin: 0;
}

.work-heading-grid > p,
.work-heading-grid > .naming-copy {
  max-width: 32rem;
  grid-column: 7 / 13;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.naming-grid,
.process-list {
  gap: 16px;
}

.naming-grid li {
  border: 1px solid rgba(188, 250, 38, 0.12);
  background: #090e0b;
  box-shadow: inset 0 0 0 1px rgba(244, 244, 242, 0.015);
}

.naming-grid img {
  display: block;
  filter: none;
  mix-blend-mode: normal;
  object-fit: cover;
  transform: scale(0.65);
  transform-origin: center;
}

.work-footer-row {
  margin-top: 32px;
}

.name-list {
  color: var(--ink-soft);
  font-size: 0.8125rem;
}

.name-list li:not(:last-child)::after {
  margin-left: clamp(0.625rem, 1vw, 0.84rem);
  color: var(--acid);
}

.process-section h2 {
  margin: 0 0 64px;
}

.process-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(188, 250, 38, 0.28);
  background: var(--surface);
}

.process-media {
  aspect-ratio: 1 / 1;
}

.process-graphic {
  display: block;
  width: 100%;
  height: 100%;
}

.process-grid-line {
  fill: none;
  stroke: var(--grid-line);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.process-card-grid {
  opacity: 0.72;
}

.process-shapes {
  fill: var(--grid-line-strong);
  stroke: rgba(188, 250, 38, 0.42);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.process-media .step-number {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 24px;
  margin: 0;
  color: var(--acid);
  font-family: var(--font-display);
  font-size: clamp(4.75rem, 6.4vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.78;
}

.process-list h3 {
  margin-top: 32px;
  padding-bottom: 16px;
  border-bottom-color: var(--grid-line-strong);
  color: var(--white);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.process-list li > p:last-child {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.services-intro {
  max-width: none;
  grid-column: 1 / 6;
}

.services-intro h2 {
  margin: 0 0 32px;
}

.services-intro > p:last-child {
  max-width: 29rem;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.service-list {
  grid-column: 6 / 13;
  border-top: 1px solid var(--grid-line-strong);
}

.service-list li {
  border-bottom-color: var(--grid-line-strong);
}

.service-list a {
  min-height: 144px;
  padding: 24px 0;
  grid-template-columns: 48px 1fr 32px;
  gap: 16px;
}

.service-list a:hover {
  color: var(--acid);
}

.service-number {
  padding-top: 4px;
  color: var(--acid);
  font-size: 1rem;
}

.service-list strong {
  margin-bottom: 12px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-list small {
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.service-arrow {
  width: 28px;
  height: 21px;
  margin-top: 4px;
}

.brands-heading {
  margin-bottom: 64px;
  align-items: end;
}

.brands-heading > div {
  grid-column: 1 / 8;
}

.brands-heading .eyebrow {
  margin-bottom: 32px;
}

.brands-heading h2 {
  margin: 0;
}

.brands-heading > p {
  max-width: 31rem;
  grid-column: 8 / 13;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.brand-cards {
  gap: 32px 16px;
}

.brand-card {
  position: relative;
  overflow: clip;
  border: 1px solid var(--grid-line-strong);
  background: var(--surface);
  transition:
    border-color 480ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 480ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-card-media {
  position: relative;
  overflow: hidden;
  background: var(--canvas);
}

.brand-card-media::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(5, 9, 6, 0.08);
  content: "";
  pointer-events: none;
  transition: opacity 420ms cubic-bezier(0.4, 0, 1, 1);
}

.brand-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
  transform-origin: center;
  backface-visibility: hidden;
}

.brand-card-image--mono {
  z-index: 0;
  filter: grayscale(1) saturate(0.58) contrast(1.06) brightness(0.84);
}

.brand-card-image--color {
  z-index: 1;
  filter: saturate(0.74) contrast(1.04) brightness(0.92);
}

.js .brand-card-image.deferred-image.is-image-ready {
  opacity: 1;
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .brand-card-image--color.deferred-image.is-image-ready {
  opacity: 0;
  transition:
    opacity 340ms cubic-bezier(0.4, 0, 1, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-card-body {
  min-height: 280px;
  padding: 24px 32px 0;
  transition: background-color 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-card-title {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-card-description {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.brand-card-tags {
  gap: 8px;
  margin-bottom: 16px;
}

.brand-card-tags li {
  padding: 8px 12px;
  border: 1px solid var(--grid-line-strong);
  background: transparent;
  color: var(--acid);
  font-size: 0.75rem;
  transition:
    border-color 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-card-action {
  border-top-color: var(--grid-line-strong);
  transition: border-color 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-card-link {
  min-height: 64px;
  gap: 16px;
  font-size: 0.8125rem;
}

.brand-card-link:not(.is-disabled):hover {
  color: var(--acid);
}

@media (hover: hover) and (pointer: fine) {
  .brand-card:hover,
  .brand-card:focus-within {
    border-color: rgba(188, 250, 38, 0.56);
    background: var(--surface-raised);
    transform: translateY(-2px);
  }

  .brand-card:hover .brand-card-image,
  .brand-card:focus-within .brand-card-image {
    transform: scale(1);
  }

  .js .brand-card:hover .brand-card-image--color.deferred-image.is-image-ready,
  .js .brand-card:focus-within .brand-card-image--color.deferred-image.is-image-ready {
    opacity: 1;
    transition:
      opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .brand-card:hover .brand-card-media::after,
  .brand-card:focus-within .brand-card-media::after {
    opacity: 0;
  }

  .brand-card:hover .brand-card-body,
  .brand-card:focus-within .brand-card-body {
    background: rgba(188, 250, 38, 0.018);
  }

  .brand-card:hover .brand-card-tags li,
  .brand-card:focus-within .brand-card-tags li,
  .brand-card:hover .brand-card-action,
  .brand-card:focus-within .brand-card-action {
    border-color: rgba(188, 250, 38, 0.42);
  }

  .brand-card:hover .brand-card-tags li,
  .brand-card:focus-within .brand-card-tags li {
    background: rgba(188, 250, 38, 0.035);
  }

  .brand-card:hover .brand-card-link:not(.is-disabled) .arrow-icon,
  .brand-card:focus-within .brand-card-link:not(.is-disabled) .arrow-icon {
    transform: translateX(7px);
  }
}

.about-portrait {
  grid-column: 1 / 6;
  border: 1px solid var(--grid-line-strong);
  background: var(--surface);
}

.about-copy {
  max-width: none;
  grid-column: 7 / 13;
  padding-top: 0;
}

.about-copy h2 {
  margin: 0 0 32px;
  white-space: normal;
}

.about-prose {
  display: grid;
  max-width: 39rem;
  gap: var(--space-md);
}

.about-prose p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.role-list {
  margin: 32px 0;
  border-top-color: var(--grid-line-strong);
}

.role-list li {
  padding: 12px 0;
  border-bottom-color: var(--grid-line-strong);
  color: var(--white);
  font-size: 1.125rem;
}

.about-copy .button-secondary {
  min-height: 64px;
  background: var(--surface);
}

.faq-intro {
  grid-column: 1 / 6;
}

.faq-intro h2 {
  margin: 0 0 32px;
}

.faq-intro > p:last-child {
  max-width: 29rem;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.faq-list {
  grid-column: 6 / 13;
  min-height: 680px;
  margin-top: 0;
  border-top-color: var(--grid-line-strong);
}

.faq-list details {
  border-bottom-color: var(--grid-line-strong);
}

.faq-list summary {
  min-height: 88px;
  padding: 16px 0;
  grid-template-columns: 1fr 24px;
  gap: 24px;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.faq-list details[open]:not(.is-closing) summary {
  color: var(--acid);
}

.faq-list details.is-closing summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  overflow: clip;
}

.faq-answer-inner {
  padding: 0 48px 32px 0;
}

.faq-answer p {
  max-width: 65ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-heading h2 {
  max-width: 13em;
  margin: 0 0 16px;
}

.contact-heading > p:not(.eyebrow) {
  max-width: 65ch;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.text-link {
  color: var(--white);
  font-size: 1.125rem;
}

.text-link:hover {
  color: var(--acid);
}

.project-form {
  margin-top: 32px;
  padding-top: 24px;
  border-top-color: var(--grid-line-strong);
}

.project-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.form-grid {
  gap: 64px;
}

.field {
  min-height: 72px;
  padding-top: 8px;
  border-bottom-color: var(--dark-muted);
}

.field > span,
.field > label {
  display: block;
  margin-bottom: 4px;
  color: var(--acid);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  color: var(--white);
}

.field select option {
  background: var(--surface);
  color: var(--white);
}

.field select:invalid {
  color: var(--ink-soft);
}

.field-select {
  position: relative;
}

.field-select.is-open {
  z-index: var(--z-dropdown);
}

.js .field-select select.select-native {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 1px;
  min-height: 1px;
  opacity: 0;
  pointer-events: none;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 5px 4px 7px 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.custom-select-trigger.is-placeholder {
  color: var(--ink-soft);
}

.custom-select-arrow {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 240ms var(--ease-out);
}

.field-select.is-open .custom-select-arrow {
  transform: translateY(2px) rotate(225deg);
}

.custom-select-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  max-height: 288px;
  margin: 0;
  padding: 8px;
  overflow-y: auto;
  border: 1px solid var(--grid-line-strong);
  background: var(--surface-raised);
  color: var(--white);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  visibility: hidden;
  transition:
    opacity 220ms var(--ease-out),
    transform 260ms var(--ease-out),
    visibility 0s linear 260ms;
}

.field-select.is-open .custom-select-list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.custom-select-option {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.custom-select-option:hover,
.custom-select-option:focus-visible,
.custom-select-option[aria-selected="true"] {
  outline: 0;
  background: var(--acid);
  color: var(--canvas);
}

.field:focus-within {
  border-bottom-color: var(--acid);
}

.field-textarea {
  min-height: 128px;
  margin-top: 16px;
  padding-top: 12px;
}

.field-textarea textarea {
  min-height: 96px;
  margin-top: 8px;
  border-color: var(--dark-muted);
}

.field-textarea:focus-within textarea {
  border-color: var(--acid);
}

.form-submit {
  min-height: 64px;
  margin-top: 32px;
  border-color: var(--acid);
  background: var(--acid);
  color: var(--canvas);
}

.form-submit:hover {
  border-color: var(--acid-hover);
  background: var(--acid-hover);
  color: var(--canvas);
}

.form-status {
  color: var(--ink-soft);
}

.site-footer {
  padding: var(--footer-space-y) 0;
  color: var(--white);
}

.footer-main {
  display: grid;
  min-height: 384px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.footer-brand {
  grid-column: 1 / 4;
}

.footer-main > nav:nth-of-type(1) {
  grid-column: 4 / 7;
}

.footer-main > nav:nth-of-type(2) {
  grid-column: 7 / 10;
}

.footer-contact {
  grid-column: 10 / 13;
}

.footer-brand > a {
  color: var(--acid);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 0.84;
}

.footer-brand p {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 1.125rem;
}

.footer-main h2,
.footer-contact h2 {
  margin-bottom: 32px;
  color: var(--acid);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.footer-main nav a,
.footer-contact > a,
.footer-social > * {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer-main nav a:hover,
.footer-contact > a:hover {
  color: var(--acid);
}

.footer-social {
  margin-top: 32px;
  padding-top: 32px;
  border-top-color: var(--grid-line-strong);
}

.owner-link-required {
  color: var(--ink-soft);
}

.footer-bottom {
  min-height: 64px;
  gap: 32px;
  padding-top: 32px;
  border-top-color: var(--grid-line-strong);
  color: var(--ink-soft);
  font-size: 0.875rem;
}

.footer-credit {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--grid-line-strong);
  color: var(--ink-soft);
  font-size: 0.9375rem;
}

.footer-credit p {
  margin: 0;
}

.footer-credit a {
  color: var(--white);
  transition: color 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.footer-credit-brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  flex: 0 0 auto;
}

.footer-credit-brand img {
  width: 89px;
  height: auto;
  opacity: 0.88;
  transition: opacity 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-credit-brand:hover img,
.footer-credit-brand:focus-visible img {
  opacity: 1;
}

.success-page {
  background: var(--canvas);
  color: var(--white);
}

.success-page h1 {
  font-size: clamp(4rem, 7vw, 5.88rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.success-page main > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.button-light {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--canvas);
}

@media (min-width: 1601px) {
  :root {
    --section-space-y: 125px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .grid-parallax-ready .section-blueprint {
    --blueprint-parallax-y: 0px !important;
    will-change: auto;
  }

  .brand-card,
  .brand-card-image,
  .brand-card-media::after,
  .brand-card-body,
  .brand-card-tags li,
  .brand-card-action {
    transition: none;
  }

  .brand-card-image,
  .brand-card:hover,
  .brand-card:focus-within,
  .brand-card:hover .brand-card-image,
  .brand-card:focus-within .brand-card-image {
    transform: none;
  }

  .venture-slide,
  .venture-slide.is-active,
  .venture-slide.is-exiting,
  .venture-slider-arrow,
  .venture-slider-pagination button::before,
  .venture-slider-pagination button::after {
    transition: none;
  }

  .venture-slide,
  .venture-slide.is-active,
  .venture-slide.is-exiting {
    clip-path: inset(0);
    transform: none;
  }
}

/* -------------------------------------------------------------------------- */
/* Warm paper rhythm and expanded client-approved content                      */
/* -------------------------------------------------------------------------- */

:root {
  --paper: #eee8dc;
  --paper-raised: #f6f1e8;
  --paper-deep: #e5ddcf;
  --paper-ink: #0c130d;
  --paper-muted: #4d554e;
  --paper-green: #35530d;
  --paper-green-hover: #263c0a;
  --paper-line: rgba(22, 48, 17, 0.22);
  --paper-line-strong: rgba(22, 48, 17, 0.42);
}

/* Light-theme contrast rule: reserve bright lime for dark surfaces.
   On paper backgrounds, use the deeper paper-green accent instead. */

.theme-light {
  --white: var(--paper-ink);
  --ink: var(--paper-ink);
  --ink-soft: var(--paper-muted);
  --dark-muted: rgba(12, 19, 13, 0.56);
  --surface: var(--paper-deep);
  --surface-raised: var(--paper-raised);
  --grid-line: var(--paper-line);
  --grid-line-strong: var(--paper-line-strong);
  --reveal-cover: var(--paper-deep);
  background: var(--paper);
  color: var(--paper-ink);
}

.theme-light .section-blueprint {
  display: none;
}

.theme-light .eyebrow,
.theme-light .service-number,
.theme-light .service-group-number {
  color: var(--paper-green);
}

.theme-light .button-secondary {
  border-color: var(--paper-line-strong);
  background: transparent;
  color: var(--paper-ink);
}

.theme-light .button-secondary:hover {
  border-color: var(--paper-ink);
  background: var(--paper-ink);
  color: var(--paper-raised);
}

.theme-light.clarity-section .clarity-grid {
  padding-top: calc(var(--section-space-y) + 24px);
  padding-bottom: calc(var(--section-space-y) + 24px);
}

.process-section.theme-light,
.why-section.theme-light,
.services-section.theme-light,
.about-section.theme-light,
.contact-section.theme-light {
  padding-top: calc(var(--section-space-y) + 24px);
  padding-bottom: calc(var(--section-space-y) + 24px);
}

.clarity-section.theme-light,
.process-section.theme-light,
.why-section.theme-light,
.services-section.theme-light,
.about-section.theme-light,
.contact-section.theme-light {
  border-top-color: var(--paper-line);
  background: var(--paper);
}

.theme-light .clarity-copy p,
.theme-light .process-list h3,
.theme-light .role-list li,
.theme-light .text-link {
  color: var(--paper-ink);
}

.theme-light .clarity-second-line {
  color: var(--paper-green);
}

.process-section.theme-light .process-media {
  --grid-line: #172305;
  --grid-line-strong: #294117;
  border-color: rgba(53, 83, 13, 0.42);
  background: #071008;
}

.process-section.theme-light .process-shapes {
  fill: #213816;
  stroke: rgba(188, 250, 38, 0.52);
}

.process-section.theme-light .process-media .step-number {
  color: var(--acid);
}

.process-section.theme-light .process-list h3 {
  border-bottom-color: var(--paper-line-strong);
}

.why-section {
  position: relative;
  min-height: 0;
  padding: var(--section-space-y) 0;
  isolation: isolate;
  overflow: clip;
  border-top: 1px solid var(--grid-line);
  background: var(--canvas);
}

.why-section > :not(.section-blueprint) {
  position: relative;
  z-index: 1;
}

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

.why-intro {
  grid-column: 1 / 6;
}

.why-intro h2,
.credential-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-synthesis: none;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 0.94;
}

.why-intro h2 {
  max-width: 9em;
  font-size: clamp(3.25rem, 4.75vw, 3.99rem);
}

.why-intro > p:last-child {
  max-width: 29rem;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.why-pillars {
  display: grid;
  grid-column: 6 / 13;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 32px;
}

.why-pillars article {
  min-width: 0;
  padding-top: 24px;
  border-top: 1px solid var(--grid-line-strong);
}

.why-pillars article > span {
  display: block;
  margin-bottom: 48px;
  color: var(--paper-green);
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.8;
}

.why-pillars h3 {
  max-width: 15rem;
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.why-pillars p {
  max-width: 30ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.services-section.theme-light .services-shell {
  align-items: start;
}

.service-groups {
  grid-column: 6 / 13;
}

.service-group + .service-group {
  margin-top: 80px;
}

.service-group-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: 24px 0 32px;
  border-top: 2px solid var(--paper-ink);
}

.service-group-number {
  margin: 4px 0 0;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-group-header h3 {
  margin: 0 0 10px;
  color: var(--paper-ink);
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}

.service-group-header p:last-child {
  max-width: 42rem;
  margin: 0;
  color: var(--paper-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.service-groups .service-list {
  grid-column: auto;
  border-top-color: var(--paper-line-strong);
}

.services-section.theme-light .service-list li {
  border-bottom-color: var(--paper-line-strong);
}

.services-section.theme-light .service-list a {
  min-height: 118px;
  color: var(--paper-ink);
}

.services-section.theme-light .service-list a:hover {
  color: var(--paper-green);
}

.services-section.theme-light .service-list small,
.services-section.theme-light .services-intro > p:last-child {
  color: var(--paper-muted);
}

.service-promise {
  display: block;
  max-width: 36rem;
  margin: 10px 0 6px;
  color: var(--paper-ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.brand-card-meta {
  min-height: 64px;
  display: flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-section.theme-light .about-shell {
  min-height: clamp(40rem, 44vw, 44rem);
  align-items: stretch;
}

.about-section.theme-light .about-portrait {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border-color: var(--paper-line-strong);
  background: var(--paper-deep);
}

.about-portrait-image {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.about-portrait .role-list {
  margin: 0;
  padding: var(--space-sm) var(--space-lg) var(--space-md);
  border-top: 1px solid var(--paper-line-strong);
}

.about-portrait .role-list li {
  min-height: 0;
  padding: var(--space-xs) 0;
  color: var(--paper-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.35;
}

.about-section.theme-light .about-prose p {
  color: var(--paper-muted);
}

.about-section.theme-light .about-copy {
  display: flex;
  align-self: stretch;
  flex-direction: column;
}

.about-section.theme-light .about-copy > .eyebrow {
  margin-bottom: var(--space-lg);
}

.about-section.theme-light .about-copy .button-wide {
  width: min(100%, 28rem);
  margin-top: auto;
}

.about-section.theme-light .role-list {
  border-top-color: var(--paper-line-strong);
}

.about-section.theme-light .role-list li {
  border-bottom-color: var(--paper-line-strong);
}

.about-stats {
  display: grid;
  margin-top: 96px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-stats > div {
  min-width: 0;
  padding-top: 24px;
  border-top: 1px solid var(--paper-line-strong);
}

.about-stats dt,
.about-stats dd {
  margin: 0;
}

.stat-value {
  display: block;
  color: var(--paper-green);
  font-family: var(--font-display);
  font-size: clamp(4rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.82;
  font-variant-numeric: tabular-nums;
}

.about-stats dd {
  max-width: 17rem;
  margin-top: 20px;
  color: var(--paper-muted);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
}

.credential-case-study {
  display: grid;
  margin-top: 112px;
  padding-top: 96px;
  border-top: 1px solid var(--paper-line-strong);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 16px;
  align-items: center;
}

.credential-copy {
  grid-column: 1 / 6;
}

.credential-copy h3 {
  max-width: 8.5em;
  margin-bottom: 32px;
  color: var(--paper-ink);
  font-size: clamp(3rem, 4.35vw, 3.75rem);
}

.credential-copy > p:not(.eyebrow) {
  max-width: 36rem;
  margin: 0 0 24px;
  color: var(--paper-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.credential-media {
  grid-column: 7 / 12;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(53, 83, 13, 0.52);
  background: #0a130b;
}

.credential-media img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}

.credential-media figcaption {
  margin-top: 16px;
  color: rgba(244, 244, 242, 0.64);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.faq-list {
  min-height: 960px;
}

.contact-section.theme-light .contact-title-rest {
  color: var(--paper-green);
}

.contact-section.theme-light .contact-heading > p:not(.eyebrow),
.contact-section.theme-light .form-intro {
  color: var(--paper-muted);
}

.contact-section.theme-light .project-form {
  border-top-color: var(--paper-line-strong);
}

.form-intro {
  max-width: 52rem;
  margin: 8px 0 32px;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-section.theme-light .field {
  border-bottom-color: rgba(12, 19, 13, 0.46);
}

.contact-section.theme-light .field > span,
.contact-section.theme-light .field > label {
  color: var(--paper-green);
}

.contact-section.theme-light .field input,
.contact-section.theme-light .field select,
.contact-section.theme-light .field textarea,
.contact-section.theme-light .custom-select-trigger {
  color: var(--paper-ink);
}

.contact-section.theme-light .custom-select-trigger.is-placeholder {
  color: rgba(12, 19, 13, 0.58);
}

.contact-section.theme-light .custom-select-list {
  border-color: var(--paper-line-strong);
  background: var(--paper-raised);
  color: var(--paper-ink);
  box-shadow: 0 24px 48px rgba(12, 19, 13, 0.14);
}

.contact-section.theme-light .custom-select-option:hover,
.contact-section.theme-light .custom-select-option:focus-visible,
.contact-section.theme-light .custom-select-option[aria-selected="true"] {
  background: var(--acid);
  color: var(--paper-ink);
}

.contact-section.theme-light .form-submit {
  border-color: var(--section-green-raised);
  background: var(--section-green-raised);
  color: #fff;
}

.contact-section.theme-light .form-submit:hover {
  border-color: var(--section-green);
  background: var(--section-green);
  color: #fff;
}

.field-textarea-compact {
  min-height: 112px;
  padding-bottom: 12px;
}

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

.project-form .form-submit {
  width: min(100%, 30rem);
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 16px;
}

/* The Hemp Coffee artwork is taller than the shared project crop. Preserve the
   complete mark and give it a measured quiet zone without affecting other cards. */
.brand-card[data-brand="hemp-coffee-sa"] .brand-card-image {
  padding: 3%;
  background: #beb786;
  object-fit: contain;
}

@media (min-width: 768px) {
  .project-form .form-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .project-form .form-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 64px;
    align-items: start;
  }

  .project-form .form-submit {
    width: 100%;
    max-width: none;
    margin-top: 8px;
  }
}

.contact-section.theme-light .form-status {
  color: var(--paper-muted);
}

@media (max-width: 1280px) {
  .primary-nav {
    gap: 16px;
  }

  .primary-nav .nav-cta {
    padding-inline: 16px;
  }

  .hero-copy {
    padding-right: 24px;
  }

  .hero-copy .button-row .button:not(:only-child) {
    min-width: 0;
    flex: 1 1 0;
    padding-inline: 16px;
    font-size: 0.8125rem;
  }

  .service-list a {
    min-height: 152px;
  }

  .footer-brand > a {
    font-size: 3.25rem;
  }
}
