/* ═══════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════ */
:root {
  /* Color */
  --color-surface: #f5f4f0;
  --color-surface-alt: #eae8e3;
  --color-text: #1a1a1a;
  --color-text-muted: #6b6b6b;
  --color-accent: #7891EE;
  --color-white: #ffffff;

  /* Type scale */
  --font-body: 'Hanken Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-display: 'Happy Times', 'Hanken Grotesk', sans-serif;

  --text-xs: clamp(0.7rem, 0.7rem, 0.75rem);
  --text-sm: clamp(0.8rem, 0.85rem, 0.9rem);
  --text-base: clamp(0.95rem, 1rem, 1.05rem);
  --text-lg: clamp(1.1rem, 1.3rem, 1.4rem);
  --text-xl: clamp(1.4rem, 1.8rem, 2.2rem);
  --text-2xl: clamp(2rem, 3rem, 4.5rem);
  --text-3xl: clamp(3rem, 5.5rem, 9rem);
  --text-hero: clamp(4rem, 10vw, 14rem);

  /* Spacing */
  --space-4: 0.25rem;
  --space-6: 0.5rem;
  --space-8: 1rem;
  --space-12: 1.5rem;
  --space-16: 2rem;
  --space-24: 3rem;
  --space-32: 4rem;
  --space-48: 6rem;
  --space-64: 8rem;
  --space-96: 12rem;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-base: 0.6s;
  --duration-slow: 1.2s;

  /* Layout */
  --max-width: 1440px;
  --gutter: clamp(1rem, 4vw, 3rem);
  --mid-gutter: clamp(0.5rem, 2vw, 1.5rem);
}

/* ═══════════════════════════════════════
   CUSTOM FONT — Happy Times
   Sostituisci il path con i tuoi file .woff2
   ═══════════════════════════════════════ */
@font-face {
  font-family: 'Happy Times';
  src: url('/fonts/HappyTimesattheKOBNewGamePlusEdition-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Happy Times';
  src: url('/fonts/HappyTimesattheKOBNewGamePlusEdition-Oblique.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ═══════════════════════════════════════
   RESET
   ═══════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-surface);
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

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

/* ═══════════════════════════════════════
   SKIP LINK
   ═══════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-8);
  padding: var(--space-6) var(--space-12);
  background: var(--color-text);
  color: var(--color-white);
  font-size: var(--text-sm);
  z-index: 1000;
  border-radius: 0;
}
.skip-link:focus {
  top: var(--space-8);
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: var(--space-12) var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: normal;
  color: var(--color-black);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  width: clamp(7.25rem, 11vw, 9.5rem);
  line-height: 0;
}

.nav__logo-mark {
  display: block;
  width: 100%;
  height: auto;
}

.nav__cta {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-6) var(--space-12);
  background: var(--color-white);
  border: 1px solid currentColor;
  transition: background var(--duration-base) var(--ease-out),
              color var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out);
}

.nav__cta:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-black);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-content: start;
  padding-top: 105px;
  padding-bottom: var(--space-48);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 400;
  color: var(--color-text);
  max-width: 100%;
}

.hero__headline em {
  font-style: italic;
  color: var(--color-accent);
}

.hero__subline {
  margin-top: var(--space-24);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 42ch;
  line-height: 1.5;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: var(--space-24);
  z-index: 8;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--color-text);
  background: transparent;
  transform: translateX(-50%);
  transition: opacity var(--duration-base) var(--ease-out),
              visibility var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out),
              color var(--duration-base) var(--ease-out);
  animation: scroll-cue-bounce 1.8s var(--ease-out) infinite;
}

.scroll-cue:hover {
  color: var(--color-text-muted);
}

.scroll-cue.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
}

.scroll-cue svg {
  width: 42px;
  height: 42px;
}

@keyframes scroll-cue-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.hero__image-wrapper {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 35vw, 520px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.hero-gallery {
  background: var(--color-surface-alt);
  cursor: pointer;
  isolation: isolate;
}

.hero-gallery__slides {
  position: absolute;
  inset: 0;
}

.hero-gallery__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.hero-gallery__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-gallery:hover .hero-gallery__slide.is-active {
  transform: scale(1.03);
}

.hero-gallery__hit-area {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: transparent;
}

.hero-gallery__hit-area:focus-visible {
  outline-offset: -6px;
}

.hero-gallery__nav {
  position: absolute;
  left: var(--space-12);
  bottom: var(--space-12);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: var(--space-6);
  pointer-events: auto;
}

.hero-gallery__dot {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(26, 26, 26, 0.45);
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.22);
  transition: width var(--duration-base) var(--ease-out),
              background var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out);
}

.hero-gallery__dot.is-active {
  width: 24px;
  background: var(--color-accent);
  border-color: var(--color-accent);
}

/* Reveal animation */
.hero__headline,
.hero__subline {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp var(--duration-slow) var(--ease-out) forwards;
}

.hero__image-wrapper {
  opacity: 0;
  transform: translateY(-50%) translateX(40px);
  animation: fadeUpRight var(--duration-slow) var(--ease-out) forwards;
  animation-delay: 0.5s;
}

.hero__headline { animation-delay: 0.1s; }
.hero__subline { animation-delay: 0.35s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpRight {
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__headline,
  .hero__subline,
  .hero__image-wrapper {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .scroll-cue {
    animation: none;
  }
}

/* ═══════════════════════════════════════
   MANIFESTO / ABOUT
   ═══════════════════════════════════════ */
.manifesto {
  padding: 96px var(--mid-gutter) var(--space-48);
  max-width: none;
  margin-top: 96px;
  border: 1.5px solid var(--color-accent);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-24);
}

.manifesto__grid--solo {
  text-align: center;
}

.manifesto__label {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-12);
}

.manifesto__body {
  font-size: var(--text-xl);
  line-height: 1.45;
  letter-spacing: -0.01em;
  max-width: 65ch;
}

.manifesto__body strong {
  font-weight: 600;
}

.manifesto__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-16);
  margin-top: var(--space-32);
  padding-top: var(--space-32);
  border-top: 1px solid var(--color-surface-alt);
}

