:root {
  --graphite: #1d211f;
  --graphite-2: #272c29;
  --petrol: #176b68;
  --petrol-dark: #0f4e4c;
  --mint: #d8ece7;
  --warm-white: #f6f4ee;
  --paper: #fffcf5;
  --near-black: #151817;
  --coral: #ff6b52;
  --line-dark: rgba(21, 24, 23, 0.18);
  --line-light: rgba(246, 244, 238, 0.18);
  --shadow: 0 28px 70px rgba(41, 65, 59, 0.14);
  --radius-sm: 0.65rem;
  --radius-md: 1.2rem;
  --radius-lg: 2rem;
  --page: min(100% - 2.5rem, 90rem);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: clip;
  background: var(--warm-white);
  color: var(--near-black);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

picture {
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  background: var(--coral);
  color: var(--near-black);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.hero-wrap {
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: var(--page);
  min-height: 6rem;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper);
  color: var(--near-black);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand > span:last-child {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.brand small {
  margin-top: 0.28rem;
  color: rgba(21, 24, 23, 0.58);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.main-nav > a:not(.button) {
  position: relative;
  color: rgba(21, 24, 23, 0.74);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 1px;
  background: var(--petrol);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0.28rem 0;
  background: var(--near-black);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 3.45rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--near-black);
  color: var(--warm-white);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button--small {
  min-height: 2.8rem;
  padding-inline: 1.05rem;
  font-size: 0.82rem;
}

.button--mint {
  background: var(--petrol);
  color: var(--warm-white);
}

.button--mint:hover {
  background: var(--petrol-dark);
}

.button--ghost {
  border-color: rgba(21, 24, 23, 0.34);
  background: transparent;
  color: var(--near-black);
}

.button--ghost:hover {
  border-color: var(--petrol);
  color: var(--petrol-dark);
}

.button--coral {
  background: var(--coral);
  color: var(--near-black);
}

.hero {
  isolation: isolate;
  display: grid;
  min-height: 41rem;
  grid-template-columns: minmax(0, 1fr) minmax(25rem, 0.78fr);
  gap: clamp(2.5rem, 5vw, 6rem);
  width: var(--page);
  margin: 0 auto;
  padding: clamp(3.75rem, 6vw, 6rem) 0 clamp(4rem, 7vw, 6rem);
  align-items: center;
  background:
    radial-gradient(circle at 84% 18%, rgba(216, 236, 231, 0.94), transparent 32rem),
    linear-gradient(145deg, var(--paper), var(--warm-white) 76%);
  box-shadow: 0 0 0 100vmax var(--warm-white);
  clip-path: inset(0 -100vmax);
  color: var(--near-black);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  margin: 0 0 1.4rem;
  align-items: center;
  gap: 0.7rem;
  color: var(--petrol-dark);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.6rem;
  height: 0.16rem;
  background: var(--coral);
  content: "";
}

.eyebrow--dark {
  color: var(--petrol-dark);
}

.eyebrow--light {
  color: var(--petrol-dark);
}

.hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.35rem, 6.2vw, 6.7rem);
  font-weight: 620;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.hero__lead {
  max-width: 42rem;
  margin: 2rem 0 0;
  color: rgba(21, 24, 23, 0.68);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.15rem;
}

.proof-line {
  display: flex;
  flex-wrap: wrap;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.proof-line li {
  display: flex;
  align-items: center;
  color: rgba(21, 24, 23, 0.68);
  font-size: 0.82rem;
  font-weight: 650;
}

.proof-line li:not(:last-child)::after {
  width: 0.28rem;
  height: 0.28rem;
  margin: 0 0.8rem;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.hero__visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 34rem;
}

.hero__picture,
.hero__picture img {
  width: 100%;
  height: 100%;
}

.hero__picture {
  overflow: hidden;
  border: 1px solid rgba(21, 24, 23, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero__picture img {
  object-fit: cover;
}

.hero__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  display: grid;
  max-width: calc(100% - 7rem);
  padding: 1.2rem 1.4rem;
  border-radius: 0 var(--radius-md) 0 0;
  background: rgba(21, 24, 23, 0.88);
  backdrop-filter: blur(14px);
}

.hero__caption span {
  color: var(--mint);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__caption strong {
  margin-top: 0.18rem;
  color: var(--warm-white);
  font-size: 0.9rem;
}

.hero__stamp {
  position: absolute;
  right: -2rem;
  bottom: 1.8rem;
  display: grid;
  width: 9.5rem;
  height: 9.5rem;
  place-content: center;
  border: 1px solid var(--mint);
  border-radius: 50%;
  background: var(--petrol);
  color: var(--warm-white);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.55;
  text-align: center;
  transform: rotate(7deg);
}

.hero__stamp span:last-child {
  color: var(--mint);
}

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

.flow-strip {
  display: flex;
  min-height: 4.25rem;
  padding: 1rem max(1.25rem, calc((100vw - 90rem) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  background: var(--mint);
  color: var(--petrol-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
  scrollbar-width: none;
}

.flow-strip::-webkit-scrollbar {
  display: none;
}

.flow-strip i {
  color: var(--coral);
  font-size: 1.15rem;
  font-style: normal;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section-heading {
  margin-bottom: clamp(2.5rem, 4vw, 3.75rem);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.55fr);
  gap: 4rem;
  align-items: end;
}

.section-heading h2,
.brief-section h2,
.vertical-intro h2,
.faq-section__heading h2 {
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 5.2rem);
  font-weight: 620;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.section-heading > p,
.section-heading--split > p,
.faq-section__heading > p,
.vertical-intro p {
  margin: 0;
  color: rgba(21, 24, 23, 0.68);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 16.5rem;
  padding: 1.35rem;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-card:hover {
  z-index: 1;
  background: var(--petrol);
  color: var(--warm-white);
  transform: translateY(-0.3rem);
}

.service-card > span {
  color: var(--petrol);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card:hover > span {
  color: var(--mint);
}

.service-card h3 {
  max-width: 12ch;
  margin: 2.2rem 0 0.65rem;
  font-size: clamp(1.45rem, 2.25vw, 2.15rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.service-card p {
  margin: 0 0 1.25rem;
  color: rgba(21, 24, 23, 0.66);
}

.service-card:hover p {
  color: rgba(246, 244, 238, 0.75);
}

.service-card a {
  width: fit-content;
  margin-top: auto;
  font-size: 0.8rem;
  font-weight: 750;
}

.use-cases-section {
  padding-top: clamp(4.5rem, 8vw, 7.5rem);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--line-dark);
}

.use-case-grid article {
  min-height: 12.5rem;
  padding: 1.35rem;
  background: var(--paper);
}

.use-case-grid article > span {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
}

.use-case-grid h3 {
  margin: 2rem 0 0.55rem;
  font-size: 1.4rem;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.use-case-grid p {
  margin: 0;
  color: rgba(21, 24, 23, 0.66);
}

.industry-band {
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(20rem, 1.3fr) auto;
  gap: 2rem;
  margin-top: 1.25rem;
  padding: 1.35rem;
  align-items: center;
  border-radius: var(--radius-md);
  border: 1px solid rgba(23, 107, 104, 0.2);
  background: var(--paper);
}

.industry-band > div {
  display: grid;
}

.industry-band > div span {
  color: var(--petrol);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.industry-band > div strong {
  margin-top: 0.35rem;
  font-size: 1.1rem;
  line-height: 1.25;
}

.industry-band ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-band li {
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(23, 107, 104, 0.3);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 700;
}

.industry-band > a {
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.eu-section {
  border-top: 1px solid var(--line-dark);
}

.eu-section__copy {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.eu-section__copy p {
  margin: 0;
  color: rgba(21, 24, 23, 0.68);
  font-size: 1.05rem;
}

.eu-section__copy .button {
  width: fit-content;
}

.benefit-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.benefit-card {
  min-height: 12rem;
  padding: 1.25rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.benefit-card > span {
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 800;
}

.benefit-card h3 {
  margin: 1.8rem 0 0.5rem;
  color: var(--petrol-dark);
  font-size: 1.3rem;
  letter-spacing: -0.035em;
}

.benefit-card p {
  margin: 0;
  color: rgba(21, 24, 23, 0.64);
}

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

.projects-section {
  width: auto;
  padding-right: max(1.25rem, calc((100vw - 90rem) / 2));
  padding-left: max(1.25rem, calc((100vw - 90rem) / 2));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper);
}

.project-card {
  position: relative;
  grid-column: span 6;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--mint);
}

.project-card:first-child {
  grid-column: span 8;
}

.project-card:nth-child(2) {
  grid-column: span 4;
}

.project-card:nth-child(5) {
  grid-column: span 7;
}

.project-card:nth-child(6) {
  grid-column: span 5;
}

.project-card picture,
.project-card img {
  width: 100%;
  height: 100%;
}

.project-card picture {
  aspect-ratio: 16 / 10;
}

.project-card:nth-child(2) picture,
.project-card:nth-child(6) picture {
  aspect-ratio: 4 / 5;
}

.project-card img {
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0, 1);
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-card figcaption {
  position: absolute;
  right: auto;
  bottom: 0.85rem;
  left: 0.85rem;
  display: grid;
  max-width: calc(100% - 1.7rem);
  padding: 0.85rem 1rem;
  gap: 0.15rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  background: rgba(255, 252, 245, 0.92);
  color: var(--near-black);
  box-shadow: 0 12px 35px rgba(12, 15, 14, 0.14);
  backdrop-filter: blur(14px);
}

.project-card figcaption strong {
  font-size: 1rem;
}

.project-card figcaption span {
  color: var(--petrol-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: left;
}

.project-grid--three .project-card {
  grid-column: span 4;
}

.project-grid--three .project-card picture {
  aspect-ratio: 4 / 5;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  list-style: none;
}

.process-step {
  min-height: 12rem;
  padding: 1.25rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.process-step > span {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--petrol-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.process-step h3 {
  margin: 2rem 0 0.55rem;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.process-step p {
  margin: 0;
  color: rgba(21, 24, 23, 0.64);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.62fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding-top: clamp(4.5rem, 8vw, 7.5rem);
}

.faq-section__heading {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.faq-section__heading h2 {
  font-size: clamp(2.55rem, 4vw, 4rem);
}

.faq-section__heading > p {
  margin-top: 1.5rem;
}

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

.faq-item {
  border-bottom: 1px solid var(--line-dark);
}

.faq-item summary {
  display: grid;
  padding: 1.2rem 0;
  grid-template-columns: 1fr 2.4rem;
  gap: 1rem;
  align-items: center;
  font-size: 1.03rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary span {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.faq-item summary span::before,
.faq-item summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 1px;
  background: var(--near-black);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

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

.faq-item[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item p {
  max-width: 48rem;
  margin: -0.3rem 3.5rem 1.6rem 0;
  color: rgba(21, 24, 23, 0.68);
}

.brief-section {
  display: grid;
  width: var(--page);
  grid-template-columns: minmax(0, 0.75fr) minmax(28rem, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  margin: 0 auto 1.25rem;
  padding: clamp(3rem, 5vw, 5rem);
  border-radius: var(--radius-lg);
  background: var(--petrol);
  color: var(--warm-white);
}

.brief-section__copy > p:not(.eyebrow) {
  max-width: 35rem;
  margin-top: 1.5rem;
  color: rgba(246, 244, 238, 0.74);
  font-size: 1.05rem;
}

.brief-section .eyebrow--light {
  color: var(--mint);
}

.direct-contact {
  display: grid;
  margin-top: 2rem;
  gap: 0.55rem;
}

.direct-contact span {
  color: rgba(246, 244, 238, 0.58);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.direct-contact a {
  width: fit-content;
  color: var(--mint);
  font-weight: 650;
}

.lead-form {
  padding: clamp(1.3rem, 2.5vw, 2rem);
  border-radius: var(--radius-md);
  border: 1px solid rgba(21, 24, 23, 0.12);
  background: var(--paper);
  color: var(--near-black);
  box-shadow: 0 22px 60px rgba(7, 39, 37, 0.22);
}

.lead-form__heading {
  display: flex;
  margin-bottom: 1.35rem;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.lead-form__heading strong {
  font-size: 1.7rem;
  letter-spacing: -0.045em;
}

.lead-form__heading span {
  color: rgba(21, 24, 23, 0.6);
  font-size: 0.76rem;
  text-align: right;
}

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

.form-grid label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 750;
}

.form-grid label > span {
  color: var(--coral);
}

.form-grid label > small {
  display: inline;
  color: rgba(21, 24, 23, 0.5);
  font-weight: 500;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid rgba(21, 24, 23, 0.28);
  border-radius: 0;
  background: transparent;
  outline: none;
}

.form-grid textarea {
  min-height: 4.8rem;
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-bottom-color: var(--petrol);
  box-shadow: 0 1px 0 var(--petrol);
}

.form-grid input[aria-invalid="true"],
.form-grid textarea[aria-invalid="true"] {
  border-color: var(--coral);
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.consent {
  display: flex;
  margin: 1.4rem 0;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(21, 24, 23, 0.65);
  font-size: 0.73rem;
  line-height: 1.45;
}

.consent input {
  width: 1rem;
  height: 1rem;
  margin: 0.1rem 0 0;
  accent-color: var(--petrol);
}

.button--submit {
  width: 100%;
  background: var(--petrol);
}

.button--submit:hover {
  background: var(--petrol-dark);
}

.button--submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-status {
  min-height: 1.45rem;
  margin: 0.9rem 0 0;
  font-size: 0.78rem;
}

.form-status.is-success {
  color: var(--petrol-dark);
}

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

.site-footer {
  display: grid;
  width: var(--page);
  grid-template-columns: minmax(18rem, 1.4fr) minmax(10rem, 0.55fr) minmax(12rem, 0.65fr);
  gap: 3rem;
  margin: 0 auto 1.25rem;
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: var(--petrol-dark);
  color: var(--warm-white);
}

.site-footer .brand small {
  color: rgba(246, 244, 238, 0.58);
}

.site-footer__brand > p {
  max-width: 30rem;
  margin: 1.5rem 0 0;
  color: rgba(246, 244, 238, 0.64);
}

.site-footer__nav,
.site-footer__contact {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.site-footer__nav > span,
.site-footer__contact > span {
  margin-bottom: 0.35rem;
  color: rgba(216, 236, 231, 0.58);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__nav a,
.site-footer__contact a {
  width: fit-content;
  color: var(--warm-white);
  font-size: 0.82rem;
  font-weight: 650;
}

.site-footer__note {
  display: flex;
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  border-top: 1px solid rgba(246, 244, 238, 0.16);
  color: rgba(246, 244, 238, 0.48);
  font-size: 0.68rem;
}

.site-footer__note a {
  color: var(--mint);
}

.vertical-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.85fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.vertical-intro > div:last-child {
  align-self: end;
}

.vertical-intro ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.vertical-intro li {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(23, 107, 104, 0.28);
  border-radius: 6px;
  color: var(--petrol-dark);
  font-size: 0.76rem;
  font-weight: 700;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 1.25rem;
  background: var(--warm-white);
  color: var(--near-black);
}

.error-page main {
  width: min(100%, 48rem);
  text-align: center;
}

.error-page .brand {
  margin-bottom: 5rem;
}

.error-page__code {
  margin: 0;
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.error-page h1 {
  margin: 1rem 0;
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.error-page main > p:not(.error-page__code) {
  color: rgba(21, 24, 23, 0.62);
}

.error-page .button {
  margin-top: 1.5rem;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1100px) {
  .hero__stamp {
    right: 0.5rem;
  }

  .main-nav > a:not(.button) {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 100;
    top: 6rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 2rem max(1.25rem, calc((100vw - 90rem) / 2)) 5rem;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 1.2rem;
  }

  .main-nav .button {
    margin-top: 1.5rem;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(0.4rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-0.4rem) rotate(-45deg);
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.8fr);
    gap: 3rem;
  }

  .service-card {
    min-height: 16.5rem;
  }

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

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

  .industry-band > a {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --page: min(100% - 2rem, 90rem);
  }

  .site-header {
    min-height: 5rem;
  }

  .main-nav {
    top: 5rem;
    padding: 2rem 1rem 5rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 4rem 0 5rem;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(3.2rem, 10vw, 5.7rem);
  }

  .hero__visual {
    min-height: 34rem;
  }

  .hero__stamp {
    right: 1rem;
  }

  .flow-strip {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .section-heading--split,
  .faq-section,
  .brief-section,
  .vertical-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-grid,
  .use-case-grid,
  .process-list,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-section__heading {
    position: static;
  }

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

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

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  :root {
    --page: calc(100% - 1.5rem);
  }

  html {
    scroll-padding-top: 5rem;
  }

  body {
    padding-bottom: 4rem;
  }

  .brand__mark {
    width: 2.25rem;
    height: 2.25rem;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .hero {
    gap: 2.5rem;
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
    line-height: 0.93;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .proof-line {
    display: grid;
    gap: 0.55rem;
  }

  .proof-line li:not(:last-child)::after {
    display: none;
  }

  .proof-line li::before {
    width: 0.3rem;
    height: 0.3rem;
    margin-right: 0.6rem;
    border-radius: 50%;
    background: var(--coral);
    content: "";
  }

  .hero__visual {
    min-height: 27rem;
  }

  .hero__picture {
    border-radius: var(--radius-md);
  }

  .hero__caption {
    max-width: 64%;
    padding: 0.85rem 1rem;
  }

  .hero__caption strong {
    font-size: 0.78rem;
  }

  .hero__stamp {
    right: 0.65rem;
    bottom: 0.75rem;
    width: 7rem;
    height: 7rem;
    font-size: 0.52rem;
  }

  .section {
    padding: 4.25rem 0;
  }

  .section-heading h2,
  .brief-section h2,
  .vertical-intro h2,
  .faq-section__heading h2 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .service-grid,
  .use-case-grid,
  .process-list,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 14.5rem;
  }

  .use-case-grid article {
    min-height: auto;
    padding: 1.4rem;
  }

  .use-case-grid h3 {
    margin-top: 1.5rem;
  }

  .industry-band {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }

  .industry-band > a {
    grid-column: auto;
    white-space: normal;
  }

  .brief-section {
    width: calc(100% - 1.5rem);
    padding: 2.5rem 1.25rem;
  }

  .benefit-grid {
    margin-top: 0;
  }

  .benefit-card {
    min-height: auto;
  }

  .project-grid,
  .project-grid--three {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card:first-child,
  .project-card:nth-child(2),
  .project-card:nth-child(5),
  .project-card:nth-child(6),
  .project-grid--three .project-card {
    grid-column: auto;
  }

  .project-card picture,
  .project-card:nth-child(2) picture,
  .project-card:nth-child(6) picture,
  .project-grid--three .project-card picture {
    aspect-ratio: 4 / 3;
  }

  .project-card--portrait picture,
  .project-card--portrait img {
    object-position: center 42%;
  }

  .projects-section {
    padding: 4.25rem 0.75rem;
  }

  .process-step {
    min-height: auto;
  }

  .faq-item summary {
    font-size: 0.98rem;
  }

  .lead-form {
    padding: 1.2rem;
    border-radius: var(--radius-md);
  }

  .lead-form__heading {
    display: grid;
  }

  .lead-form__heading span {
    text-align: left;
  }

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

  .form-grid__wide {
    grid-column: auto;
  }

  .site-footer {
    width: calc(100% - 1.5rem);
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.25rem 1.25rem;
  }

  .site-footer__brand,
  .site-footer__note {
    grid-column: auto;
  }

  .site-footer__note {
    display: grid;
    justify-content: start;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 90;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    display: grid;
    min-height: 3.2rem;
    place-items: center;
    border-radius: 6px;
    background: var(--coral);
    color: var(--near-black);
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 35px rgba(41, 65, 59, 0.22);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-sticky-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* Final merch.mt alignment */
.button {
  border-radius: 6px;
}

.hero__actions .hero-secondary-link {
  min-height: 3.45rem;
  display: inline-flex;
  align-items: center;
  color: var(--near-black);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hero__caption {
  right: auto;
  bottom: 0;
  left: 0;
  max-width: 72%;
  padding: 0.9rem 1rem;
  border: 0;
  border-radius: 0 4px 0 0;
  background: rgba(21, 24, 23, 0.9);
  color: var(--warm-white);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.hero__caption span {
  color: var(--mint);
}

.project-card {
  border-radius: 6px;
}

.project-card figcaption {
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  max-width: none;
  padding: 1rem 1.1rem;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  border-radius: 0;
  background: linear-gradient(transparent, rgba(12, 15, 14, 0.9));
  color: var(--warm-white);
  box-shadow: none;
  backdrop-filter: none;
}

.project-card figcaption span {
  color: var(--mint);
  text-align: right;
}

.industry-band {
  border-radius: 6px;
}

.industry-band li,
.vertical-intro li {
  border-radius: 4px;
}

.process-step > span {
  display: block;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--petrol);
  line-height: 1;
}

.faq-item summary span {
  border-radius: 4px;
}

.events-section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4.75rem);
  border-radius: 6px;
  background: var(--graphite);
  color: var(--warm-white);
}

.events-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.65fr);
  gap: clamp(2rem, 6vw, 6rem);
  margin-bottom: 1.8rem;
  align-items: end;
}

.events-section .eyebrow {
  color: var(--mint);
}

.events-section h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.75rem, 4.7vw, 5rem);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.events-section__heading > p {
  margin: 0;
  color: rgba(246, 244, 238, 0.66);
  line-height: 1.55;
}

.event-list {
  border-top: 1px solid rgba(246, 244, 238, 0.2);
}

.event-row {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) minmax(9rem, auto) 1.25rem;
  gap: 0.85rem 1rem;
  padding: 0.9rem 0;
  align-items: center;
  border-bottom: 1px solid rgba(246, 244, 238, 0.18);
  color: var(--warm-white);
  text-decoration: none;
}

.event-row > span {
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.event-row strong {
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  letter-spacing: -0.025em;
}

.event-row em {
  color: rgba(246, 244, 238, 0.62);
  font-size: 0.8rem;
  font-style: normal;
  text-align: right;
}

.event-row b {
  color: var(--mint);
  font-weight: 500;
}

.event-row:hover strong {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.other-events {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1.5rem;
  margin-top: 1.15rem;
  align-items: baseline;
}

.other-events > span {
  color: rgba(246, 244, 238, 0.5);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.other-events ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.other-events li {
  color: rgba(246, 244, 238, 0.82);
  font-size: 0.78rem;
}

.other-events li:not(:last-child)::after {
  margin: 0 0.65rem;
  color: var(--coral);
  content: "·";
}

.events-disclaimer {
  margin: 1rem 0 0;
  color: rgba(246, 244, 238, 0.42);
  font-size: 0.66rem;
  line-height: 1.45;
}

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

.customs-line {
  margin: 1rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid var(--coral);
  color: rgba(21, 24, 23, 0.62);
  font-size: 0.82rem;
  line-height: 1.5;
}

.customs-line strong {
  color: var(--petrol-dark);
}

.brief-section {
  padding: clamp(2.5rem, 4vw, 4rem);
  border-radius: 6px;
}

.lead-form {
  border-radius: 6px;
  box-shadow: none;
}

.site-footer {
  display: grid;
  width: var(--page);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 1.75rem;
  margin: 0 auto 10px;
  padding: 18px 24px 12px;
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: var(--paper);
  color: var(--near-black);
}

.site-footer > div:first-child {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 1.25rem;
}

.site-footer > div:first-child > p {
  max-width: 34rem;
  margin: 0;
  color: rgba(21, 24, 23, 0.6);
  font-size: 0.82rem;
  line-height: 1.35;
}

.site-footer .brand small {
  color: rgba(21, 24, 23, 0.48);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1.1rem;
}

.footer-links a {
  color: var(--near-black);
  font-size: 0.76rem;
  font-weight: 550;
  text-underline-offset: 3px;
}

.footer-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line-dark);
  color: rgba(21, 24, 23, 0.46);
  font-size: 0.66rem;
}

@media (max-width: 900px) {
  .events-section__heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .event-row {
    grid-template-columns: 2.25rem minmax(0, 1fr) 1.25rem;
  }

  .event-row em {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
  }

  .event-row b {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

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

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

  .site-footer > div:first-child {
    display: grid;
    gap: 0.45rem;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 650px) {
  .hero__actions .hero-secondary-link {
    width: fit-content;
    min-height: 2.6rem;
  }

  .events-section {
    width: calc(100% - 1.5rem);
    padding: 2.5rem 1.25rem;
  }

  .events-section h2 {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  .other-events {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    width: calc(100% - 1.5rem);
    padding: 16px 14px 12px;
  }

  .mobile-sticky-cta {
    border-radius: 6px;
  }
}
