:root {
  --surface-dark: #121212;
  --surface-dark-soft: #171513;
  --surface-light: #ffffff;
  --surface-light-soft: #f7f7f7;
  --surface-light-92: rgba(255, 255, 255, 0.92);
  --surface-light-08: rgba(255, 255, 255, 0.08);
  --surface-light-06: rgba(255, 255, 255, 0.06);
  --surface-neutral: #dddfdb;
  --surface-neutral-strong: #898989;
  --surface-accent-red: #e6343f;
  --surface-accent-red-pressed: #cc2430;
  --surface-accent-yellow: #e0b800;
  --surface-accent-blue: #007ab2;
  --surface-accent-violet: #866dff;
  --surface-accent-light-blue: #9dd9f1;
  --text-primary: #1e1c1b;
  --text-secondary: #5f5853;
  --text-muted: #7d7670;
  --text-inverse: #ffffff;
  --text-inverse-muted: rgba(246, 243, 240, 0.72);
  --border-light-strong: rgba(255, 255, 255, 0.16);
  --border-light-stronger: rgba(255, 255, 255, 0.18);
  --border-light-focus: rgba(255, 255, 255, 0.7);
  --border-dark-soft: rgba(30, 28, 27, 0.08);
  --border-neutral: #d5cfca;
  --border-neutral-soft: #c8c1bc;
  --border-inverse-soft: rgba(246, 243, 240, 0.22);
  --overlay-accent-red-soft: rgba(230, 52, 63, 0.24);
  --overlay-accent-red-strong: rgba(230, 52, 63, 0.72);
  --overlay-accent-red-subtle: rgba(230, 52, 63, 0.12);
  --overlay-accent-red-border: rgba(230, 52, 63, 0.42);
  --overlay-accent-blue-soft: rgba(1, 51, 127, 0.22);
  --overlay-accent-light-blue-subtle: rgba(157, 217, 241, 0.12);
  --overlay-accent-light-blue-border: rgba(157, 217, 241, 0.42);
  --header-backdrop: rgba(18, 18, 18, 0.84);
  --shadow-focus-accent: 0 0 0 3px rgba(230, 52, 63, 0.2);
  --page-gutter: 10vw;
  --section-space: clamp(80px, 10vw, 160px);
  --stack-gap: clamp(16px, 3vw, 40px);
  --display-xl: clamp(36px, 6vw, 88px);
  --display-lg: clamp(32px, 4.9vw, 72px);
  --display-md: clamp(28px, 3vw, 48px);
  --body-lg: clamp(18px, 1.5vw, 24px);
  --body-md: clamp(16px, 1.1vw, 18px);
  --label-sm: 16px;
  --radius-lg: 36px;
  --max-width: 1728px;
  --font-space-grotesk: "Space Grotesk", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  word-break: keep-all;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--surface-light);
  color: var(--text-inverse);
  font-family: var(--font-space-grotesk);
  line-height: 1.5;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.mobile-menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.22s ease,
    opacity 0.22s ease,
    text-decoration-color 0.22s ease;
}

p {
  margin-block-end: 0;
  margin-block-start: 0;
}

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

button {
  color: inherit;
}

::selection {
  background: var(--overlay-accent-red-soft);
  color: var(--text-inverse);
}

:focus-visible {
  outline: 2px solid var(--overlay-accent-red-strong);
  outline-offset: 4px;
}

.js [data-reveal] {
  --reveal-delay: 0ms;
  --reveal-duration: 780ms;
  --reveal-ease: cubic-bezier(0.215, 0.61, 0.355, 1);
  --reveal-opacity: 0;
  opacity: var(--reveal-opacity);
  transition:
    opacity var(--reveal-duration) var(--reveal-ease) var(--reveal-delay),
    transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay);
  will-change: opacity, transform;
}

.js [data-reveal="text"] {
  transform: translate3d(0, 36px, 0);
}

.js [data-reveal="inline"] {
  transform: translate3d(0, 28px, 0);
}

.js [data-reveal="fade"] {
  transform: translate3d(0, 18px, 0);
}

.js [data-reveal="card"] {
  transform: translate3d(0, 42px, 0) scale(0.97);
  transform-origin: center;
}

.js [data-reveal="media"] {
  transform: translate3d(0, 46px, 0) scale(0.965);
  transform-origin: center;
}

.js [data-reveal="graphic"] {
  transform: translate3d(34px, 40px, 0) scale(0.9) rotate(-8deg);
  transform-origin: center;
}

.js [data-reveal].is-visible {
  --reveal-opacity: 1;
  opacity: var(--reveal-opacity);
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
}

.js .heading-reveal {
  overflow: visible;
}

.js .heading-reveal-inner {
  display: inline;
}

.js .heading-word {
  display: inline-flex;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.js .heading-letter {
  display: inline-block;
  margin-right: var(--heading-letter-spacing, 0em);
  opacity: 0;
  transform: translate3d(0, 1em, 0);
  transform-origin: 50% 100%;
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1)
      calc(var(--heading-letter-index, 0) * 26ms),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1)
      calc(var(--heading-letter-index, 0) * 26ms);
  will-change: opacity, transform;
}

.js .heading-reveal.is-heading-visible .heading-letter,
.js [data-reveal].is-visible .heading-reveal .heading-letter {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (hover: hover) and (pointer: fine) {
  html.has-global-cursor,
  html.has-global-cursor body,
  html.has-global-cursor a,
  html.has-global-cursor button,
  html.has-global-cursor [role="button"],
  html.has-global-cursor input,
  html.has-global-cursor textarea,
  html.has-global-cursor select,
  html.has-global-cursor label,
  html.has-global-cursor summary {
    cursor: none !important;
  }

  html.has-global-cursor .carousel-hover-indicator {
    display: none !important;
  }

  .global-cursor {
    align-items: center;
    -webkit-backdrop-filter: invert(1);
    backdrop-filter: invert(1);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 999px;
    display: flex;
    height: 32px;
    justify-content: center;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.88);
    transition:
      height 0.18s ease,
      opacity 0.18s ease,
      transform 0.18s ease,
      width 0.18s ease;
    width: 32px;
    z-index: 2147483647;
  }

  .global-cursor::before,
  .global-cursor::after {
    background: var(--surface-accent-red);
    border-radius: 999px;
    content: "";
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate3d(-50%, -50%, 0) scale(0.82);
    transition:
      opacity 0.18s ease,
      transform 0.18s ease;
  }

  .global-cursor::before {
    height: 2px;
    width: 18px;
  }

  .global-cursor::after {
    height: 18px;
    width: 2px;
  }

  .global-cursor.is-visible {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }

  .global-cursor.is-link-hover {
    height: 72px;
    width: 72px;
  }

  .global-cursor.is-link-hover::before,
  .global-cursor.is-link-hover::after {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
}

.main {
  padding-top: 0;
  overflow-x: clip;
}

.main > section,
.main > footer {
  isolation: isolate;
  position: relative;
}


.section-light {
  background: var(--surface-light);
  color: var(--text-primary);
}

.site-header {
  backdrop-filter: blur(18px);
  background: var(--surface-dark);
  border-bottom: none;
  inset: 0 0 auto;
  position: fixed;
  transform: translateY(0);
  transition:
    transform 0.28s ease,
    opacity 0.28s ease,
    background-color 0.28s ease,
    backdrop-filter 0.28s ease;
  z-index: 90;
}

/* Transparent while the header overlaps the index hero; solid elsewhere */
.site-header.is-transparent {
  background: transparent;
  backdrop-filter: none;
}

.site-header.menu-ready {
  z-index: 2147483647;
}

.site-header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 8px));
}

.header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 24px var(--header-gutter, var(--page-gutter));
  position: relative;
}

.logo {
  display: inline-flex;
  height: 49px;
  width: 120px;
}

.logo img {
  height: 100%;
  width: auto;
}

.site-nav {
  display: flex;
  font-size: var(--label-sm);
  font-weight: 500;
  gap: clamp(18px, 2.6vw, 40px);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--surface-light);
  cursor: pointer;
  display: none;
  height: 40px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 40px;
}

.menu-toggle::before {
  background:
    url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 5L5 5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M23 12L1 12' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M23 19H10' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
      center / 24px 24px no-repeat;
  content: "";
  height: 24px;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  width: 24px;
}

.menu-toggle span {
  background: currentColor;
  border-radius: 2px;
  display: block;
  height: 2px;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform-origin: center;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  width: 22px;
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 7px));
}

.menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 7px));
}