.manifesto__stats--solo {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.manifesto__stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  line-height: 1;
  letter-spacing: -0.03em;
}

.manifesto__stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: var(--space-4);
}

/* ═══════════════════════════════════════
   SERVICES (WHAT WE HOST)
   ═══════════════════════════════════════ */
.services {
  padding: 96px var(--mid-gutter) var(--space-48);
  max-width: var(--max-width);
  margin: 0 auto;
}

.services__header {
  display: block;
  text-align: center;
  margin-bottom: var(--space-32);
}

.services__title,
.projects__title {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-surface-alt);
}

.services__item {
  background: var(--color-surface);
  padding: var(--space-24) var(--space-16);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transition: background var(--duration-base) var(--ease-out);
}

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

.services__item-number {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
}

.services__item-name {
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.services__item-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.services {
  position: relative;
}


/* ═══════════════════════════════════════
   PROJECTS CAROUSEL
   ═══════════════════════════════════════ */
.projects {
  padding: 96px 0 var(--space-64);
  overflow: hidden;
  position: relative;
}

.projects__header {
  padding: 0 var(--mid-gutter);
  margin-bottom: var(--space-32);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.projects__subtitle {
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-top: var(--space-8);
}

.projects__track-wrapper {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.projects__track-wrapper::-webkit-scrollbar {
  display: none;
}

.projects__track-wrapper.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.projects__track {
  display: flex;
  gap: var(--space-12);
  width: max-content;
}

.projects__next {
  position: absolute;
  top: 50%;
  right: var(--gutter);
  z-index: 5;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--color-text);
  transform: translateY(-50%);
  transition: color var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}

.projects__next:hover {
  color: var(--color-text-muted);
  transform: translateY(-50%) translateX(3px);
}

.projects__next svg {
  width: 42px;
  height: 42px;
}

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

.project-card {
  flex-shrink: 0;
  width: clamp(280px, 30vw, 420px);
  position: relative;
  cursor: grab;
  scroll-snap-align: start;
}

.projects__track-wrapper.is-dragging .project-card {
  cursor: grabbing;
}

.project-card__image-wrapper {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-surface-alt);
  position: relative;
}

.project-gallery {
  cursor: pointer;
  isolation: isolate;
}

.project-gallery__slides {
  position: absolute;
  inset: 0;
}

.project-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out),
              filter var(--duration-slow) var(--ease-out);
  filter: saturate(0.85);
}

.project-gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-slow) var(--ease-out),
              filter var(--duration-slow) var(--ease-out);
}

