/* WebsiteLit editorial design system */
:root {
  --lime: #f4ff61;
  --ink: #0b0b0c;
  --paper: #f5f3ee;
  --white: #f9f9f9;
  --panel-dark: #1e1e22;
  --line-light: #d4d3ce;
  --line-dark: #3a3a3a;
  --muted: #66645f;
  --muted-dark: #aaa9a3;
  --error: #d83a32;
  --success: #237a4b;
  --focus: #2459ff;
  --font-display: "Instrument Serif", Didot, "Times New Roman", serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", Consolas, monospace;
  --container: 1920px;
  --gutter: clamp(1.25rem, 8.125vw, 9.75rem);
  --header-height: 5.25rem;
  --radius: 1rem;
  --radius-lg: 1.75rem;
  --ease: cubic-bezier(0.2, 0.72, 0.2, 1);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select,
summary,
a {
  touch-action: manipulation;
}

button,
summary,
a[href] {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

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

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

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

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: 100%;
  min-height: 100dvh;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.surface-lime,
.page-hero--lime {
  background: var(--lime);
  color: var(--ink);
}

.surface-paper,
.page-hero--paper {
  background: var(--paper);
  color: var(--ink);
}

.surface-white {
  background: var(--white);
  color: var(--ink);
}

.surface-ink,
.page-hero--ink,
.section--ink {
  background: var(--ink);
  color: var(--white);
}

.section--paper {
  background: var(--paper);
  color: var(--ink);
}

.section--lime {
  background: var(--lime);
  color: var(--ink);
}

.section {
  position: relative;
  padding-block: clamp(5.5rem, 10vw, 10rem);
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.section--compact {
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.eyebrow,
.kicker,
.mono-label {
  margin-bottom: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.display-title,
.section-title,
.page-title,
.editorial-heading {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.section-title,
.editorial-heading {
  max-width: 14ch;
  font-size: clamp(3.4rem, 6.4vw, 7rem);
  line-height: 0.93;
}

.section-title em,
.editorial-heading em,
.page-title em,
.display-title em {
  font-weight: 400;
}

.section-intro {
  max-width: 38rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.65;
}

.surface-ink .section-intro,
.page-hero--ink .section-intro {
  color: var(--muted-dark);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
  margin-bottom: clamp(3rem, 7vw, 6.5rem);
}

/* Header */
.topbar {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  min-height: var(--header-height);
  border-bottom: 0;
  background: var(--lime);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.topbar.is-scrolled {
  border-color: transparent;
  box-shadow: none;
}

.topbar__inner,
.topbar > .container {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  min-width: 3.5rem;
  min-height: 3rem;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 4.4rem;
  height: 2.5rem;
  object-fit: contain;
  object-position: left center;
}

.brand-text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.topbar-panel {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.5rem, 4vw, 4.5rem);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.3rem);
}

.nav a {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 650;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms var(--ease);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.lang-switcher {
  display: inline-flex;
  padding: 0.2rem;
  border: 1px solid rgba(11, 11, 12, 0.28);
  border-radius: 999px;
}

.lang-switcher button {
  min-width: 2.65rem;
  min-height: 2.4rem;
  padding: 0.35rem 0.65rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
}

.lang-switcher button.is-active,
.lang-switcher button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--lime);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.72rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 0.26rem;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.topbar.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.topbar.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */
.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  transition: background 190ms var(--ease), color 190ms var(--ease), transform 190ms var(--ease), opacity 190ms ease;
}

.button:hover {
  background: var(--white);
  color: var(--ink);
}

.button:active {
  transform: scale(0.98);
}

.button[disabled],
.button.is-loading {
  cursor: wait;
  opacity: 0.58;
}

.button--lime,
.surface-ink .button--primary {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.button--lime:hover,
.surface-ink .button--primary:hover {
  border-color: var(--white);
  background: var(--white);
}

.button--outline,
.button-secondary {
  background: transparent;
  color: var(--ink);
}

.surface-ink .button--outline,
.footer .button--outline {
  border-color: var(--white);
  color: var(--white);
}

.button--outline:hover,
.button-secondary:hover {
  background: var(--ink);
  color: var(--white);
}

.button--small,
.button-small {
  min-height: 3rem;
  padding-inline: 1.15rem;
}

.button__icon,
.button-icon {
  display: inline-grid;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  place-items: center;
  font-size: 0.9rem;
  line-height: 1;
}

.button--lime .button__icon,
.topbar .button .button__icon {
  background: var(--white);
}

/* Home hero */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-height));
  overflow: hidden;
  background: var(--lime);
}

.hero__inner {
  display: flex;
  min-height: calc(100dvh - var(--header-height));
  padding-block: clamp(2.5rem, 5vw, 5rem) 2rem;
  flex-direction: column;
  justify-content: space-between;
}

.hero__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.status-chip {
  display: inline-flex;
  min-height: 2.7rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(11, 11, 12, 0.22);
  border-radius: 999px;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.status-chip::before {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.hero__note {
  max-width: 23rem;
  margin-bottom: 0;
  text-align: right;
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  line-height: 1.5;
}

.hero__title {
  max-width: 15ch;
}

.hero__title {
  max-width: 10.5ch;
  margin: clamp(3rem, 8vh, 7rem) 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 9.2vw, 10.7rem);
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 0.86;
}

.hero__title em {
  font-weight: 400;
}

.hero__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}

.hero__intro {
  max-width: 46rem;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.55vw, 1.32rem);
  line-height: 1.6;
}

.proof-grid {
  display: grid;
  margin-top: clamp(2.5rem, 5vw, 5rem);
  border-top: 1px solid rgba(11, 11, 12, 0.22);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-item {
  padding: 1.45rem 1.25rem 0.6rem 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.2vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.proof-item span {
  color: rgba(11, 11, 12, 0.72);
  font-size: 0.82rem;
}

/* Partner rail */
.partner-section {
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--line-light);
}

.partner-row {
  display: grid;
  grid-template-columns: minmax(12rem, 0.9fr) repeat(3, minmax(0, 1fr));
  align-items: center;
}

.partner-row__label {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.partner-logo {
  display: grid;
  min-height: 7rem;
  padding: 1rem 2rem;
  border-left: 1px solid var(--line-light);
  place-items: center;
  filter: grayscale(1);
  transition: filter 200ms ease, opacity 200ms ease;
}

.partner-logo:hover {
  filter: grayscale(0);
}

.partner-logo img {
  width: auto;
  max-width: 11rem;
  max-height: 4.5rem;
  object-fit: contain;
}

.partner-logo--gng img {
  max-height: 5.7rem;
}

/* Founder credibility */
.credibility-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2.5rem, 8vw, 9rem);
  align-items: center;
}

.credibility-media,
.portrait-frame,
.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 38rem;
  border-radius: var(--radius);
  background: var(--line-light);
}