.site-header.menu-open .menu-toggle::before {
  opacity: 0;
  transform: scale(0.9);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%);
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-nav a:hover {
  opacity: 0.84;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-nav a[aria-current="page"],
.footer-nav a[aria-current="page"] {
  color: var(--surface-accent-red);
}

.footer-nav a:hover {
  color: var(--surface-accent-red);
}

.inline-cta {
  align-items: center;
  display: inline-flex;
  font-size: var(--label-sm);
  font-weight: 500;
  gap: 16px;
  letter-spacing: 0.18em;
  line-height: 1;
  position: relative;
  text-transform: uppercase;
}

.inline-cta.dark {
  color: var(--text-primary);
}

.inline-cta:hover {
  opacity: 0.86;
}

.cta-arrow {
  height: 26.667px;
  transform: rotate(-90deg);
  transition: transform 0.22s ease;
  width: 16px;
}

.inline-cta:hover .cta-arrow {
  transform: rotate(-90deg) translateY(8px);
}

.eyebrow,
.project-list-tags {
  font-size: var(--label-sm);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.lead {
  font-size: var(--body-lg);
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
}

.studio-hero-copy,
.selected-projects-copy,
.home-approach-copy,
.cta-copy,
.projects-hero-copy,
.contact-hero-inner,
.project-case-heading,
.project-case-overview-objective,
.project-case-result-inner,
.clients-copy,
.team-intro {
  display: flex;
  flex-direction: column;
  gap: var(--stack-gap);
}

.studio-hero-copy h1,
.projects-hero h1,
.project-case-heading h1,
.contact-hero h1 {
  --heading-letter-spacing: -0.045em;
  font-size: var(--display-xl);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0;

}

.selected-projects-copy h2,
.home-approach-copy h2,
.home-intro h2,
.clients-copy h2,
.cta-section h2,
.studio-intro h2,
.team-intro h2,
.project-case-overview-objective h2,
.project-case-column h2,
.project-case-result-inner h2,
.page-contact .contact-section-title {
  --heading-letter-spacing: -0.035em;
  font-size: var(--display-lg);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;

}

.hero-description,
.selected-projects-copy .lead,
.home-approach-text p,
.clients-copy p,
.studio-intro p,
.home-intro p:not(.eyebrow),
.service-description,
.team-intro p,
.cta-section p,
.contact-hero p:not(.eyebrow),
.contact-direct-label,
.contact-direct-value,
.project-case-overview-intro,
.project-case-overview-objective p,
.project-case-column p,
.project-case-meta-value,
.project-case-result-inner p {
  font-size: var(--body-lg);
  font-weight: 300;
  line-height: 1.5;
}

.index-hero {
  background: var(--surface-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-x: clip;
  overflow-y: visible;
  padding: 163px var(--page-gutter) 80px;
  position: relative;
  z-index: 2;
}

.hero-background-video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 0;
}

/* Animated mesh gradient (hero background) — drifting blurred color blobs
   blended over the black surface, à la encontech.nl */
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  /* keeps the glow contained in the hero */
  isolation: isolate;
}

.hero-blob {
  position: absolute;
  display: block;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  /* screen blending makes colors glow against the black background */
  mix-blend-mode: screen;
  filter: blur(70px);
  will-change: transform, opacity;
  opacity: 0.85;
}

.hero-blob--red {
  background: radial-gradient(
    circle at center,
    rgba(230, 52, 63, 0.95) 0%,
    rgba(230, 52, 63, 0.45) 38%,
    rgba(230, 52, 63, 0) 70%
  );
  top: -18%;
  left: -8%;
  animation: hero-blob-drift-1 24s ease-in-out infinite;
}

.hero-blob--blue {
  background: radial-gradient(
    circle at center,
    rgba(0, 122, 178, 0.9) 0%,
    rgba(0, 122, 178, 0.4) 40%,
    rgba(0, 122, 178, 0) 72%
  );
  top: 5%;
  right: -14%;
  width: 62vw;
  height: 62vw;
  animation: hero-blob-drift-2 30s ease-in-out infinite;
}

.hero-blob--light-blue {
  background: radial-gradient(
    circle at center,
    rgba(157, 217, 241, 0.85) 0%,
    rgba(157, 217, 241, 0.35) 40%,
    rgba(157, 217, 241, 0) 72%
  );
  bottom: -22%;
  left: 12%;
  width: 58vw;
  height: 58vw;
  animation: hero-blob-drift-3 27s ease-in-out infinite;
}

.hero-blob--yellow {
  background: radial-gradient(
    circle at center,
    rgba(224, 184, 0, 0.85) 0%,
    rgba(224, 184, 0, 0.35) 42%,
    rgba(224, 184, 0, 0) 72%
  );
  bottom: -16%;
  right: 6%;
  width: 54vw;
  height: 54vw;
  animation: hero-blob-drift-4 21s ease-in-out infinite;
}

@keyframes hero-blob-drift-1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(14%, 10%) scale(1.12);
  }
  66% {
    transform: translate(8%, -6%) scale(0.95);
  }
}

@keyframes hero-blob-drift-2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-16%, 12%) scale(0.92);
  }
  66% {
    transform: translate(-6%, 22%) scale(1.14);
  }
}

@keyframes hero-blob-drift-3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(12%, -14%) scale(1.1);
  }
  66% {
    transform: translate(-10%, -4%) scale(0.94);
  }
}

@keyframes hero-blob-drift-4 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-12%, -10%) scale(1.08);
  }
  66% {
    transform: translate(-18%, 6%) scale(0.9);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-blob {
    animation: none;
  }
}

.hero-headline,
.hero-bottom {
  position: relative;
  z-index: 2;
}

.hero-title,
.ai-design-e-neuromarketing-pe {
  position: relative;
  font-size: var(--display-xl);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  font-family: var(--font-space-grotesk);
  color: var(--text-inverse);
  text-align: left;
  margin: 0;
  width: min(100%, 1568px);
}

.hero-rotating-word {
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
}

@media (min-width: 901px) {
  .hero-rotating-word {
    height: 91px;
  }
}

.hero-rotating-word-inner {
  display: inline-block;
  white-space: nowrap;
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 420ms cubic-bezier(0.65, 0, 0.35, 1),
    opacity 280ms ease;
}

.hero-rotating-word-inner.is-leaving {
  transform: translateY(-115%);
  opacity: 0;
}

.hero-rotating-word-inner.is-entering {
  transform: translateY(115%);
  opacity: 0;
  transition: none;
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 80px);
  width: min(100%, 60%);
}

.hero-description {
  font-size: var(--body-lg);
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  width: 100%;
}

.index-hero .inline-cta {
  margin-top: 0;
}

.hero-graphic,
.heading-1-designups-builds-w-wrap {
  --index-heading-size: 50vw;
  display: block;
  height: var(--index-heading-size);
  margin: 0;
  max-width: none;
  overflow: visible;
  flex-shrink: 0;
  pointer-events: none;
  position: absolute;
  right: -12vw;
  top: 495px;
  width: var(--index-heading-size);
  z-index: 80;
}

.hero-graphic {
  --index-heading-size: 57vw;
  right: -18vw;
  top: 23vh;
  z-index: 0;
}

.hero-graphic-image,
.heading-1-designups-builds-w {
  --heading-scroll-rotate: 0deg;
  display: block;
  height: 100%;
  margin: 0;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
  transform: rotate(var(--heading-scroll-rotate));
  transform-origin: center;
  transition: none;
  width: 100%;
  will-change: transform;
}

/* Morphing blob replacing the asterisk graphic */
.hero-graphic--blob .hero-graphic-image {
  /* display: none; */
}

.hero-graphic-blob {
  display: none;
  width: 100%;
  height: 100%;
  /* organic, asymmetric shape that morphs over time */
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  background:
    radial-gradient(
      circle at 28% 28%,
      rgba(255, 31, 54, 1),
      rgba(255, 31, 54, 0) 58%
    ),
    radial-gradient(
      circle at 74% 30%,
      rgba(255, 214, 0, 0.98),
      rgba(255, 214, 0, 0) 58%
    ),
    radial-gradient(
      circle at 30% 76%,
      rgba(34, 202, 255, 0.98),
      rgba(34, 202, 255, 0) 60%
    ),
    radial-gradient(
      circle at 74% 76%,
      rgba(0, 112, 255, 1),
      rgba(0, 112, 255, 0) 60%
    ),
    linear-gradient(135deg, #ff1f36, #0070ff);
  filter: blur(80px) saturate(1.35);
  pointer-events: none;
  will-change: border-radius, transform;
  animation:
    hero-graphic-morph 20s ease-in-out infinite,
    hero-graphic-spin 20s ease-in-out infinite;
}

@keyframes hero-graphic-morph {
  0%,
  100% {
    border-radius: 30% 70% 78% 22% / 28% 30% 70% 72%;
  }
  25% {
    border-radius: 78% 22% 26% 74% / 68% 78% 22% 32%;
  }
  50% {
    border-radius: 22% 78% 64% 36% / 76% 26% 74% 24%;
  }
  75% {
    border-radius: 62% 38% 22% 78% / 30% 72% 28% 70%;
  }
}

@keyframes hero-graphic-spin {
  0%,
  100% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-graphic-blob {
    animation: none;
  }
}

.selected-projects {
  --selected-projects-inline-offset: 80px;
  --selected-projects-outer-gap: max(0px, calc((100vw - var(--max-width)) / 2));
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 80px);
  overflow: hidden;
  padding: var(--section-space) var(--page-gutter);
  z-index: 1;
}

.selected-projects-copy {
  max-width: 1180px;
}

.selected-projects-copy h2 {
  max-width: 1169px;
}

.selected-projects-copy .lead {
  color: var(--text-secondary);
  max-width: 980px;
}

.selected-projects-strip,
.team-card-carousel {
  box-sizing: border-box;
  margin-left: calc(var(--page-gutter) * -1);
  margin-right: calc(var(--page-gutter) * -1);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
  scroll-behavior: smooth;
  scroll-padding-left: var(--page-gutter);
  scroll-padding-right: var(--page-gutter);
  scrollbar-width: none;
  width: calc(100% + (var(--page-gutter) * 2));
}

.selected-projects-strip {
  align-items: flex-start;
  display: flex;
  gap: clamp(18px, 2vw, 28px);
  scroll-snap-type: x proximity;
  touch-action: auto;
}

.selected-project-preview {
  display: flex;
  flex: 0 0 min(905px, calc((100% - 24px) / 2));
  flex-direction: column;
  gap: 20px;
  scroll-snap-align: start;
  width: min(905px, calc((100% - 24px) / 2));
}