.project-gallery__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.project-card:hover .project-gallery__slide.is-active {
  transform: scale(1.05);
  filter: saturate(1);
}

.project-gallery__hit-area {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: transparent;
}

.project-gallery__hit-area:focus-visible {
  outline-offset: -6px;
}

.project-gallery__nav {
  position: absolute;
  left: var(--space-12);
  bottom: var(--space-12);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: var(--space-6);
  pointer-events: auto;
}

.project-gallery__dot {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(26, 26, 26, 0.45);
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.22);
  transition: width var(--duration-base) var(--ease-out),
              background var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out);
}

.project-gallery__dot.is-active {
  width: 24px;
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.project-card__info {
  padding: var(--space-8) 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.project-card__name {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.project-card__year {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
}

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-section {
  padding: var(--space-48) var(--gutter) var(--space-96);
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-section__headline {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-32);
}

.cta-section__headline em {
  color: var(--color-accent);
  font-style: italic;
}

.cta-section__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--text-base);
  font-weight: 500;
  padding: var(--space-12) var(--space-24);
  background: var(--color-text);
  color: var(--color-white);
  letter-spacing: 0.02em;
  transition: background var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}

.cta-section__button:hover {
  background: var(--color-accent);
  color: var(--color-text);
  transform: translateY(-2px);
}

.cta-section__button svg {
  transition: transform var(--duration-base) var(--ease-out);
}

.cta-section__button:hover svg {
  transform: translateX(4px);
}

.cta-section__pdf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  width: max-content;
  margin: var(--space-8) auto 0;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid currentColor;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.2;
  transition: color var(--duration-base) var(--ease-out);
}

.cta-section__pdf:hover {
  color: var(--color-text);
}

.cta-section__pdf svg {
  flex-shrink: 0;
  transform: translateY(-1px);
  transition: transform var(--duration-base) var(--ease-out);
}

.cta-section__pdf:hover svg {
  transform: translate(2px, -3px);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  padding: var(--space-24) var(--gutter) var(--space-24);
  border-top: 1px solid var(--color-surface-alt);
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-24);
  align-items: start;
}

.footer__brand {
  display: flex;
  justify-content: center;
  width: min(100%, 19rem);
  margin: 0 auto;
  line-height: 1;
}

.footer__logo-mark {
  display: block;
  width: 100%;
  height: auto;
}

.footer__address {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  text-align: center;
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-4) 0;
  border-bottom: 1px solid transparent;
  transition: color var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out);
}

.footer__link:hover {
  color: var(--color-text);
  border-bottom-color: var(--color-text);
}

.footer__bottom {
  margin-top: 0;
  padding-top: var(--space-16);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
}