.credibility-media img,
.portrait-frame img,
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.credibility-media img {
  position: absolute;
  inset: 0;
}

.credibility-copy h2 {
  max-width: 12ch;
  margin-bottom: 2rem;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 6vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.048em;
  line-height: 0.91;
}

.credibility-copy > p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.credibility-points {
  display: grid;
  margin: 3rem 0;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.credibility-point {
  padding: 1.25rem 1.25rem 1.25rem 0;
  border-bottom: 1px solid var(--line-light);
}

.credibility-point span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.credibility-point strong {
  font-size: 1rem;
}

/* Editorial marquee */
.statement-band {
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
  border-block: 1px solid var(--line-light);
}

.statement-track {
  display: flex;
  width: max-content;
  animation: statement-scroll 34s linear infinite;
}

.statement-track span {
  padding-right: 0.65em;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 12rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

@keyframes statement-scroll {
  to {
    transform: translateX(-50%);
  }
}

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

.work-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--panel-dark);
  color: var(--white);
}

.work-card__media {
  position: relative;
  display: grid;
  min-height: clamp(25rem, 40vw, 40rem);
  overflow: hidden;
  place-items: center;
}

.work-card__media--orange {
  background: #d88545;
}

.work-card__media--stone {
  background: #d7d3c8;
}

.work-card__media--blue {
  background: #a9c8e6;
}

.work-card__media::after {
  position: absolute;
  inset: 0;
  border: 1.25rem solid rgba(11, 11, 12, 0.06);
  content: "";
  pointer-events: none;
}

.work-card__logo-panel {
  display: grid;
  width: min(76%, 24rem);
  aspect-ratio: 4 / 3;
  padding: 2.2rem;
  border-radius: 0.75rem;
  background: var(--white);
  place-items: center;
  transform: rotate(-2deg);
  transition: transform 240ms var(--ease);
}

.work-card:hover .work-card__logo-panel {
  transform: rotate(0) scale(1.03);
}

.work-card__logo-panel img {
  max-width: 86%;
  max-height: 86%;
  object-fit: contain;
}

.work-card__tag {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(11, 11, 12, 0.76);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 750;
  text-transform: uppercase;
}

.work-card__body {
  padding: 1.5rem;
}

.work-card__body h3 {
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.work-card__body p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.88rem;
}