.selected-project-preview-media {
  aspect-ratio: 905 / 600;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.selected-project-preview-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.selected-project-preview-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.selected-project-preview-copy h3 {
  --heading-letter-spacing: -0.03em;
  color: var(--text-primary);
  font-size: clamp(28px, 2.7vw, 40px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
}

.selected-project-preview-copy p {
  color: var(--text-muted);
  font-size: var(--body-md);
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin: 0;
  text-transform: uppercase;
}

.selected-projects-strip::-webkit-scrollbar,
.team-card-carousel::-webkit-scrollbar {
  display: none;
}

.selected-projects-strip.is-dragging {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.selected-projects-strip.is-settling {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.selected-projects-strip.is-wheel-scrolling {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.selected-projects-carousel {
  display: flex;
  flex-direction: column;
  gap: 64px;
  position: relative;
}

.project-card {
  align-items: center;
  background: var(--surface-light);
  display: flex;
  flex: 0 0 80%;
  height: 800px;
  overflow: hidden;
  justify-content: flex-start;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.selected-projects-strip > [data-carousel-slide]:last-child {
  scroll-snap-align: end;
}

.project-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.carousel-hover-indicator {
  align-items: center;
  -webkit-backdrop-filter: blur(14px) invert(1);
  backdrop-filter: blur(14px) invert(1);
  background: var(--surface-light-08);
  border-radius: 999px;
  display: none;
  height: 72px;
  justify-content: flex-start;
  left: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.88);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  width: 72px;
  z-index: 120;
}

.carousel-hover-indicator-icon {
  background: url("./assets/site/icon-arrow-down-white.svg") center / contain
    no-repeat;
  display: inline-flex;
  height: 26px;
  transform: rotate(-90deg);
  transition: transform 0.18s ease;
  width: 16px;
}

.selected-projects-carousel[data-cursor-direction="left"]
  .carousel-hover-indicator-icon {
  transform: rotate(90deg);
}

@media (hover: hover) and (pointer: fine) {
  .selected-projects-carousel.has-hover-cursor .selected-projects-strip {
    cursor: none;
  }

  .selected-projects-carousel.has-hover-cursor .carousel-hover-indicator {
    display: inline-flex;
  }

  .selected-projects-carousel.has-hover-cursor[data-cursor-visible="true"]
    .carousel-hover-indicator {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
}

.project-card-highlight::after {
  background: var(--overlay-accent-blue-soft);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.services-marquee {
  display: flex;
  flex-direction: column;
  gap: 0px;
  overflow: hidden;
  padding: 0 var(--page-gutter) var(--section-space);
}

.marquee-row {
  height: 175px;
  overflow-x: visible;
  overflow-y: clip;
  position: relative;
  white-space: nowrap;
  width: 1568px;
}

.marquee-track {
  animation: marquee-scroll 48s linear infinite;
  display: block;
  font-size: 160px;
  font-weight: 400;
  letter-spacing: -0.04em;
  left: 0;
  line-height: 0.72;
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}

.marquee-track-primary {
  animation-delay: 0s;
}

.marquee-track-secondary {
  animation-delay: -24s;
}

.marquee-segment {
  display: block;
  padding-right: 0.28em;
}

.marquee-row.reverse .marquee-track {
  animation-name: marquee-scroll-reverse;
}

@keyframes marquee-scroll {
  from {
    transform: translate3d(100%, -50%, 0);
  }
  to {
    transform: translate3d(-100%, -50%, 0);
  }
}

@keyframes marquee-scroll-reverse {
  from {
    transform: translate3d(-100%, -50%, 0);
  }
  to {
    transform: translate3d(100%, -50%, 0);
  }
}

.photo-break {
  height: var(--photo-break-height, 90vh);
}

.page-index .photo-break {
  background: var(--surface-light);
}

.page-agenzia .photo-break {
  background: var(--surface-dark);
}

.photo-break img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.home-approach {
  background: var(--surface-accent-blue);
  color: var(--surface-light);
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 80px);
  padding: var(--section-space) var(--page-gutter);
}

.home-approach-copy {
  max-width: 1180px;
}

.home-approach-copy h2 {
  max-width: 1170px;
}

.home-approach-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1170px;
}

.home-approach-text p {
  margin: 0;
}

.home-approach .approach-highlight {
  font-weight: 400;
  text-transform: uppercase;
}

.projects-hero,
.projects-filter-bar,
.projects-showcase {
  background: var(--surface-dark);
  color: var(--surface-light);
}

.projects-hero {
  padding: 193px var(--page-gutter) 0;
  overflow: visible;
  z-index: 100;
}

.projects-hero-copy {
  max-width: 1303px;
}

.projects-hero .lead {
  color: var(--text-inverse-muted);
  max-width: 980px;
}

.projects-filter-bar {
  padding: var(--section-space) var(--page-gutter) 80px;
}

.projects-filter-list {
  align-items: center;
  box-sizing: border-box;
  color: var(--text-inverse-muted);
  display: flex;
  flex-wrap: nowrap;
  font-size: var(--label-sm);
  font-weight: 300;
  gap: 0 16px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin: 0;
  margin-left: calc(var(--page-gutter) * -1);
  margin-right: calc(var(--page-gutter) * -1);
  text-transform: uppercase;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
  scroll-behavior: smooth;
  scroll-padding-left: var(--page-gutter);
  scroll-padding-right: var(--page-gutter);
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  touch-action: auto;
  width: calc(100% + (var(--page-gutter) * 2));
}

.projects-filter-item,
.projects-filter-separator {
  white-space: nowrap;
}

.projects-filter-item {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: inherit;
  padding: 0;
  text-transform: inherit;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.projects-filter-item:hover {
  color: var(--surface-light);
}

.projects-filter-item:focus-visible {
  border-radius: 2px;
  outline: 2px solid var(--border-light-focus);
  outline-offset: 6px;
}

.projects-filter-item.is-active {
  color: var(--surface-accent-red);
  font-weight: 500;
}

.projects-showcase {
  padding: 0 var(--page-gutter) var(--section-space);
}

.projects-showcase-grid {
  --projects-card-gap: 5vw;
  --projects-card-row-width: calc(
    min(100vw, var(--max-width)) - (var(--page-gutter) * 2)
  );
  --projects-card-pair-width: calc(
    var(--projects-card-row-width) - var(--projects-card-gap)
  );
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--projects-card-gap);
  justify-content: flex-start;
  row-gap: clamp(80px, 9vw, 160px);
}

.project-list-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 0.22s ease,
    transform 0.36s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform;
}

.js .project-list-card[data-reveal] {
  --reveal-duration: 420ms;
}

.project-list-card[hidden] {
  display: none !important;
}

.js .project-list-card.is-filter-exiting {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 22px, 0) scale(0.985);
}

.js .project-list-card.is-filter-entering {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.97);
}

.project-list-card-tall {
  width: 38%;
}

.project-list-card-wide {
  width: 54%;
}

.project-list-card-large {
  width: 70%;
}

.project-list-media {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.project-list-card-tall .project-list-media {
  aspect-ratio: 639 / 824;
}

.project-list-card-wide .project-list-media {
  aspect-ratio: 772 / 540;
}

.project-list-card-large .project-list-media {
  aspect-ratio: 1170 / 800;
}

.project-list-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.project-list-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-list-meta h2 {
  --heading-letter-spacing: -0.03em;
  color: var(--surface-light);
  font-size: clamp(28px, 2.7vw, 40px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
}

.project-list-tags {
  color: var(--text-inverse-muted);
}

.page-projects .site-footer-home {
  min-height: 833px;
}

.clients-section {
  align-items: start;
  background: var(--surface-accent-yellow);
  color: var(--surface-dark);
  display: flex;
  gap: clamp(40px, 4.6vw, 80px);
  grid-template-columns: minmax(280px, 0.9fr) minmax(
      0,
      clamp(640px, 52vw, 900px)
    );
  padding: 0 var(--page-gutter);
}

.clients-copy {
  padding: var(--section-space) 0;
  position: sticky;
  top: 0;
  width: 60vw;
}

.clients-copy h2 {
  margin: 0;
}

.clients-copy p {
  margin: 0;
  max-width: fit-content;
}

.clients-grid {
  align-items: start;
  display: grid;
  gap: clamp(16px, 1.4vw, 24px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: var(--section-space) 0;
  width: 100%;
}

.client-card {
  --client-logo-max-height: 120px;
  --client-logo-max-width: 220px;
  --reveal-duration: 460ms;
  aspect-ratio: 1;
  align-items: center;
  background: var(--surface-light-92);
  border: 1px solid var(--border-dark-soft);
  display: flex;
  justify-content: center;
  min-height: 0;
  padding: clamp(10px, 0.9vw, 16px);
  width: 100%;
}

.client-card img {
  height: auto;
  max-height: var(--client-logo-max-height);
  max-width: min(100%, var(--client-logo-max-width));
  object-fit: contain;
  width: auto;
}

.client-card-text {
  align-items: center;
  background: transparent;
  justify-content: center;
}

.client-card-text p {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.cta-section {
  background: var(--surface-accent-red);
  color: var(--surface-light);
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 80px);
  justify-content: center;
  padding: var(--section-space) var(--page-gutter);
}



.cta-section p {
  margin: 0;
}

.contact-hero {
  background: var(--surface-dark);
  padding: 193px var(--page-gutter) 0;
}

.contact-hero-inner {
  max-width: 905px;
}

.contact-hero h1 {
  max-width: 905px;
}

.contact-hero p:not(.eyebrow) {
  margin: 0;
  max-width: 905px;
}

.contact-direct-details {
  background: var(--surface-dark);
  padding: 80px var(--page-gutter) 0;
}

.contact-direct-details-inner {
  width: min(100%, 905px);
}

.contact-direct-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.contact-direct-item {
  display: grid;
  gap: 0;
}

.contact-direct-label,
.contact-direct-value {
  color: var(--surface-light);
  margin: 0;
}

.contact-direct-label {
  text-transform: uppercase;
}

.contact-direct-value {
  text-decoration: none;
  width: fit-content;
}

.contact-direct-value:hover {
  opacity: 0.82;
}

.contact-layout {
  background: var(--surface-dark);
  display: block;
  padding: var(--section-space) var(--page-gutter);
}

.contact-aside {
  background: var(--surface-dark);
  border-radius: 24px;
  color: var(--surface-light);
  padding: 40px;
  position: sticky;
  top: 140px;
}

.contact-aside h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.contact-aside p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  margin: 18px 0 0;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.contact-detail {
  border-bottom: 1px solid var(--border-inverse-soft);
  padding-bottom: 14px;
}

.contact-detail:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-detail-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.4px;
  line-height: 1;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.contact-detail-value {
  color: inherit;
  display: inline-block;
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

.contact-social {
  margin-top: 32px;
}

.contact-form-wrap {
  background: var(--surface-light);
  border: 1px solid var(--border-neutral);
  border-radius: 24px;
  color: var(--text-primary);
  padding: 40px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  appearance: none;
  background: var(--surface-light);
  border: 1px solid var(--border-neutral-soft);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 18px;
  line-height: 1.4;
  padding: 14px 16px;
  width: 100%;
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--surface-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10' fill='none'%3E%3Cpath d='M1 1L8 8L15 1' stroke='%231e1c1b' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px auto;
  padding-right: 44px;
}

.form-field select::-ms-expand {
  display: none;
}

.form-field select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--text-primary);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--surface-accent-red);
  box-shadow: var(--shadow-focus-accent);
  outline: none;
}

.full-width {
  grid-column: 1 / -1;
}

.checkbox-field {
  align-items: flex-start;
  display: flex;
  font-size: 15px;
  gap: 12px;
  line-height: 1.5;
  margin-top: 4px;
}

.checkbox-field input {
  accent-color: var(--surface-accent-red);
  flex: 0 0 auto;
  height: 18px;
  margin-top: 2px;
  width: 18px;
}

.contact-submit {
  background: var(--surface-accent-red);
  border: 0;
  border-radius: 999px;
  color: var(--surface-light);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.6px;
  line-height: 1;
  padding: 16px 26px;
  text-transform: uppercase;
  width: fit-content;
}

.contact-submit:hover {
  background: var(--surface-accent-red-pressed);
}

.form-note {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

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

.page-contact .contact-form-panel {
  width: 100%;
}

.page-contact .contact-section-title {
  color: var(--surface-light);
  margin: 0 0 clamp(40px, 5vw, 80px);
}

.page-contact .form-response {
  background: var(--surface-light-06);
  border: 1px solid var(--border-light-strong);
  border-radius: 12px;
  color: var(--surface-light);
  display: none;
  font-size: 16px;
  line-height: 1.5;
  margin: 32px 0 0;
  max-width: 680px;
  padding: 16px 18px;
}

.page-contact .form-response.is-visible {
  display: block;
}

.page-contact .form-response.is-success {
  background: var(--overlay-accent-light-blue-subtle);
  border-color: var(--overlay-accent-light-blue-border);
}

.page-contact .form-response.is-error {
  background: var(--overlay-accent-red-subtle);
  border-color: var(--overlay-accent-red-border);
}

.page-contact .contact-form-minimal {
  gap: clamp(40px, 5vw, 80px);
  max-width: 1320px;
}

.page-contact .contact-form-minimal .contact-grid {
  column-gap: 32px;
  row-gap: 40px;
}

.page-contact .contact-form-minimal .form-field {
  border-bottom: 1px solid var(--border-light-stronger);
  gap: 0;
  min-height: 60px;
  justify-content: flex-end;
}

.page-contact .contact-form-minimal .form-field label {
  position: absolute;
}

.page-contact .contact-form-minimal .form-field input,
.page-contact .contact-form-minimal .form-field select,
.page-contact .contact-form-minimal .form-field textarea {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--surface-light);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.5;
  padding: 0 0 13px;
}

.page-contact .contact-form-minimal .form-field textarea {
  min-height: 112px;
  resize: none;
}

.page-contact .contact-form-minimal .form-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10' fill='none'%3E%3Cpath d='M1 1L8 8L15 1' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px bottom 20px;
  background-size: 12px auto;
  padding-right: 28px;
}

.page-contact .contact-form-minimal .form-field select option {
  color: var(--text-primary);
}

.page-contact .contact-form-minimal .form-field input::placeholder,
.page-contact .contact-form-minimal .form-field textarea::placeholder {
  color: var(--text-inverse-muted);
}

.page-contact .contact-form-minimal .form-field input:focus,
.page-contact .contact-form-minimal .form-field select:focus,
.page-contact .contact-form-minimal .form-field textarea:focus {
  border-color: transparent;
  box-shadow: none;
  outline: none;
}

.page-contact .contact-form-minimal .form-field:focus-within {
  border-bottom-color: var(--surface-accent-red);
}

.page-contact .contact-form-minimal .full-width {
  margin-top: 0;
  min-height: 0;
}

.page-contact .contact-privacy-consent {
  align-items: flex-start;
  color: var(--text-inverse-muted);
  display: flex;
}

.page-contact .contact-privacy-note {
  color: inherit;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  max-width: 100%;
}

.page-contact .contact-privacy-consent:hover {
  color: var(--surface-light);
}

.page-contact .contact-privacy-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-contact .contact-submit-inline {
  background: transparent;
  border: 0;
  color: var(--surface-light);
  cursor: pointer;
  padding: 0;
  width: fit-content;
}

.page-contact .contact-submit-inline:hover {
  opacity: 0.82;
}

.page-contact .contact-submit-inline:disabled {
  cursor: default;
  opacity: 0.48;
  pointer-events: none;
}

.page-contact .thanks-actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-contact .site-footer-home {
  min-height: 833px;
}

.page-contact .footer-nav-home {
  width: auto;
}

.page-cookies .site-footer-home,
.page-privacy .site-footer-home {
  min-height: 798px;
}

.cookie-policy {
  background: var(--surface-dark);
  color: var(--surface-light);
  padding: 80px var(--page-gutter) var(--section-space);
}

.cookie-policy-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1120px;
}

.cookie-policy h2 {
  --heading-letter-spacing: 0em;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 48px 0 0;
}

.cookie-policy h2:first-of-type {
  margin-top: 0;
}

.cookie-policy p {
  color: var(--surface-light);
  font-size: var(--body-lg);
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  max-width: 905px;
}

.cookie-policy .eyebrow {
  font-size: var(--label-sm);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  max-width: none;
}

.cookie-policy-list {
  color: var(--surface-light);
  display: grid;
  font-size: var(--body-lg);
  font-weight: 300;
  gap: 12px;
  line-height: 1.5;
  list-style: disc;
  margin: 0;
  max-width: 905px;
  padding-left: 1.1em;
}

.cookie-policy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-policy a:hover {
  opacity: 0.82;
}

.cookie-table-wrap {
  overflow-x: auto;
  width: 100%;
}

.cookie-table {
  border-collapse: collapse;
  color: var(--surface-light);
  min-width: 760px;
  width: 100%;
}

.cookie-table th,
.cookie-table td {
  border-bottom: 1px solid var(--border-light-stronger);
  font-size: 16px;
  line-height: 1.5;
  padding: 18px 24px 18px 0;
  text-align: left;
  vertical-align: top;
}

.cookie-table th {
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.cookie-table td {
  color: var(--text-inverse-muted);
  font-weight: 300;
}

.site-footer {
  color: var(--text-primary);
  padding-top: var(--section-space);
}

.footer-main {
  display: flex;
  gap: clamp(40px, 6vw, 80px);
  justify-content: space-between;
  padding: 0 var(--page-gutter);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 79px;
  max-width: 527px;
}

.footer-lead {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
}

.social-links {
  --social-icon-size: 40px;
  align-items: center;
  display: flex;
  gap: 16px;
}

.social-links a {
  align-items: center;
  display: inline-flex;
  flex: 0 0 var(--social-icon-size);
  height: var(--social-icon-size);
  justify-content: center;
  opacity: 1;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  width: var(--social-icon-size);
}

.social-links a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.social-links img {
  display: block;
  flex-shrink: 0;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.social-links a[aria-label="Spotify"] {
  display: none;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  gap: 2px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.footer-wordmark {
  padding: 106px var(--page-gutter) 0;
}

.footer-wordmark img {
  height: auto;
  max-width: 1568px;
  width: 100%;
}

.footer-legal {
  border-top: 1px solid var(--surface-dark);
  margin-top: 40px;
  padding: 16px var(--page-gutter);
}

.footer-legal p {
  font-size: 16px;
  font-weight: 300;
  line-height: 18px;
  margin: 0;
}

.site-footer-home {
  display: flex;
  flex-direction: column;
  min-height: 798px;
  padding: var(--section-space) var(--page-gutter) 0;
}

.footer-home-inner {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 106px;
  min-height: 0;
}

.site-footer-home .footer-main {
  align-items: flex-start;
  gap: 0;
  padding: 0;
}

.site-footer-home .footer-left {
  flex: 0 0 527px;
  gap: 0;
  justify-content: flex-end;
  max-width: 527px;
}

.footer-nav-home {
  width: 241px;
}

.footer-nav-home a,
.footer-nav-home span {
  display: block;
}

.footer-nav-spacer {
  height: 24px;
}

.site-footer-home .footer-legal {
  border-top: 0;
  margin-top: 0;
  padding: 16px 0 0;
}

.site-footer-home .footer-wordmark {
  align-self: stretch;
  margin-top: auto;
  padding: 0 0 clamp(16px, 1.6vw, 28px);
  width: 100%;
}

.js .site-footer-home .footer-wordmark[data-reveal] {
  opacity: 1;
  transform: none;
}

.site-footer-home .footer-wordmark img {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

.studio-hero {
  background: var(--surface-dark);
  height: 884px;
  overflow: visible;
  padding: 113px var(--page-gutter) 0;
  position: relative;
  z-index: 100;
}

.studio-hero-grid {
  height: 100%;
  position: relative;
  width: 100%;
}

.studio-hero-star {
  --studio-star-size: 40vw;
  height: var(--studio-star-size);
  left: auto;
  margin-left: 0;
  object-fit: contain;
  position: absolute;
  right: 20px;
  top: 184px;
  width: var(--studio-star-size);
}

/* Morphing blob replacing the star graphic (same look as .hero-graphic-blob) */
.studio-hero-blob {
  display: none;
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  background:
    radial-gradient(
      circle at 28% 28%,
      rgba(230, 52, 63, 0.95),
      rgba(230, 52, 63, 0) 60%
    ),
    radial-gradient(
      circle at 72% 72%,
      rgba(224, 184, 0, 0.9),
      rgba(224, 184, 0, 0) 62%
    ),
    linear-gradient(135deg, #e6343f, #e0b800);
  filter: blur(80px);
  pointer-events: none;
  will-change: border-radius, transform;
  animation:
    hero-graphic-morph 30s ease-in-out infinite,
    hero-graphic-spin 20s ease-in-out infinite;
}

/* Same blob, blue + light-blue palette (projects hero) */
.projects-hero-blob {
  background:
    radial-gradient(
      circle at 28% 28%,
      rgba(0, 122, 178, 0.95),
      rgba(0, 122, 178, 0) 60%
    ),
    radial-gradient(
      circle at 72% 72%,
      rgba(157, 217, 241, 0.9),
      rgba(157, 217, 241, 0) 62%
    ),
    linear-gradient(135deg, #007ab2, #9dd9f1);
  right: 130px;
  top: 94px;
}

@media (max-width: 900px) {
  .projects-hero-blob {
    top: 6vh;
  }
}

.studio-hero-copy {
  left: 0;
  position: absolute;
  top: 80px;
  width: min(100%, 62vw, 1120px);
}

.studio-hero-copy .lead {
  width: 100%;
}

.studio-intro {
  background: var(--surface-light-soft);
  color: var(--text-primary);
  padding: var(--section-space) var(--page-gutter) 0;
}

.home-intro {
  display: flex;
    flex-direction: column;
    gap: var(--stack-gap);
  background: var(--surface-light-soft);
  padding: var(--section-space) var(--page-gutter);
}

.studio-intro h2{
  margin: 0 0 40px;
  max-width: 1170px;
}

.studio-intro p,
.home-intro p:not(.eyebrow) {
  margin: 0;
  max-width: 1170px;
}

.ai-summary {
  background: var(--surface-light);
  color: var(--text-primary);
  padding: var(--section-space) var(--page-gutter);
}

.ai-summary-dark {
  background: var(--surface-dark);
  color: var(--surface-light);
}

.ai-summary-inner {
  display: flex;
  flex-direction: column;
  gap: var(--stack-gap);
  max-width: 1303px;
}

.ai-summary h2 {
  --heading-letter-spacing: -0.03em;
  font-size: var(--display-md);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
  max-width: 1170px;
}

.ai-summary-grid {
  display: grid;
  gap: clamp(24px, 4vw, 64px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(24px, 3vw, 48px);
}

.ai-summary-item {
  border-top: 1px solid var(--border-dark-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
}

.ai-summary-dark .ai-summary-item {
  border-color: var(--surface-light-08);
}

.ai-summary-item h3 {
  --heading-letter-spacing: 0em;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
}

.ai-summary-item p {
  color: var(--text-secondary);
  font-size: var(--body-md);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

.ai-summary-dark .ai-summary-item p {
  color: var(--text-inverse-muted);
}

.services-stack {
  background: var(--surface-light-soft);
}

.service-panel {
  align-items: flex-start;
  background: var(--surface-light-soft);
  border-top: 1px solid var(--border-dark-soft);
  color: var(--text-primary);
  display: flex;
  gap: clamp(64px, 8vw, 160px);
  height: 960px;
  min-height: 960px;
  padding: var(--section-space) var(--page-gutter);
  position: sticky;
  top: 0;
}

.service-panel:first-child {
  border-top: 0;
}

.service-panel.reverse {
  flex-direction: row-reverse;
}

.service-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: var(--stack-gap);
}

.service-content h3 {
  --heading-letter-spacing: -0.03em;
  font-size: var(--display-md);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
}

.service-lists {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-lists ul {
  color: var(--text-secondary);
  font-size: var(--body-md);
  font-weight: 400;
  line-height: 1.9;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-media {
  align-items: center;
  display: flex;
  flex: 0 0 500px;
  justify-content: center;
  min-height: 500px;
  overflow: visible;
  position: relative;
  width: 500px;
}

.service-media img {
  display: block;
  height: auto;
  max-height: 400px;
  max-width: 100%;
  width: auto;
}

.approach-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 160px 80px;
}

.approach-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1125px;
  width: 100%;
}

.approach-content h2 {
  font-size: 72px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 16px;
}

.approach-content p {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
}

.approach-highlight {
  font-weight: 400;
  line-height: 25.2px;
}

.approach-content .inline-cta {
  margin-top: 16px;
}

.team-section {
  background: var(--surface-accent-blue);
  color: var(--surface-accent-light-blue);
  padding: var(--section-space) var(--page-gutter);
}

.team-layout {
  height: 1240px;
  position: relative;
  width: 100%;
}

.team-intro {
  left: 0;
  position: absolute;
  top: 0;
  width: 705px;
}

.team-intro p {
  margin: 0;
}

.team-card-carousel {
  display: contents;
}

.team-card {
  color: var(--surface-light);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  width: 450px;
}

.team-card-arianna {
  left: 1118px;
  top: 49.34px;
}

.team-card-nicolas {
  left: 334px;
  top: 479.34px;
}

.team-card h3 {
  --heading-letter-spacing: -0.03em;
  font-size: clamp(28px, 2.7vw, 40px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
}

.team-photo {
  height: 665.63px;
  overflow: hidden;
  position: relative;
  width: 450px;
}

.team-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.team-card p {
  color: var(--surface-accent-light-blue);
  font-size: var(--body-md);
  line-height: 1.5;
  margin: 0;
}

.page-project {
  background: var(--surface-dark);
  --header-gutter: clamp(24px, 4vw, 80px);
  --page-gutter: 10vw;
}

.project-case-hero,
.project-case-overview {
  background: var(--surface-dark);
  color: var(--surface-light);
}

.project-case-hero {
  padding: 193px var(--page-gutter) 0;
}

.project-case-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.project-case-tags {
  align-items: center;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  gap: 0.55em;
  letter-spacing: 2px;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.project-case-tags a:hover {
  opacity: 0.84;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.project-case-hero-media {
  aspect-ratio: 1568 / 882;
  border-radius: var(--radius-lg);
  margin-inline: calc(50% - 50vw);
  max-width: 100vw;
  overflow: hidden;
  width: 100vw;
}

.project-case-hero-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.project-case-overview {
  padding: var(--section-space) var(--page-gutter);
}

.project-case-overview-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1166px) minmax(280px, 362px);
  justify-content: space-between;
}

.project-case-overview-main {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.project-case-overview-intro {
  max-width: 1032px;
}

.project-case-overview-objective {
  max-width: 1037px;
}

.project-case-overview-side {
  display: flex;
  flex-direction: column;
  gap: 48px;
  justify-self: end;
  width: 100%;
}

.project-case-meta-block {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.project-case-meta-label {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.project-case-meta-value p {
  margin: 0;
}

.project-case-showcase {
  background: var(--surface-accent-blue);
  color: var(--surface-light);
  padding: var(--section-space) 0 80px;
}

.project-divider {
  height: var(--section-space);
}

.project-case-video,
.project-case-composition,
.project-case-phones {
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
}

.project-case-video {
  aspect-ratio: 1728 / 1060;
}

.project-case-video video,
.project-case-composition img,
.project-case-phones img {
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.project-case-columns {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: var(--section-space) var(--page-gutter);
}

.project-case-column {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.project-case-column-offset {
  padding-top: 160px;
}

.project-case-composition {
  aspect-ratio: 1728 / 1964;
}

.project-case-cards {
  background: var(--surface-light);
  border-radius: var(--radius-lg);
  padding: var(--section-space) clamp(24px, 4vw, 64px);
}

.project-case-cards img {
  display: block;
  margin: 0 auto;
  max-width: 1600px;
  width: 100%;
}

.project-case-result {
  padding: var(--section-space) var(--page-gutter);
}

.project-case-result-inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin: 0;
  max-width: 1303px;
}

.project-case-phones {
  aspect-ratio: 1728 / 823;
}

.page-project .site-header {
  backdrop-filter: none;
  background: var(--surface-dark);
}

.page-project .site-footer-home {
  height: auto;
  min-height: 798px;
  overflow: visible;
}

.page-project {
  --project-showcase-background: var(--surface-light);
  --project-showcase-color: var(--text-primary);
}

.page-project .project-case-showcase {
  background: var(--project-showcase-background);
  color: var(--project-showcase-color);
}

.page-project-alpi {
  --project-showcase-background: #ECE9E4;
}

.page-project-cereria-bianchi {
  --project-showcase-background: #C0AFA8;
  --project-showcase-color: var(--surface-light);
}

.page-project-cisalfa {
  --project-showcase-background: #ffffff;
  --project-showcase-color: var(--surface-dark);
}

.page-project-cristina-pivato {
  --project-showcase-background: #C4D9D9;
}

.page-project-emmebi {
  --project-showcase-background: #DDDFDB;
}

.page-project-erreconzero {
  --project-showcase-background: #485565;
  --project-showcase-color: var(--surface-light);
}

.page-project-erreconzero .project-case-hero-media {
  aspect-ratio: 4 / 3;
}

.page-project-homeitaly,
.page-project-villatravellers {
  --project-showcase-background: #F7F7F7;
}

.page-project-homeitaly .project-case-showcase {
  padding-top: 0;
}

.page-project-ast .project-case-showcase {
  padding-top: 2%;
}

.page-project-new01bike .project-case-showcase {
  background: #000000;
  color: var(--project-showcase-color);
  padding-top: 0;
}

.page-project-i-due-filari .project-case-showcase {
  padding-top: 0;
}

.page-project-veraleme .project-case-showcase {
  padding-top: 0;
}

.page-project-sj .project-case-showcase,
.page-project-emmebi .project-case-showcase,
.page-project-erreconzero .project-case-showcase,
.page-project-immagine-quattro .project-case-showcase {
  padding-top: 0;
}

.page-project-lucapedroni {
  --project-showcase-background: #0F0F0F;
  --project-showcase-color: var(--surface-light);
}

.page-project-lumia {
  --project-showcase-background: #ffffff;
}

.page-project-narobaby {
  --project-showcase-background: #ffffff;
}

.page-project-slick {
  --project-showcase-background: #ffffff;
}

.page-project-new01bike {
  --project-showcase-background: #1D1D1D;
  --project-showcase-color: var(--surface-light);
}

.page-project-rossignol {
  --project-showcase-background: #ffffff;
}

.page-project-sct {
  --project-showcase-background: #b9cf3c;
}

.page-project-seap {
  --project-showcase-background: #0057A7;
  --project-showcase-color: var(--surface-light);
}

.page-project-sj {
  --project-showcase-background: #866CFF;
  --project-showcase-color: var(--surface-light);
}

.page-project-veraleme {
  --project-showcase-background: #D0CCC1;
}

.page-project-zoe {
  --project-showcase-background: #C5287F;
  --project-showcase-color: var(--surface-light);
}

.page-project .project-case-heading h1 {
  --heading-letter-spacing: 0em;
  color: #f6f3f0;
  font-size: var(--display-xl);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
}

.page-project .project-case-tags,
.page-project .project-case-meta-label {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1;
}

.page-project .project-case-overview-objective h2,
.page-project .project-case-result-inner h2 {
  --heading-letter-spacing: 0em;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.page-project .project-case-overview-intro,
.page-project .project-case-overview-objective p,
.page-project .project-case-objective-list,
.page-project .project-case-meta-value,
.page-project .project-case-showcase-copy,
.page-project .project-case-result-inner p {
  font-size: var(--body-lg);
  font-weight: 300;
  line-height: 1.4;
}

.page-project-emmebi .project-case-objective-list {
  margin: 0;
  max-width: 1037px;
  padding-left: 36px;
}

.page-project .project-case-hero-media,
.page-project .project-case-video,
.page-project .project-case-composition,
.page-project .project-case-phones,
.page-project .project-case-media-block {
  border-radius: 0;
}

.page-project-sj .project-case-video {
  aspect-ratio: 1728 / 1060;
  margin: 0;
  width: 100%;
}

.page-project-emmebi .project-case-video {
  aspect-ratio: 1728 / 1150;
}

.page-project .project-case-showcase-copy {
  display: flex;
  flex-direction: column;
  gap: 1.4em;
  padding: var(--section-space) var(--page-gutter);
  width: 100%;
}

.page-project .project-case-showcase-copy p {
  margin: 0 auto;
  width: min(100%, 1303px);
}

.page-project .project-case-media-block {
  border-radius: 0;
  overflow: hidden;
  width: 100%;
}

.page-project .project-case-media-block img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.project-case-media-pair {
  align-items: start;
  display: grid;
  grid-template-columns: var(
    --project-case-media-pair-columns,
    repeat(2, minmax(0, 1fr))
  );
  width: 100%;
}

.page-project-rossignol .project-case-media-pair-ski {
  grid-template-columns: 738fr 990fr;
}

.page-project-rossignol .project-case-media-pair-sunset {
  grid-template-columns: 778fr 950fr;
}

.project-case-media-pair .project-case-media-block img {
  height: auto;
  object-fit: contain;
}

.page-project-emmebi .project-case-media-phones {
  aspect-ratio: 1728 / 1139;
}

.page-project-emmebi .project-case-media-tablet {
  aspect-ratio: 1728 / 909;
}

.page-project-emmebi .project-case-media-grid {
  aspect-ratio: 1728 / 961;
}

.page-project-emmebi .project-case-media-grid img {
  object-position: top center;
}

.page-project-emmebi .project-case-media-laptop {
  aspect-ratio: 1038 / 817;
  margin: 0 auto;
  width: min(1038px, calc(100% - (var(--page-gutter) * 2)));
}

.page-project-sj .project-case-phones {
  aspect-ratio: 1304 / 823;
  margin: 0 auto;
  width: min(1304px, calc(100% - (var(--page-gutter) * 2)));
}

.page-project-emmebi .project-case-result-inner {
  gap: 40px;
}

.project-case-result-stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-case-result-stat {
  align-items: flex-start;
  background: transparent;
  border: 1px solid var(--text-primary);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
  padding: clamp(24px, 3vw, 40px);
  text-align: left;
}

.project-case-result-stat strong {
  color: var(--text-primary);
  display: block;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.page-project .project-case-result-stat p {
  color: var(--text-secondary);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 300;
  line-height: 1.25;
  margin: 0;
}

.page-project .project-case-result-stat p::first-letter {
  text-transform: uppercase;
}

.page-project-sj .project-case-result-stat {
  border-color: var(--surface-light);
}

.page-project-sj .project-case-result-stat strong,
.page-project-sj .project-case-result-stat p {
  color: var(--surface-light);
}

.page-project-erreconzero .project-case-result-stat {
  border-color: var(--surface-light);
}

.page-project-erreconzero .project-case-result-stat strong,
.page-project-erreconzero .project-case-result-stat p {
  color: var(--surface-light);
}

.cta-section h2 {
  --heading-letter-spacing: 0em;
  letter-spacing: 0;
  line-height: 1.1;
}

.cta-section p {
  line-height: 1.4;
  max-width: 80%;
}

.cta-section .inline-cta {
  gap: 24px;
  letter-spacing: 2px;
}

@media (max-width: 1728px) {
  .team-layout {
    height: clamp(960px, 72vw, 1240px);
  }

  .team-intro {
    width: min(45vw, 705px);
  }

  .team-card {
    width: min(29vw, 450px);
  }

  .team-card-arianna {
    left: auto;
    right: 0;
    top: clamp(24px, 2.9vw, 49.34px);
  }

  .team-card-nicolas {
    left: clamp(160px, 21.3vw, 334px);
    top: clamp(320px, 31vw, 57vh);
  }

  .team-photo {
    aspect-ratio: 450 / 665.63;
    height: auto;
    width: 100%;
  }
}

@media (max-width: 1400px) {
  .page-project {
    --page-gutter: 48px;
  }

  .selected-projects {
    --selected-projects-inline-offset: 48px;
  }

  .header-inner,
  .index-hero,
  .selected-projects,
  .services-marquee,
  .home-approach,
  .clients-section,
  .contact-hero,
  .contact-direct-details,
  .contact-layout,
  .cta-section,
  .site-footer-home,
  .projects-hero,
  .projects-filter-bar,
  .projects-showcase,
  .footer-main,
  .footer-wordmark,
  .footer-legal,
  .studio-hero,
  .studio-intro,
  .home-intro,
  .ai-summary,
  .service-panel,
  .approach-section,
  .team-section,
  .project-case-hero,
  .project-case-overview {
    padding-left: 48px;
    padding-right: 48px;
  }

  .service-panel {
    gap: 80px;
  }

  .studio-hero {
    height: auto;
    padding-bottom: 120px;
    padding-top: 160px;
  }

  .studio-hero-grid {
    display: block;
    gap: 48px;
    grid-template-columns: 1fr;
    height: auto;
    position: static;
    width: 100%;
  }

  .studio-hero-star {
    --studio-star-size: 560px;
    left: 50vw;
    order: 2;
    position: absolute;
    top: -9vh;
  }

  .studio-hero-copy {
    left: auto;
    order: 1;
    position: static;
    top: auto;
    width: 100%;
  }

  .studio-hero-copy .lead {
    width: 100%;
  }

  .selected-projects-copy h2,
  .home-approach-copy h2 {
    max-width: none;
  }

  .clients-section {
    gap: 48px;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  }

  .clients-copy,
  .clients-grid {
    padding-bottom: 120px;
    padding-top: 120px;
  }

  .project-case-columns,
  .project-case-result {
    padding-left: 48px;
    padding-right: 48px;
  }

  .project-case-cards {
    padding-left: 48px;
    padding-right: 48px;
  }

  .project-case-overview-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  }

  .team-layout {
    align-items: start;
    display: grid;
    gap: 56px 40px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
  }

  .team-intro,
  .team-card {
    position: static;
  }

  .team-intro {
    grid-column: 1 / -1;
    max-width: 705px;
    width: 100%;
  }

  .team-card {
    max-width: 450px;
    width: 100%;
  }

  .team-card-arianna {
    grid-column: 2;
    justify-self: end;
  }

  .team-card-nicolas {
    grid-column: 1;
    justify-self: start;
    margin-top: 96px;
  }

  .team-photo {
    aspect-ratio: 450 / 665.63;
    height: auto;
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .ai-summary-grid {
    grid-template-columns: 1fr;
  }

  .team-layout {
    gap: 32px 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .team-card,
  .team-card-arianna,
  .team-card-nicolas {
    grid-column: auto;
    justify-self: stretch;
    margin-top: 0;
    max-width: none;
    width: 100%;
  }

  .team-card {
    gap: 20px;
  }
}

@media (max-width: 1180px) {
  .selected-projects,
  .home-approach,
  .clients-section,
  .projects-showcase,
  .contact-layout,
  .page-contact .contact-layout,
  .cta-section,
  .studio-intro,
  .home-intro,
  .service-panel,
  .approach-section,
  .team-section,
  .project-case-overview {
    padding-bottom: 120px;
    padding-top: 120px;
  }

  .hero-title,
  .ai-design-e-neuromarketing-pe,
  .studio-hero-copy h1,
  .projects-hero h1,
  .project-case-heading h1 {
    font-size: clamp(56px, 7vw, 68px);
  }

  .selected-projects-copy h2,
  .home-approach-copy h2,
  .clients-copy h2,
  .cta-section h2,
  .home-intro h2,
  .ai-summary h2,
  .studio-intro h2,
  .approach-content h2,
  .team-intro h2,
  .project-case-overview-objective h2,
  .project-case-column h2,
  .project-case-result-inner h2 {
    font-size: clamp(52px, 5.6vw, 60px);
  }

  .service-content h3 {
    font-size: clamp(40px, 4.2vw, 44px);
  }

  .projects-filter-bar {
    padding-bottom: 64px;
    padding-top: 120px;
  }

  .projects-showcase {
    padding-top: 0;
  }

  .projects-showcase-grid {
    align-items: center;
    row-gap: 120px;
  }

  .project-list-meta h2,
  .selected-project-preview-copy h3 {
    font-size: 34px;
  }

  .selected-project-preview-copy p {
    font-size: 16px;
  }

  .lead,
  .hero-description,
  .home-approach-text p,
  .clients-copy p,
  .studio-intro p,
  .home-intro p:not(.eyebrow),
  .ai-summary-item p,
  .service-description,
  .approach-content p,
  .team-intro p,
  .cta-section p,
  .contact-hero p:not(.eyebrow),
  .contact-direct-label,
  .contact-direct-value,
  .project-case-overview-intro,
  .project-case-overview-objective p,
  .project-case-column p,
  .project-case-meta-value,
  .project-case-result-inner p {
    font-size: 20px;
  }

  .cta-section p {
    max-width: none;
  }

  .project-case-hero {
    padding: 160px 48px 120px;
  }

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

  .project-case-overview-grid {
    gap: 64px;
  }

  .project-case-overview-main,
  .project-case-column,
  .project-case-result-inner {
    gap: 64px;
  }

  .project-case-overview-side {
    gap: 40px;
    justify-self: start;
    max-width: 420px;
  }

  .project-case-column-offset {
    padding-top: 40px;
  }

  .project-case-columns,
  .project-case-result {
    padding: 80px 48px;
  }

  .project-case-cards {
    padding: 80px 48px;
  }

  .project-case-overview {
    padding-bottom: 80px;
    padding-top: 0;
  }

  .project-case-showcase {
    background: var(--surface-accent-violet);
    color: var(--surface-light);
    padding: 80px 0 80px;
  }

  .contact-hero h1 {
    font-size: clamp(60px, 6.6vw, 72px);
  }

  .page-contact .contact-section-title {
    font-size: 42px;
  }

  .page-contact .contact-form-minimal .form-field input,
  .page-contact .contact-form-minimal .form-field select,
  .page-contact .contact-form-minimal .form-field textarea {
    font-size: 20px;
  }

  .marquee-track {
    font-size: clamp(72px, 8vw, 88px);
  }

  .marquee-row {
    height: 120px;
    width: 100%;
  }

  .contact-layout {
    gap: 40px;
    grid-template-columns: 1fr;
    padding-bottom: 120px;
  }

  .contact-direct-grid {
    gap: 32px;
  }

  .page-contact .contact-layout {
    padding-top: 120px;
  }

  .page-contact .contact-form-minimal .contact-grid {
    column-gap: 32px;
    row-gap: 36px;
  }

  .contact-aside {
    position: static;
  }

  .clients-section {
    gap: 40px;
    grid-template-columns: 1fr;
    padding-bottom: 120px;
  }

  .clients-copy {
    max-width: 720px;
    padding: 0 0 40px;
    position: static;
  }

  .clients-grid {
    gap: 20px;
    padding: 0;
  }

  .photo-break {
    height: auto;
  }

  .photo-break img {
    height: auto;
  }

  .studio-hero-grid {
    grid-template-columns: 1fr;
  }

  .selected-projects-carousel {
    gap: 40px;
  }

  .project-card {
    flex-basis: 80%;
    height: 440px;
  }

  .studio-hero-star {
    --studio-star-size: min(90vw, 500px);
  }

  .service-panel,
  .service-panel.reverse {
    flex-direction: column;
    height: auto;
    min-height: 0;
    position: static;
  }

  .service-media {
    align-items: center;
    flex: 0 0 auto;
    justify-content: center;
    min-height: 280px;
    width: 100%;
  }

  .service-media img {
    max-height: 240px;
  }

  .services-marquee .marquee-row {
    width: 100%;
  }

  .approach-section {
    gap: 56px;
  }

  .home-approach,
  .site-footer-home {
    padding-top: 120px;
  }

  .team-layout {
    gap: 32px 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .team-card,
  .team-card-arianna,
  .team-card-nicolas {
    grid-column: auto;
    justify-self: stretch;
    margin-top: 0;
    max-width: none;
    width: 100%;
  }

  .team-card {
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .main {
    padding-top: 0;
    overflow-x: clip;
  }

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

  .selected-projects,
  .home-approach,
  .clients-section,
  .contact-layout,
  .page-contact .contact-layout,
  .cta-section,
  .site-footer-home,
  .projects-filter-bar,
  .projects-showcase,
  .studio-intro,
  .home-intro,
  .service-panel,
  .approach-section,
  .team-section {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .selected-projects {
    gap: 40px;
  }

  .selected-projects-strip {
    --selected-project-peek: 128px;
    touch-action: auto;
  }

  .home-approach,
  .cta-section {
    gap: 40px;
  }

  .clients-section {
    gap: 32px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .clients-copy {
    width: 100%;
  }

  .clients-grid {
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-card {
    --client-logo-max-height: 88px;
    --client-logo-max-width: 180px;
    min-height: 0;
    padding: 20px 12px;
  }

  .client-card-text p {
    font-size: 24px;
  }

  .studio-intro {
    padding-bottom: 0;
    padding-top: 80px;
  }
  .home-intro {
    padding-bottom: 0;
    padding-top: 80px;
  }

  .index-hero {
    min-height: 90vh;
    padding: 96px 48px 80px;
  }

  .projects-hero {
    padding: 128px 48px 0;
  }

  .studio-hero-copy {
    order: 1;
  }

  .studio-hero-star {
    display: block;
  }

  .studio-hero-blob {
    display: none;
  }

  .team-layout {
    gap: 32px 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .team-card,
  .team-card-arianna,
  .team-card-nicolas {
    grid-column: auto;
    justify-self: stretch;
    margin-top: 0;
    max-width: none;
    width: 100%;
  }

  .team-card {
    gap: 20px;
  }

  .team-card-carousel {
    --team-card-peek: 88px;
    display: flex;
    gap: 16px;
    grid-column: 1 / -1;
    scroll-snap-type: x proximity;
    touch-action: auto;
  }

  .team-card,
  .team-card-arianna,
  .team-card-nicolas {
    flex: 0 0 calc(100% - var(--team-card-peek));
    margin-top: 0;
    max-width: none;
    scroll-snap-align: start;
    width: calc(100% - var(--team-card-peek));
  }

  .team-card-carousel > .team-card:last-child {
    scroll-snap-align: end;
  }

  .header-inner {
    position: relative;
    padding-bottom: 20px;
    padding-top: 20px;
    z-index: 2;
  }

  .site-nav {
    font-size: 14px;
    gap: 20px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.menu-ready .logo,
  .site-header.menu-ready .menu-toggle {
    position: relative;
    z-index: 3;
  }

  .site-header.menu-ready .site-nav {
    align-items: center;
    background: var(--surface-dark);
    border: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    inset: 0;
    justify-content: flex-start;
    min-height: 100dvh;
    opacity: 0;
    padding: 128px 24px 24px;
    pointer-events: none;
    position: fixed;
    transform: translateY(-12px);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease;
    z-index: 1;
  }

  .site-header.menu-ready.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.menu-ready .site-nav a {
    font-family: inherit;
    font-size: clamp(48px, 10vw, 92px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.94;
    text-decoration: none;
    text-transform: uppercase;
  }

  .site-header.menu-ready .site-nav a[aria-current="page"] {
    opacity: 0.68;
    text-decoration: none;
  }

  .studio-hero,
  .project-case-hero {
    padding-bottom: 80px;
    padding-top: 128px;
  }

  .studio-hero-copy h1,
  .projects-hero h1,
  .project-case-heading h1 {
    font-size: clamp(36px, 11vw, 62px);
  }

  .projects-filter-bar {
    padding-bottom: 56px;
    padding-top: 80px;
  }

  .projects-showcase {
    padding-top: 0;
    padding-bottom: 80px;
  }

  .projects-showcase-grid {
    row-gap: 80px;
  }

  .project-list-card-tall,
  .project-list-card-wide,
  .project-list-card-large {
    width: 100%;
  }

  .project-list-meta h2 {
    font-size: 34px;
  }

  .lead,
  .index-hero p,
  .home-approach-text p,
  .studio-intro p,
  .home-intro p:not(.eyebrow),
  .service-description,
  .approach-content p,
  .team-intro p,
  .clients-copy p,
  .cta-section p,
  .project-case-overview-intro,
  .project-case-overview-objective p,
  .project-case-column p,
  .project-case-meta-value,
  .project-case-result-inner p {
    font-size: 18px;
  }

  .project-case-heading {
    gap: 32px;
  }

  .project-case-columns,
  .project-case-result,
  .project-case-cards {
    padding: 96px 48px;
  }

  .project-case-result {
    padding: 80px 24px;
  }

  .project-case-overview {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .project-case-overview-grid {
    gap: 48px;
  }

  .project-case-overview-main,
  .project-case-column,
  .project-case-result-inner {
    gap: 56px;
  }

  .project-case-tags,
  .project-case-meta-label {
    font-size: 14px;
    letter-spacing: 1.6px;
  }

  .services-marquee {
    padding-bottom: 48px;
    padding-top: 20px;
  }

  .marquee-row {
    height: 72px;
  }

  .contact-hero {
    padding-bottom: 72px;
    padding-top: 128px;
  }

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

  .contact-direct-label,
  .contact-direct-value {
    font-size: 20px;
  }

  .contact-hero h1 {
    font-size: clamp(46px, 8vw, 62px);
  }

  .contact-hero p:not(.eyebrow) {
    font-size: 18px;
  }

  .contact-aside,
  .contact-form-wrap {
    padding: 30px;
  }

  .contact-aside h2 {
    font-size: 34px;
  }

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

  .page-contact .contact-hero {
    padding-bottom: 0;
    padding-top: 144px;
  }

  .page-contact .contact-hero-inner {
    gap: 32px;
  }

  .page-contact .contact-layout {
    padding-bottom: 96px;
    padding-top: 96px;
  }

  .page-contact .contact-form-minimal .contact-grid {
    row-gap: 40px;
  }

  .page-contact .contact-section-title {
    font-size: clamp(36px, 7vw, 42px);
    margin-bottom: 56px;
  }

  .page-contact .form-response {
    margin-bottom: 28px;
  }

  .page-contact .contact-form-minimal {
    gap: 40px;
  }

  .page-contact .contact-form-minimal .form-field input,
  .page-contact .contact-form-minimal .form-field select,
  .page-contact .contact-form-minimal .form-field textarea {
    font-size: 20px;
  }

  .page-contact .site-footer-home {
    min-height: auto;
  }

  .marquee-track {
    font-size: clamp(48px, 13vw, 80px);
  }

  .hero-graphic,
  .heading-1-designups-builds-w-wrap {
    --index-heading-size: min(58vw, 320px);
    left: auto;
    right: -56px;
    top: auto;
    bottom: -108px;
  }

  .hero-bottom {
    gap: 40px;
    width: min(100%, 360px);
  }

  .site-footer-home {
    min-height: 403px;
    padding-bottom: 0;
  }

  .page-project .site-footer-home {
    height: auto;
    min-height: 403px;
    overflow: visible;
  }

  .page-projects .site-footer-home {
    min-height: auto;
  }

  .selected-projects-copy h2,
  .home-approach-copy h2,
  .cta-section h2 {
    font-size: clamp(36px, 7vw, 52px);
  }

  .project-card {
    flex-basis: 80%;
    height: 440px;
  }

  .selected-project-preview {
    flex-basis: calc(100% - var(--selected-project-peek));
    gap: 20px;
    width: calc(100% - var(--selected-project-peek));
  }

  .selected-project-preview-copy h3 {
    font-size: 34px;
  }

  .selected-project-preview-copy p {
    font-size: 16px;
  }

  .client-card {
    --client-logo-max-height: 87px;
    --client-logo-max-width: 180px;
  }

  .service-head {
    flex-wrap: wrap;
  }

  .service-line {
    order: 3;
    width: 100%;
  }

  .service-content h3 {
    font-size: clamp(34px, 7vw, 48px);
  }

  .service-lists {
    gap: 8px;
  }

  .footer-main {
    flex-direction: column;
    gap: 48px;
  }

  .footer-home-inner {
    gap: 72px;
  }

  .site-footer-home .footer-left {
    flex: 0 1 auto;
    margin-bottom: 40px;
    max-width: none;
    width: 100%;
  }

  .footer-nav-home {
    width: auto;
  }

  .footer-wordmark {
    padding-top: 72px;
  }

  .footer-legal p {
    font-size: 13px;
    line-height: 1.4;
  }
}

@media (min-width: 561px) and (max-width: 900px) {
  .projects-filter-list {
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
    scroll-padding-left: 0;
    scroll-padding-right: 0;
    width: 100%;
  }

  .projects-filter-separator {
    display: none;
  }

  .projects-filter-item {
    line-height: 1.35;
  }

  .team-card-carousel {
    --team-card-peek: clamp(160px, 24vw, 220px);
    gap: 20px;
    scroll-snap-type: x mandatory;
  }
}

@media (max-width: 560px) {
  .page-project {
    --page-gutter: 24px;
  }

  .project-case-media-pair {
    grid-template-columns: 1fr;
  }

  .project-case-result-stats {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .project-case-result-stat {
    gap: 16px;
  }

  .selected-projects {
    --selected-projects-inline-offset: 24px;
  }

  .selected-projects,
  .home-approach,
  .clients-section,
  .contact-layout,
  .page-contact .contact-layout,
  .cta-section,
  .site-footer-home,
  .projects-filter-bar,
  .projects-showcase,
  .studio-intro, 
  .home-intro,
  .approach-section,
  .team-section {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .service-panel {
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .service-panel,
  .service-panel.reverse {
    flex-direction: column-reverse;
  }
  .header-inner,
  .index-hero,
  .selected-projects,
  .services-marquee,
  .home-approach,
  .clients-section,
  .contact-hero,
  .contact-direct-details,
  .contact-layout,
  .cta-section,
  .site-footer-home,
  .projects-hero,
  .projects-filter-bar,
  .projects-showcase,
  .footer-main,
  .footer-wordmark,
  .footer-legal,
  .studio-hero,
  .home-intro,
  .studio-intro,
  .service-panel,
  .approach-section,
  .team-section,
  .project-case-hero,
  .project-case-overview {
    padding-left: 24px;
    padding-right: 24px;
  }

  .services-marquee {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    padding: 0 var(--page-gutter) 80px;
  }

  .team-card-carousel {
    --team-card-peek: 64px;
  }

  .team-card,
  .team-card-arianna,
  .team-card-nicolas {
    flex-basis: 70vw;
    width: 70vw;
  }

  .team-photo {
    width: 70vw;
  }

  .site-nav {
    font-size: 13px;
    gap: 16px;
    line-height: 1.3;
  }

  .contact-hero {
    padding-bottom: 56px;
    padding-top: 112px;
  }

  .contact-direct-details {
    padding-top: 64px;
  }

  .contact-direct-grid {
    gap: 24px;
  }

  .contact-direct-label,
  .contact-direct-value {
    font-size: 16px;
    line-height: 1.5;
  }

  .contact-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.1;
  }

  .contact-hero p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.5;
  }

  .contact-layout {
    padding-bottom: 80px;
  }

  .page-contact .contact-hero {
    padding-bottom: 0;
    padding-top: 128px;
  }

  .page-contact .contact-hero-inner {
    gap: 24px;
  }

  .page-contact .contact-layout {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .page-contact .contact-section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .page-contact .form-response {
    font-size: 14px;
    margin-bottom: 24px;
    padding: 14px 16px;
  }

  .page-contact .contact-form-minimal {
    gap: 32px;
  }

  .page-contact .contact-privacy-note {
    font-size: 14px;
  }

  .page-contact .contact-form-minimal .form-field {
    min-height: 58px;
  }

  .page-contact .contact-form-minimal .form-field input,
  .page-contact .contact-form-minimal .form-field select,
  .page-contact .contact-form-minimal .form-field textarea {
    font-size: 16px;
    line-height: 1.5;
    padding-bottom: 12px;
  }

  .contact-aside,
  .contact-form-wrap {
    border-radius: 18px;
    padding: 22px;
  }

  .contact-aside h2 {
    font-size: 30px;
  }

  .contact-detail-value {
    font-size: 16px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
    padding: 13px 14px;
  }

  .contact-submit {
    text-align: center;
    width: 100%;
  }

  .inline-cta {
    font-size: 14px;
    gap: 14px;
    letter-spacing: 1.4px;
  }

  .eyebrow {
    font-size: 13px;
    letter-spacing: 1.5px;
  }

  .cookie-policy {
    padding: 24px 24px 80px;
  }

  .cookie-policy .eyebrow {
    font-size: 13px;
    letter-spacing: 1.5px;
  }

  .hero-title,
  .ai-design-e-neuromarketing-pe,
  .studio-hero-copy h1,
  .projects-hero h1,
  .project-case-heading h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.08;
  }

  .selected-projects-copy h2,
  .clients-copy h2,
  .home-intro h2,
  .ai-summary h2,
  .cta-section h2,
  .studio-intro h2,
  .home-approach-copy h2,
  .approach-content h2,
  .team-intro h2,
  .project-case-overview-objective h2,
  .project-case-column h2,
  .project-case-result-inner h2 {
    font-size: clamp(32px, 9vw, 32px);
    line-height: 1.12;
  }

  .lead,
  .index-hero p,
  .home-approach-text p,
  .ai-summary-item p,
  .studio-intro p,
  .service-description,
  .approach-content p,
  .team-intro p,
  .clients-copy p,
  .cta-section p,
  .footer-lead,
  .project-case-overview-intro,
  .project-case-overview-objective p,
  .project-case-column p,
  .project-case-meta-value,
  .project-case-result-inner p {
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-bottom,
  .index-hero p {
    max-width: 100%;
    width: 100%;
  }

  .index-hero {
    padding: 96px 24px;
    gap: 80px;
    justify-content: flex-start;
  }

  .index-hero .hero-headline,
  .index-hero .hero-bottom,
  .index-hero .hero-description {
    max-width: calc(100vw - 48px);
    width: calc(100vw - 48px);
  }

  .index-hero .hero-title {
    font-size: clamp(32px, 9.2vw, 38px);
    width: 100%;
  }

  .index-hero .hero-description {
    font-size: 16px;
    line-height: 1.5;
  }

  .projects-hero {
    padding: 128px 24px 0;
  }

  .projects-filter-bar {
    padding-bottom: 48px;
    padding-top: 80px;
  }

  .projects-showcase {
    padding-top: 0;
    padding-bottom: 80px;
  }

  .projects-showcase-grid {
    row-gap: 80px;
  }

  .project-list-card {
    gap: 16px;
  }

  .project-list-meta h2,
  .selected-project-preview-copy h3 {
    font-size: 32px;
  }

  .selected-project-preview-copy p {
    font-size: 14px;
    line-height: 1.6;
  }

  .studio-hero {
    padding-top: 128px;
  }

  .project-case-hero {
    padding: 128px 24px 0;
  }

  .project-case-hero-inner,
  .project-case-overview-main {
    gap: 40px;
  }

  .project-case-overview-grid {
    gap: 40px;
  }

  .project-case-column,
  .project-case-result-inner {
    gap: 40px;
  }

  .project-case-overview-side {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .project-case-meta-block {
    gap: 18px;
  }

  .project-case-tags,
  .project-case-meta-label {
    font-size: 13px;
    letter-spacing: 1.5px;
  }

  .selected-projects-strip {
    --selected-project-peek: 112px;
    gap: 16px;
  }

  .selected-project-preview {
    flex-basis: 85vw;
    gap: 16px;
    width: 85vw;
  }

  .selected-projects-carousel {
    gap: 32px;
  }

  .project-card {
    flex-basis: 85vw;
    height: 240px;
  }

  .footer-main {
    gap: 40px;
  }

  .footer-home-inner {
    gap: 56px;
  }

  .site-footer-home .footer-left {
    margin-bottom: 32px;
  }

  .carousel-hover-indicator {
    display: none !important;
  }

  .hero-graphic,
  .heading-1-designups-builds-w-wrap {
    --index-heading-size: 88vw;
    right: -36vw;
    bottom: -24vw;
  }

  .service-kicker {
    font-size: 16px;
    line-height: 1.3;
  }

  .service-index {
    font-size: 13px;
  }

  .service-content h3 {
    font-size: clamp(24px, 8.2vw, 28px);
    line-height: 1.15;
  }

  .service-lists ul {
    font-size: 16px;
  }

  .team-card h3 {
    font-size: 30px;
  }

  .team-card p {
    font-size: 16px;
    line-height: 1.45;
  }
  .footer-nav{
    gap: 8px;
  }
  .footer-nav,
  .footer-legal p {
    font-size: 16px;
    line-height: 1.45;
  }

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

  .marquee-row {
    height: 54px;
  }

  .marquee-track {
    font-size: clamp(34px, 11vw, 52px);
  }

  .client-card {
    --client-logo-max-height: 64px;
    --client-logo-max-width: 200px;
    min-height: 0;
  }

  .client-card-text p {
    font-size: 20px;
  }

  h1 {
    font-size: 40px !important;
  }

  h2 {
    font-size: 32px !important;
  }

  .footer-home-inner {
    gap: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js .heading-letter {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee-track {
    animation: none;
  }
}

/* Cookie consent banner */
.cookie-consent {
  bottom: 20px;
  display: flex;
  justify-content: flex-end;
  left: 20px;
  position: fixed;
  right: 20px;
  z-index: 400;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-card {
  background: var(--surface-light);
  border: 1px solid var(--border-neutral);
  border-radius: 24px;
  box-shadow: 0 30px 60px -24px rgba(30, 28, 27, 0.28);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(20px, 2.8vw, 28px);
  width: min(100%, 440px);
}

.cookie-consent-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.cookie-consent-text a {
  color: var(--surface-accent-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent-options {
  border-top: 1px solid var(--border-dark-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
}

.cookie-consent-options[hidden] {
  display: none;
}

.cookie-toggle {
  align-items: center;
  color: var(--text-secondary);
  display: flex;
  font-size: 13.5px;
  gap: 10px;
  line-height: 1.4;
}

.cookie-toggle input {
  accent-color: var(--surface-accent-red);
  flex: 0 0 auto;
  height: 16px;
  width: 16px;
}

.cookie-consent-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.cookie-consent-actions .cookie-btn[hidden] {
  display: none;
}

.cookie-btn {
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 1.4px;
  line-height: 1;
  padding: 13px 22px;
  text-transform: uppercase;
  width: fit-content;
}

.cookie-btn-primary {
  background: var(--surface-accent-red);
  border: 0;
  color: var(--surface-light);
}

.cookie-btn-primary:hover {
  background: var(--surface-accent-red-pressed);
}

.cookie-btn-secondary {
  background: none;
  border: 1px solid var(--border-neutral-soft);
  color: var(--text-primary);
}

.cookie-btn-secondary:hover {
  border-color: var(--text-primary);
}

.cookie-consent-link {
  background: none;
  border: 0;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  margin-right: auto;
  padding: 6px 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent-link:hover {
  color: var(--text-primary);
}

.cookie-fab {
  align-items: center;
  background: var(--surface-accent-red);
  border: 0;
  border-radius: 999px;
  bottom: 20px;
  box-shadow: 0 16px 32px -16px rgba(18, 18, 18, 0.45);
  color: var(--surface-light);
  cursor: pointer;
  display: flex;
  height: 48px;
  justify-content: center;
  left: 20px;
  position: fixed;
  width: 48px;
  z-index: 400;
}

.cookie-fab:hover {
  background: var(--surface-accent-red-pressed);
}

.cookie-fab[hidden] {
  display: none;
}

.cookie-fab svg {
  height: 22px;
  width: 22px;
}

@media (hover: hover) and (pointer: fine) {
  .cookie-btn-primary,
  .cookie-btn-secondary,
  .cookie-fab {
    transition:
      background 0.2s ease,
      border-color 0.2s ease;
  }
}

@media (max-width: 560px) {
  .cookie-consent {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .cookie-consent-card {
    width: 100%;
  }

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

  .cookie-consent-actions .cookie-btn {
    justify-content: center;
    width: 100%;
  }

  .cookie-consent-link {
    margin-right: 0;
    text-align: center;
  }

  .cookie-fab {
    bottom: 12px;
    left: 12px;
  }
}