.footer__bottom span + span {
  display: none;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (min-width: 768px) {
  .hero {
    display: flex;
    align-items: center;
  }

  .hero__content {
    width: min(55vw, 620px);
    padding-right: var(--space-24);
  }

  .manifesto__grid {
    grid-template-columns: auto 1fr;
    gap: var(--space-48);
    align-items: start;
  }

  .manifesto__grid--solo {
    grid-template-columns: 1fr;
    gap: var(--space-16);
  }

  .services__header {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 1280px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr;
    align-items: center;
    padding-top: 105px;
    padding-bottom: var(--space-32);
  }

  .hero__content {
    width: auto;
    padding-right: var(--space-32);
  }

  .hero__headline {
    grid-column: 1;
  }

  .hero__subline {
    grid-column: 1;
  }

  .hero__image-wrapper {
    position: static;
    transform: translateY(40px);
    grid-column: 2;
    align-self: center;
    width: clamp(320px, 30vw, 480px);
    animation-name: fadeUp;
  }

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

  .footer__links {
    align-items: flex-start;
    justify-self: start;
  }

  .footer__brand {
    position: absolute;
    top: var(--space-24);
    left: 50%;
    transform: translateX(-50%);
  }

  .footer__bottom {
    position: relative;
    left: 50%;
    width: max-content;
    transform: translateX(-50%);
  }

  .footer__address {
    justify-self: end;
    text-align: right;
  }
}


@media (max-width: 767px) {
  :root {
    --gutter: clamp(1rem, 5vw, 1.5rem);
    --mobile-section-space: 2.75rem;
    --mobile-section-header-gap: 1.5rem;
  }

  .nav {
    padding: var(--space-8) var(--gutter);
    gap: var(--space-8);
    z-index: 1000;
  }

  .nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    max-width: 52vw;
    padding: 0.45rem 0.75rem;
    font-size: var(--text-sm);
    line-height: 1;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    touch-action: manipulation;
  }

  .hero {
    min-height: auto;
    display: block;
    padding-top: clamp(5.5rem, 19vw, 7rem);
    padding-bottom: 1.5rem;
  }

  .hero__headline {
    font-size: clamp(3.5rem, 18vw, 5.25rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
  }

  .hero__subline {
    max-width: none;
    margin-top: var(--space-16);
  }

  .hero__image-wrapper {
    position: relative;
    right: auto;
    top: auto;
    transform: translateY(40px);
    width: 100%;
    aspect-ratio: 4 / 5;
    margin-top: var(--space-24);
    animation-name: fadeUp;
  }

  .scroll-cue {
    position: static;
    display: flex;
    width: 42px;
    height: 42px;
    margin: var(--space-16) auto 0;
    transform: none;
    animation: scroll-cue-mobile-bounce 1.8s var(--ease-out) infinite;
  }

  .hero-gallery__nav {
    left: auto;
    right: var(--space-12);
  }

  .scroll-cue.is-hidden {
    transform: translateY(12px);
  }

  @keyframes scroll-cue-mobile-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
  }

  .manifesto {
    padding: 2rem var(--gutter);
    scroll-margin-top: 5rem;
  }

  .manifesto__grid.manifesto__grid--solo {
    gap: 1.75rem;
  }

  .manifesto__label {
    margin-bottom: 0;
  }

  .services {
    padding: 1.75rem var(--gutter) 1.25rem;
  }

  .manifesto__stats.manifesto__stats--solo {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: clamp(0.5rem, 2vw, 1rem);
    justify-content: space-between;
    align-items: start;
  }

  .manifesto__stats.manifesto__stats--solo > div {
    display: grid;
    flex: 1 1 0;
    grid-template-rows: 2.55rem auto;
    justify-items: center;
    align-items: start;
    min-width: 0;
    text-align: center;
  }

  .manifesto__stat-number {
    font-size: clamp(1.9rem, 8.4vw, 2.55rem);
    line-height: 1;
    white-space: nowrap;
  }

  .manifesto__stat-label {
    font-size: clamp(0.52rem, 1.7vw, 0.62rem);
    line-height: 1.15;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .services__header {
    grid-template-columns: 1fr;
    align-items: start;
    margin-bottom: var(--mobile-section-header-gap);
  }

  .services__title,
  .projects__title,
  .cta-section__headline {
    scroll-margin-top: 5rem;
  }

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

  .services__item {
    padding: var(--space-16);
  }

  .projects {
    padding: 1.75rem 0 1.25rem;
  }

  .projects__header {
    padding: 0 var(--gutter);
    margin-bottom: 1.25rem;
  }

  .projects__track-wrapper {
    scroll-padding-inline: var(--gutter);
    scroll-snap-type: none;
  }

  .projects__track {
    gap: var(--space-8);
    padding: 0 var(--gutter);
  }

  .projects__next {
    top: 22rem;
    right: var(--gutter);
    transform: translateY(-50%);
  }

  .projects__next:hover {
    transform: translateY(-50%) translateX(3px);
  }

  .projects__next svg {
    width: 36px;
    height: 36px;
  }

  .project-card {
    width: min(82vw, 320px);
    scroll-snap-align: none;
  }

  .project-card__info {
    gap: var(--space-8);
  }

  .project-card__name {
    min-width: 0;
  }

  .cta-section {
    padding: var(--mobile-section-space) var(--gutter);
  }

  .cta-section__headline {
    font-size: clamp(3rem, 15vw, 4.25rem);
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .cta-section__button {
    width: 100%;
    max-width: 16rem;
  }

  .cta-section__pdf {
    width: max-content;
    max-width: calc(100vw - (var(--gutter) * 2));
  }

  .footer {
    padding: var(--mobile-section-space) var(--gutter);
  }

  .footer__grid {
    gap: var(--space-16);
  }

  .footer__bottom {
    margin-top: var(--space-12);
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
  }

  .scroll-cue,
  .projects .projects__next,
  .projects .projects__next svg {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}