/* Capabilities ledger */
.info-ledger,
.services-ledger {
  display: grid;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid transparent;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ledger-item,
.service-item {
  display: grid;
  min-height: 14.25rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1.4rem;
}

.ledger-item:nth-child(2n),
.service-item:nth-child(2n) {
  border-right: 0;
}

.ledger-item__number,
.service-number {
  padding-top: 0.45rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.ledger-item h3,
.service-item h3 {
  margin-bottom: 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.ledger-item p,
.service-item p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
}

/* Process */
.process-heading {
  max-width: 9ch;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

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

.process-step {
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
}

.process-step__number {
  display: block;
  margin-bottom: 1.8rem;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.process-step h3 {
  margin-bottom: 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.process-step p {
  color: var(--muted-dark);
  font-size: 0.95rem;
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.price-card {
  display: flex;
  min-height: 38rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
  flex-direction: column;
}

.price-card--featured,
.price-card-featured {
  border-color: var(--ink);
  background: var(--lime);
}

.price-card__top,
.price-card-header {
  display: flex;
  min-height: 4rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.price-card__index,
.price-card-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card h3,
.price-card h2 {
  margin: 1.2rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.2vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.price-card__price,
.price-value {
  display: flex;
  margin: 2rem 0;
  align-items: baseline;
  gap: 0.55rem;
}

.price-card__price strong,
.price-value strong {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.price-card__price span,
.price-value span {
  color: var(--muted);
  font-size: 0.82rem;
}

.price-card__description,
.price-card-label,
.price-note {
  color: var(--muted);
}

.price-card__features,
.price-feature-list {
  display: grid;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  gap: 0.8rem;
}

.price-card__features li,
.price-feature-list li {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.9rem;
}

.price-card__features li::before,
.price-feature-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: start;
}

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

.faq-item,
.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-item summary,
.faq-list summary {
  position: relative;
  display: flex;
  min-height: 6rem;
  padding: 1.25rem 4rem 1.25rem 0;
  align-items: center;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.1vw, 2.35rem);
  line-height: 1.1;
}

.faq-item summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after,
.faq-list summary::after {
  position: absolute;
  right: 0;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  content: "+";
  place-items: center;
  font-family: var(--font-body);
  font-size: 1rem;
}

.faq-item[open] summary::after,
.faq-list details[open] summary::after {
  content: "−";
}

.faq-item__answer,
.faq-list details > div,
.faq-list details > p {
  max-width: 47rem;
  padding: 0 4rem 1.75rem 0;
  color: var(--muted);
}

/* Contact / forms */
.contact-section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.contact-section__title {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 10.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.contact-section__intro {
  max-width: 58rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.form-panel {
  display: grid;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3.8rem);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  grid-template-columns: minmax(17rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2.5rem, 8vw, 8rem);
}

.form-panel__aside,
.contact-aside {
  display: flex;
  min-height: 34rem;
  flex-direction: column;
}

.form-panel__aside h2,
.contact-aside h2 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.6vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.form-panel__aside > p,
.contact-aside > p {
  max-width: 32rem;
  color: var(--muted-dark);
}

.contact-details {
  display: grid;
  margin-top: auto;
  gap: 0.7rem;
}

.contact-details a {
  display: inline-flex;
  min-height: 2.75rem;
  width: fit-content;
  align-items: center;
  border-bottom: 1px solid transparent;
  font-weight: 650;
}

.contact-details a:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.contact-form,
.project-form,
.order-form,
.onboarding-form {
  min-width: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}

.field,
.contact-form label {
  display: grid;
  min-width: 0;
  gap: 0.5rem;
}

.field--full,
.form-field-full,
.choice-group,
.form-actions,
.form-status,
.contact-form > button,
.contact-form > .form-status,
.contact-form > label:has(textarea) {
  grid-column: 1 / -1;
}

.field__label,
.field > label,
.contact-form label > span,
.choice-group legend {
  color: var(--muted-dark);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.required-mark {
  color: var(--lime);
}

.field input,
.field select,
.field textarea,
.contact-form input,
.contact-form select,
.contact-form textarea,
.stack-form input,
.stack-form select,
.stack-form textarea {
  width: 100%;
  min-height: 3.4rem;
  padding: 0.75rem 0;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  transition: border-color 180ms ease;
}

.field textarea,
.contact-form textarea,
.stack-form textarea {
  min-height: 8.5rem;
  padding-top: 0.9rem;
  resize: vertical;
}

.field select,
.contact-form select,
.stack-form select {
  color-scheme: dark;
}

.field input::placeholder,
.field textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder,
.stack-form input::placeholder,
.stack-form textarea::placeholder {
  color: #77777c;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.stack-form input:focus,
.stack-form select:focus,
.stack-form textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 2px 0 var(--lime);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea,
[aria-invalid="true"] {
  border-color: var(--error);
}

.field-error {
  min-height: 1.15rem;
  margin: 0;
  color: #ff8d87;
  font-size: 0.75rem;
}

.choice-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-group legend {
  margin-bottom: 0.75rem;
}

.choice-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.choice-pill {
  position: relative;
}

.choice-pill input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-pill span {
  display: inline-flex;
  min-height: 3rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.choice-pill input:focus-visible + span {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.choice-pill input:checked + span {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 1.4rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.checkbox-field input {
  width: 1.25rem;
  height: 1.25rem;
  min-height: 0;
  margin-top: 0.15rem;
  accent-color: var(--lime);
}

.checkbox-field span,
.checkbox-field label {
  color: var(--muted-dark);
  font-family: var(--font-mono);
  font-size: 0.73rem;
  line-height: 1.55;
  text-transform: none;
}

.checkbox-field a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-actions .button,
.contact-form > button {
  width: 100%;
  min-height: 4rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.88rem;
}

.form-status.is-success {
  color: #7ae7a9;
}

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

.honeypot,
[data-honeypot] {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Shared content pages */
.page-hero {
  display: flex;
  min-height: clamp(30rem, 72vh, 49rem);
  align-items: flex-end;
  padding-block: clamp(5rem, 10vw, 9rem);
}

.page-hero--compact {
  min-height: 25rem;
}

.page-hero__inner {
  width: 100%;
}

.page-title,
.page-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8.7vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.page-hero__meta,
.page-hero > .container > p,
.page-hero__intro {
  max-width: 45rem;
  margin-top: 2rem;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.content-panel {
  padding: clamp(1.5rem, 4vw, 4rem);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
}

.content-panel--ink {
  border-color: var(--line-dark);
  background: var(--panel-dark);
  color: var(--white);
}

.content-panel--ink p {
  color: var(--muted-dark);
}

.media-panel {
  overflow: hidden;
  padding: 0;
}

.media-panel img,
.founder-portrait,
.hamburg-photo {
  width: 100%;
  min-height: 34rem;
  height: 100%;
  object-fit: cover;
}

.media-panel figcaption {
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.page-hero-actions {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.info-ledger-item {
  min-height: 11rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line-light);
}

.info-ledger-item h3 {
  margin: 0.6rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.7vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.info-ledger-item p {
  color: var(--muted);
}

.info-ledger-number {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.callout-panel {
  background: transparent;
}

.content-panel h2,
.content-panel h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.content-panel h2 {
  font-size: clamp(2.6rem, 4vw, 4.8rem);
}

.content-panel h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}

.story-grid > :first-child {
  grid-column: 1 / 8;
}

.story-grid > :last-child {
  grid-column: 9 / -1;
}

.image-caption {
  margin-top: 0.7rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

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

.value-card,
.info-card {
  min-height: 18rem;
  padding: 2rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
}

.value-card h3,
.info-card h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}

.value-card p,
.info-card p {
  color: var(--muted);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.legal-content {
  max-width: 52rem;
}

.legal-card {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
}

.legal-content section,
.legal-content .legal-section {
  padding-block: 2rem;
  border-top: 1px solid var(--line-light);
}

.legal-content h2,
.legal-content h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.legal-content h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
}

.legal-content h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.job-banner {
  display: grid;
  min-height: 28rem;
  padding: clamp(2rem, 5vw, 5rem);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  align-content: space-between;
}

.job-banner h2 {
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.job-banner p {
  max-width: 40rem;
  color: var(--muted-dark);
}

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

.contact-card-mini {
  display: flex;
  min-height: 12rem;
  padding: 1.5rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
  flex-direction: column;
  justify-content: space-between;
}

.contact-card-mini span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.contact-card-mini strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
}

/* Order / onboarding */
.order-layout,
.onboarding-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.form-layout.thank-you-panel,
.thank-you-panel {
  display: grid;
  grid-template-columns: minmax(17rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: start;
}

form.form-panel {
  display: block;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.section--ink form.form-panel {
  border: 1px solid var(--line-dark);
  background: var(--panel-dark);
}

.order-summary,
.session-summary,
.summary-box {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  padding: 2rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--lime);
}

.order-summary h2,
.session-summary h2,
.summary-box h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
}

.order-summary__price {
  display: block;
  margin-block: 1.25rem;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.order-summary-list {
  display: grid;
  margin: 2rem 0;
}

.order-summary-item {
  display: grid;
  padding-block: 1rem;
  border-top: 1px solid rgba(11, 11, 12, 0.2);
  grid-template-columns: minmax(7rem, 0.7fr) minmax(0, 1.3fr);
  gap: 1rem;
}

.order-summary-item dt {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.order-summary-item dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.order-note,
.secure-handoff-note {
  margin-block: 1.5rem;
  padding: 1.2rem;
  border-left: 3px solid var(--lime);
  background: rgba(244, 255, 97, 0.08);
  color: var(--muted-dark);
  font-size: 0.86rem;
}

.order-summary .order-note {
  border-color: var(--ink);
  background: rgba(11, 11, 12, 0.07);
  color: var(--muted);
}

.text-link,
.form-legal-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.field--honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent-field {
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.consent-field input {
  width: 1.2rem;
  height: 1.2rem;
  min-height: 0;
  accent-color: var(--lime);
}

.consent-field span,
.consent-field label {
  color: var(--muted-dark);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.55;
  text-transform: none;
}

.thank-you-session-status {
  max-width: 48rem;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(11, 11, 12, 0.22);
  border-radius: 999px;
}

.thank-you-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.thank-you-step {
  min-height: 17rem;
  padding: 1.75rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
}

.thank-you-step > span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.thank-you-step h3 {
  margin: 3rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1;
}

.thank-you-step p {
  color: var(--muted);
}

.order-form-panel,
.onboarding-form-panel {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.security-note {
  padding: 1.2rem;
  border-left: 3px solid var(--lime);
  background: rgba(244, 255, 97, 0.08);
  color: var(--muted-dark);
  font-size: 0.88rem;
}

/* Footer */
.footer {
  padding-block: clamp(4.5rem, 8vw, 7rem) 1.5rem;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 1.4fr) repeat(3, minmax(9rem, 0.6fr));
  gap: clamp(2.5rem, 6vw, 6rem);
}

.footer-brand .brand-logo,
.footer-logo {
  width: 5.6rem;
  height: 3.2rem;
  margin-bottom: 2rem;
  filter: invert(1);
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 31rem;
  color: var(--muted-dark);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.7vw, 3rem);
  line-height: 1.05;
}

.footer-column h3,
.footer-column__title,
.footer-label {
  margin-bottom: 1.4rem;
  color: var(--muted-dark);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-column a {
  display: flex;
  min-height: 2.7rem;
  width: fit-content;
  align-items: center;
  border-bottom: 1px solid transparent;
  font-size: 0.92rem;
}

.footer-column a:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.footer-meta {
  display: flex;
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--muted-dark);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* Admin */
.admin-shell {
  min-height: 100dvh;
  padding-block: 3rem 6rem;
  background: var(--paper);
}

.admin-topbar {
  display: flex;
  margin-bottom: 3rem;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.admin-topbar h1,
.panel h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.9;
}

.admin-stats-grid {
  display: grid;
  margin-bottom: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.admin-stat {
  min-height: 10rem;
  padding: 1.5rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
}

.admin-stat-accent {
  background: var(--lime);
}

.admin-stat span {
  display: block;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.admin-stat strong {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 1;
}

.panel {
  margin-bottom: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
}

.panel h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-light);
  border-radius: 0.75rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

th,
td {
  min-width: 8rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line-light);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

td {
  max-width: 24rem;
  color: var(--muted);
  word-break: break-word;
}

.stack-form {
  display: grid;
  gap: 1.25rem;
}

.panel .stack-form input,
.panel .stack-form textarea {
  border-color: var(--line-light);
  color: var(--ink);
}

.error-box {
  padding: 1rem;
  border-left: 3px solid var(--error);
  background: #fff1ef;
  color: #8c1f19;
}

.back-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  font-weight: 700;
}

/* Reveal only after JavaScript opts in */
.reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}

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

/* Responsive */
@media (max-width: 79.99rem) {
  :root {
    --gutter: clamp(1.5rem, 4vw, 4rem);
  }

  .work-grid,
  .price-grid,
  .values-grid,
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-card:last-child,
  .price-card:last-child {
    grid-column: auto / span 2;
  }

  .work-card:last-child .work-card__media {
    min-height: 32rem;
  }

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

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

@media (max-width: 63.99rem) {
  :root {
    --header-height: 4.5rem;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .topbar-panel {
    position: fixed;
    z-index: 999;
    inset: var(--header-height) 0 auto;
    display: grid;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    padding: 1.5rem var(--gutter) 2rem;
    border-top: 1px solid rgba(11, 11, 12, 0.16);
    background: var(--lime);
    gap: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms var(--ease), visibility 180ms ease;
  }

  .topbar.is-menu-open .topbar-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav {
    display: grid;
    align-items: stretch;
    gap: 0;
  }

  .nav a {
    min-height: 3.75rem;
    border-bottom: 1px solid rgba(11, 11, 12, 0.18);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
  }

  .nav a::after {
    display: none;
  }

  .topbar-actions {
    justify-content: space-between;
  }

  .topbar-actions .button {
    flex: 1;
  }

  .hero__title {
    max-width: 11ch;
    font-size: clamp(4.2rem, 13.2vw, 8rem);
  }

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

  .partner-row__label {
    grid-column: 1 / -1;
    padding-bottom: 1.25rem;
  }

  .partner-logo:first-of-type {
    border-left: 0;
  }

  .credibility-grid,
  .split-grid,
  .form-panel,
  .faq-layout,
  .order-layout,
  .onboarding-layout,
  .thank-you-panel,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .form-panel__aside,
  .contact-aside {
    min-height: 22rem;
  }

  .order-summary,
  .session-summary,
  .summary-box,
  .legal-nav {
    position: static;
  }

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

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

  .story-grid > :first-child,
  .story-grid > :last-child {
    grid-column: 1 / -1;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .thank-you-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 47.99rem) {
  :root {
    --gutter: clamp(1.125rem, 5vw, 1.5rem);
  }

  .section {
    padding-block: 5.25rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .section-title,
  .editorial-heading {
    font-size: clamp(3.25rem, 16vw, 5.5rem);
  }

  .brand-logo {
    width: 3.8rem;
    height: 2.2rem;
  }

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

  .hero,
  .hero__inner {
    min-height: calc(100dvh - var(--header-height));
  }

  .hero__inner {
    padding-block: 2rem 1.5rem;
  }

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

  .hero__note {
    max-width: 20rem;
    text-align: left;
  }

  .hero__title {
    margin-block: 3rem;
    font-size: clamp(3.65rem, 18.3vw, 6rem);
    line-height: 0.88;
  }

  .hero__bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .proof-item {
    border-bottom: 1px solid rgba(11, 11, 12, 0.17);
  }

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

  .partner-logo {
    min-height: 6rem;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .credibility-media,
  .portrait-frame,
  .image-frame {
    min-height: 31rem;
  }

  .credibility-points,
  .info-ledger,
  .services-ledger,
  .work-grid,
  .price-grid,
  .process-grid,
  .values-grid,
  .cards-grid,
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }

  .ledger-item,
  .service-item {
    min-height: 12rem;
    padding-inline: 0;
    border-right: 0;
  }

  .work-card:last-child,
  .price-card:last-child {
    grid-column: auto;
  }

  .work-card__media,
  .work-card:last-child .work-card__media {
    min-height: 30rem;
  }

  .price-card {
    min-height: 34rem;
  }

  .faq-item summary,
  .faq-list summary {
    min-height: 5.5rem;
    padding-right: 3.5rem;
  }

  .contact-section__title,
  .page-title,
  .page-hero h1 {
    font-size: clamp(3.8rem, 18vw, 6.5rem);
  }

  .form-panel {
    margin-inline: calc(var(--gutter) * -0.35);
    padding: 1.35rem;
    border-radius: 1rem;
  }

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

  .field--full,
  .form-field-full,
  .choice-group,
  .form-actions,
  .form-status {
    grid-column: auto;
  }

  .page-hero {
    min-height: 31rem;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-meta,
  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 29.99rem) {
  .lang-switcher button {
    min-width: 2.45rem;
  }

  .proof-item strong {
    font-size: 2.25rem;
  }

  .choice-pill,
  .choice-pill span {
    width: 100%;
  }
}

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

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

  .statement-track {
    animation: none;
    transform: none;
  }

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

@media print {
  .topbar,
  .footer,
  .button,
  .menu-toggle {
    display: none !important;
  }

  body,
  .surface-ink,
  .page-hero--ink {
    background: #fff !important;
    color: #000 !important;
  }

  .section,
  .page-hero {
    padding-block: 2rem;
  }
}

/* 2026 reference-led refinement */
.topbar__inner {
  gap: 1rem;
}

.brand {
  min-width: 9.5rem;
  min-height: 2.75rem;
}

.brand-mark,
.brand-lockup {
  position: relative;
  display: block;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-mark img,
.brand-lockup img {
  position: absolute;
  max-width: none;
  height: auto;
}

.brand-mark--black {
  width: 4.625rem;
  height: 1.35rem;
}

.brand-mark--black img {
  width: 9.5rem;
  transform: translate(-2.46rem, -3.61rem);
}

.brand-lockup--black {
  width: 9.5rem;
  height: 3.12rem;
}

.brand-lockup--black img {
  width: 13.08rem;
  transform: translate(-1.9rem, -4.98rem);
}

.header-cta {
  min-height: 3rem;
  padding: 0.65rem 1.2rem;
  gap: 0.65rem;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 700;
}

.header-cta:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.header-cta__pulse {
  width: 0.47rem;
  height: 0.47rem;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 0.28rem rgba(255, 255, 255, 0.1);
  animation: header-pulse 1.35s ease-in-out infinite;
}

@keyframes header-pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

.hero__note {
  max-width: 22rem;
  font-size: clamp(0.8rem, 0.9vw, 0.92rem);
  line-height: 1.45;
}

.hero__intro,
.credibility-copy > p:not(.eyebrow),
.section-intro,
.contact-section__intro {
  font-size: clamp(0.93rem, 1.05vw, 1.08rem);
}

.section-title,
.editorial-heading {
  font-size: clamp(3.2rem, 5.6vw, 6rem);
}

/* Continuous partner rail */
.partner-section {
  overflow: hidden;
  padding-block: 0;
  border-bottom: 1px solid var(--line-light);
}

.partner-reference-row {
  display: grid;
  min-height: 10.75rem;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 2.28fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
}

.partner-marquee {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  border: 0;
}

.partner-marquee::before,
.partner-marquee::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(2.5rem, 4.8vw, 5.5rem);
  content: "";
  pointer-events: none;
}

.partner-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(245, 243, 238, 0.9) 34%, rgba(245, 243, 238, 0) 100%);
  filter: drop-shadow(0.65rem 0 0.7rem rgba(11, 11, 12, 0.035));
}

.partner-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper) 0%, rgba(245, 243, 238, 0.9) 34%, rgba(245, 243, 238, 0) 100%);
  filter: drop-shadow(-0.65rem 0 0.7rem rgba(11, 11, 12, 0.035));
}

.partner-track {
  display: flex;
  width: max-content;
  animation: partner-scroll 28s linear infinite;
  will-change: transform;
}

.partner-set {
  display: flex;
  flex: none;
  align-items: stretch;
}

.partner-logo {
  display: grid;
  width: clamp(9.5rem, 12vw, 14.5rem);
  min-height: 9rem;
  padding: 1rem 1.75rem;
  border-right: 0;
  border-left: 0;
  place-items: center;
}

.partner-logo img {
  max-width: 10.5rem;
  max-height: 3.6rem;
}

.partner-logo--echoice img {
  max-width: 8rem;
  filter: brightness(0);
}

.partner-reference-row .partner-logo--gng img {
  max-height: 4.25rem;
}

.partner-wordmark {
  color: #282827;
  font-size: clamp(1.15rem, 1.55vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.partner-marquee:hover .partner-track,
.partner-marquee:focus-within .partner-track {
  animation-play-state: paused;
}

@keyframes partner-scroll {
  to { transform: translateX(-50%); }
}

.credibility-media img {
  object-position: 56% 50%;
}

/* Work and feedback */
.work-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.work-card:last-child {
  grid-column: auto;
}

.work-card__media {
  height: clamp(15.5rem, 17.5vw, 20.5rem);
  min-height: 0;
}

.work-card__logo-panel {
  width: min(66%, 14rem);
  padding: clamp(1.1rem, 1.5vw, 1.4rem);
}

.work-card__media--echoice {
  background: #d8d5ce;
}

.work-card__logo-panel--dark {
  background: var(--ink);
}

.work-card__logo-panel--dark img {
  max-width: 70%;
}

.work-card__body h3 {
  font-size: clamp(1.8rem, 2.2vw, 2.35rem);
}

.feedback-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.feedback-side {
  display: grid;
  justify-items: start;
  gap: 2rem;
}

.feedback-controls {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.feedback-counter {
  min-width: 4.5rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.feedback-control {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  place-items: center;
  transition: background 180ms var(--ease), color 180ms var(--ease), opacity 180ms ease;
}

.feedback-control:hover:not(:disabled) {
  background: var(--ink);
  color: var(--white);
}

.feedback-control:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.feedback-control svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.feedback-grid {
  display: flex;
  overflow-x: auto;
  padding-bottom: 0;
  gap: 1.25rem;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.feedback-grid::-webkit-scrollbar {
  display: none;
}

.feedback-card {
  display: flex;
  min-width: min(31.5rem, calc((100vw - (var(--gutter) * 2) - 2.5rem) / 3));
  min-height: 27rem;
  padding: clamp(1.6rem, 2.7vw, 2.5rem);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
  flex-direction: column;
  scroll-snap-align: start;
}

.feedback-card__mark {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 2.5rem;
  border-radius: 50%;
  background: var(--lime);
  font-family: var(--font-display);
  font-size: 1.35rem;
  place-items: center;
}

.feedback-card > p {
  max-width: 24ch;
  margin-bottom: 3rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.15vw, 2.35rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.feedback-card footer {
  display: grid;
  margin-top: auto;
  gap: 0.2rem;
}

.feedback-card footer strong {
  font-size: 0.9rem;
}

.feedback-card footer span {
  color: var(--muted);
  font-size: 0.78rem;
}

/* Compact capabilities and process */
.ledger-item,
.service-item {
  min-height: 12.5rem;
  padding: clamp(1.75rem, 3.2vw, 3rem);
}

.ledger-item h3,
.service-item h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
}

.ledger-item p,
.service-item p {
  font-size: 0.9rem;
}

#process.section {
  padding-block: clamp(4.75rem, 8vw, 8rem);
}

.process-heading {
  max-width: 10.5ch;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  font-size: clamp(3.5rem, 6vw, 7rem);
}

.process-step h3 {
  font-size: clamp(1.65rem, 2vw, 2.2rem);
}

.process-step p {
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Contact section */
.contact-section {
  padding-block: clamp(4rem, 7vw, 7rem);
}

.contact-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.contact-section__title {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(4rem, 8vw, 9rem);
}

.contact-brand-mark {
  position: relative;
  isolation: isolate;
  display: grid;
  width: clamp(7rem, 11vw, 10.5rem);
  min-height: 5.5rem;
  flex: 0 0 auto;
  border-radius: 999px;
  place-items: center;
  transition: transform 220ms var(--ease);
}

.contact-brand-mark::before {
  position: absolute;
  z-index: -1;
  inset: 10% 0;
  border: 1px solid rgba(11, 11, 12, 0.24);
  border-radius: 999px;
  content: "";
  opacity: 0;
  transform: scale(0.82) rotate(-5deg);
  transition: opacity 180ms ease, transform 320ms var(--ease);
  pointer-events: none;
}

.contact-brand-mark::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--ink);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.brand-mark--contact {
  width: clamp(7rem, 10vw, 10rem);
  height: clamp(1.9rem, 2.65vw, 2.65rem);
  transform-origin: 52% 50%;
  transition: transform 280ms var(--ease);
}

.brand-mark--contact img {
  width: clamp(14.4rem, 20.5vw, 20.55rem);
  transform: translate(clamp(-5.35rem, -5.3vw, -3.75rem), clamp(-7.8rem, -8vw, -5.45rem));
}

.contact-brand-mark:hover,
.contact-brand-mark:focus-visible {
  transform: translateY(-0.18rem);
}

.contact-brand-mark:hover::before,
.contact-brand-mark:focus-visible::before {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.contact-brand-mark:hover::after,
.contact-brand-mark:focus-visible::after {
  animation: contact-brand-orbit 720ms cubic-bezier(0.22, 0.8, 0.2, 1) both;
}

.contact-brand-mark:hover .brand-mark--contact,
.contact-brand-mark:focus-visible .brand-mark--contact {
  animation: brand-delight 560ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

@keyframes brand-delight {
  0%, 100% { transform: rotate(0deg) translateX(0) scale(1); }
  28% { transform: rotate(-5deg) translateX(-0.3rem) scale(1.045); }
  58% { transform: rotate(3.5deg) translateX(0.28rem) scale(0.995); }
  80% { transform: rotate(-1deg) translateX(-0.08rem) scale(1.01); }
}

@keyframes contact-brand-orbit {
  0% { opacity: 0; transform: translate(-50%, -50%) rotate(-40deg) translateX(clamp(2.8rem, 5vw, 4.4rem)) scale(0.45); }
  28% { opacity: 1; }
  100% { opacity: 1; transform: translate(-50%, -50%) rotate(275deg) translateX(clamp(2.8rem, 5vw, 4.4rem)) scale(1); }
}

.contact-section__intro {
  max-width: 52rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.form-panel {
  min-height: 43rem;
  padding: clamp(2rem, 3.2vw, 3.75rem);
  grid-template-columns: minmax(17rem, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 7vw, 8rem);
}

.form-panel__aside {
  min-height: 34rem;
}

.form-panel__aside h2 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 4vw, 4.6rem);
}

.form-panel__aside h2 em {
  display: block;
  font-weight: 400;
}

.form-panel__kicker {
  color: var(--lime);
}

.response-time {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.86rem;
}

.contact-details {
  margin-top: 1.5rem;
  gap: 0.45rem;
}

.contact-details a {
  min-height: 3.6rem;
  gap: 0.9rem;
  border: 0;
  font-size: 0.9rem;
}

.contact-link__icon {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  background: var(--panel-dark);
  font-size: 0.78rem;
  place-items: center;
}

.project-form .form-grid {
  gap: 0.65rem 1.15rem;
}

.project-form .field input,
.project-form .field select,
.project-form .field textarea {
  font-size: 0.9rem;
}

.project-form .field textarea {
  min-height: 7rem;
}

.project-form .form-actions .button {
  width: 100%;
  min-height: 4.5rem;
  margin-top: 0.35rem;
  font-size: 0.98rem;
}

/* Footer */
.footer-grid {
  grid-template-columns: minmax(18rem, 1.6fr) repeat(2, minmax(10rem, 0.7fr));
}

body:not(.page-home) .footer-grid {
  grid-template-columns: minmax(16rem, 1.4fr) repeat(3, minmax(9rem, 0.6fr));
}

.footer-lockup {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.brand-lockup--white {
  width: 16.25rem;
  height: 5.45rem;
}

.brand-lockup--white img {
  width: 22.45rem;
  transform: translate(-3.2rem, -7.8rem);
}

.footer-brand p {
  max-width: 23rem;
  font-size: clamp(1.65rem, 2.25vw, 2.6rem);
}

.footer-established {
  display: block;
  margin-top: 1.25rem;
  color: var(--muted-dark);
  font-size: 0.78rem;
}

.footer-column a {
  min-height: 2.75rem;
  font-size: 0.86rem;
}

.footer-meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}

.footer-meta > :last-child {
  justify-self: end;
}

/* Adaptive custom pointer */
.site-cursor {
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  display: none;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0);
  transition: width 150ms ease, height 150ms ease, background 150ms ease, opacity 120ms ease;
}

.site-cursor.is-visible { opacity: 1; }
.site-cursor.is-dark { background: var(--lime); }
.site-cursor.is-active { width: 1.15rem; height: 1.15rem; }
.site-cursor.is-hidden { opacity: 0; }

@media (hover: hover) and (pointer: fine) {
  html.has-custom-cursor body,
  html.has-custom-cursor a,
  html.has-custom-cursor button,
  html.has-custom-cursor summary,
  html.has-custom-cursor select {
    cursor: none;
  }

  html.has-custom-cursor input,
  html.has-custom-cursor textarea {
    cursor: text;
  }

  html.has-custom-cursor .site-cursor {
    display: block;
  }
}

@media (max-width: 79.99rem) {
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 63.99rem) {
  :root { --gutter: clamp(1.5rem, 5vw, 3.5rem); }

  .partner-reference-row {
    padding-top: 1.5rem;
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .partner-row__label {
    padding-bottom: 0.75rem;
  }

  .partner-logo {
    width: 12rem;
    min-height: 7rem;
  }

  .form-panel {
    grid-template-columns: 1fr;
  }

  .form-panel__aside {
    min-height: 24rem;
  }

  .feedback-card {
    min-width: min(31rem, 70vw);
  }
}

@media (max-width: 47.99rem) {
  :root { --gutter: clamp(1.125rem, 5vw, 1.5rem); }

  body { font-size: 1rem; }

  .header-cta {
    min-height: 2.75rem;
    padding-inline: 0.95rem;
    font-size: 0.72rem;
  }

  .brand {
    min-width: 7.25rem;
  }

  .brand-lockup--black {
    width: 7.25rem;
    height: 2.38rem;
  }

  .brand-lockup--black img {
    width: 9.99rem;
    transform: translate(-1.45rem, -3.8rem);
  }

  .partner-marquee::before,
  .partner-marquee::after {
    width: 2rem;
  }

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

  .work-card__media,
  .work-card:last-child .work-card__media {
    height: 18rem;
    min-height: 0;
  }

  .work-card:last-child {
    grid-column: auto;
  }

  .feedback-card {
    min-width: 84vw;
    min-height: 24rem;
  }

  .contact-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-section__title {
    font-size: clamp(3.25rem, 15vw, 5.5rem);
    overflow-wrap: anywhere;
  }

  .contact-brand-mark {
    width: 5rem;
    min-height: 3rem;
    align-self: flex-end;
  }

  .brand-mark--contact {
    width: 4.8rem;
    height: 1.3rem;
  }

  .brand-mark--contact img {
    width: 9.85rem;
    transform: translate(-2.55rem, -3.73rem);
  }

  .form-panel {
    min-height: 0;
    padding: 1.25rem;
  }

  .form-panel__aside {
    min-height: 22rem;
  }

  .footer-meta {
    display: flex;
  }

  .footer-grid,
  body:not(.page-home) .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-meta > :last-child {
    justify-self: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-track,
  .header-cta__pulse,
  .contact-brand-mark:hover .brand-mark--contact,
  .contact-brand-mark:focus-visible .brand-mark--contact {
    animation: none;
  }

  .contact-brand-mark,
  .contact-brand-mark::before {
    transition: none;
  }

  .contact-brand-mark:hover,
  .contact-brand-mark:focus-visible {
    transform: none;
  }

  .contact-brand-mark:hover::after,
  .contact-brand-mark:focus-visible::after {
    animation: none;
    opacity: 1;
    transform: translate(-50%, -50%) translateX(clamp(2.8rem, 5vw, 4.4rem));
  }
}

@media (forced-colors: active) {
  .site-cursor { display: none !important; }
  .partner-marquee::before,
  .partner-marquee::after,
  .contact-brand-mark::before,
  .contact-brand-mark::after { display: none; }
  html.has-custom-cursor body,
  html.has-custom-cursor a,
  html.has-custom-cursor button,
  html.has-custom-cursor summary,
  html.has-custom-cursor select { cursor: auto; }
}
