html,
body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  overflow: hidden;
}

/* Splash iniziale */
.intro {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  pointer-events: none;
}

.intro:not(.about-intro) {
  background: #000;
}

.logo {
  font-family: 'Inspiration', cursive;
  font-size: 5rem;
  color: white;
  margin: 0;
  opacity: 0;
  transform-origin: center center;
  transform: translateY(120px) rotate(0deg) scale(1);
  animation:
    logoEntrance 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    logoRotate 0.5s ease forwards 0.9s,
    logoExpand 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards 1.2s,
    logoColorChange 0.2s ease forwards 1.2s,
    logoDisappear 0.2s ease forwards 2s;
}

.intro.about-intro {
  background: #4f8dff;
  justify-content: flex-start;
  align-items: center;
  padding: 0 40px;
  box-sizing: border-box;
}

.intro.projects-intro {
  background: #eb7f2e;
  justify-content: flex-start;
  align-items: center;
  padding: 0 40px;
  box-sizing: border-box;
}

.about-intro-text,
.projects-intro-text {
  margin: 0;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(3.2rem, 14vw, 10.5rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
  text-align: left;
  opacity: 0;
  transform: translateY(115%);
  animation:
    aboutIntroEnter 1s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    aboutIntroExit 0.9s cubic-bezier(0.64, 0, 0.78, 0) forwards 1.65s;
}

/* Contenuto sito */
.site-content {
  min-height: 100vh;
  background: white;
  color: black;
  opacity: 0;
  transform: translateY(18px);
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  transition: opacity 0.42s ease, transform 0.42s ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 1000;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

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

.header-logo {
  font-family: 'Inspiration', cursive;
  font-size: 3rem;
  color: black;
  text-decoration: none;
  line-height: 1;
}

.navbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 56px;
}

.navbar a {
  position: relative;
  text-decoration: none;
  color: black;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 8px;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: black;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.navbar a:hover::after,
.navbar a.active::after {
  transform: scaleX(1);
}

.navbar a.nav-contact-link {
  padding: 0 0 8px;
  border: 0;
  border-radius: 0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  line-height: normal;
  text-transform: uppercase;
  font-weight: 600;
  color: black;
}

.navbar a.nav-contact-link::after {
  display: block;
}

.navbar a.nav-contact-link:hover,
.navbar a.nav-contact-link:focus-visible {
  background: transparent;
  color: black;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #2a78ff;
  outline-offset: 3px;
}

.split-scroll-section {
  position: relative;
  height: 760vh;
}

.split-scroll-sticky {
  --split-progress: 0;
  --split-open-start: 0.56;
  --split-open-range: 0.28;
  --split-grow-start: 0.5;
  --split-grow-range: 0.3;
  --split-open-progress: clamp(0, calc((var(--split-progress) - var(--split-open-start)) / var(--split-open-range)), 1);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #ffffff;
  color: #111;
  transition: background-color 0.75s ease, color 0.75s ease;
}

.split-scroll-sticky.is-dark {
  background: #111212;
  color: #f1eee7;
}

.split-background {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: calc(50% * (1 - clamp(0, calc((var(--split-progress) - var(--split-open-start)) / var(--split-open-range)), 1))) 1fr;
  transition: grid-template-columns 0.2s linear;
}

.split-half {
  min-width: 0;
  transform: scaleY(clamp(0, calc((var(--split-progress) - var(--split-grow-start)) / var(--split-grow-range)), 1));
  transform-origin: center;
  transition: transform 0.2s linear, background-color 0.75s ease;
}

.split-left {
  background: #ffffff;
}

.split-right {
  background: #e5e5e2;
}

.split-scroll-sticky.is-dark .split-left {
  background: #121314;
}

.split-scroll-sticky.is-dark .split-right {
  background: #1b1d1e;
}

.split-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 0;
}

.content-stage {
  position: absolute;
  inset: 0;
  padding: 110px 40px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 1.35s ease, transform 1.35s ease;
}

.content-stage.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.stage-about {
  justify-content: center;
}

.split-eyebrow {
  align-self: center;
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: #6c6b67;
  opacity: clamp(0, calc(1 - (var(--split-progress) - 0.2) * 5), 1);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.split-title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.split-title-main {
  align-self: center;
  text-align: center;
  max-width: 840px;
  opacity: calc(1 - clamp(0, (var(--split-progress) - 0.08) * 6, 1));
  transform: translateY(calc(clamp(0, var(--split-progress) * 120, 18) * -1px));
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: clamp(0, calc(1 - (var(--split-progress) * 6)), 1);
  transition: opacity 0.2s ease;
}

.scroll-hint-text {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a766f;
}

.scroll-hint-arrow {
  display: inline-block;
  font-size: 1.7rem;
  line-height: 1;
  color: #5f5a52;
  animation: scrollHintArrow 1.6s ease-in-out infinite;
}

.typing-text {
  display: inline-block;
  min-height: 1em;
}

.typing-text.is-typing {
  border-right: 0.08em solid currentColor;
  padding-right: 0.06em;
  animation: typingCaret 0.75s steps(1, end) infinite;
}

.split-title-secondary {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(900px, calc(100% - 80px));
  transform: translate(-50%, calc(-50% + 24px));
  opacity: clamp(0, calc((var(--split-progress) - 0.2) * 5), 1);
  color: #66635c;
  text-align: center;
}

.split-scroll-sticky.is-expanded .split-title-secondary {
  opacity: 0;
  transform: translate(-50%, calc(-50% - 12px));
}

.split-scroll-sticky.is-expanded .split-eyebrow {
  opacity: 0;
}

.about-label-row {
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  opacity: clamp(0, calc((var(--split-progress) - 0.62) * 6), 1);
  transform-origin: left top;
  transform: translateY(calc(24px - (clamp(0, calc((var(--split-progress) - 0.62) * 6), 1) * 24px))) scale(calc(0.88 + (var(--split-open-progress) * 0.12)));
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.split-projects-label {
  margin: 0;
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 700;
  color: #6f6f6b;
}

.about-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555149;
}

.about-cta-arrow {
  display: inline-block;
  animation: aboutCtaArrow 1.2s ease-in-out infinite;
}

.about-block {
  position: absolute;
  top: 132px;
  left: 40px;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  opacity: clamp(0, calc((var(--split-progress) - 0.64) * 6), 1);
  transform-origin: left top;
  transform: translateY(calc(20px - (clamp(0, calc((var(--split-progress) - 0.64) * 6), 1) * 20px))) scale(calc(0.86 + (var(--split-open-progress) * 0.14)));
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.about-description {
  margin: 0;
  width: 100%;
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: #52524f;
}

.about-image {
  width: min(340px, 100%);
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.stage-projects {
  justify-content: center;
  gap: 16px;
}

.projects-label-row {
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.projects-section-description {
  position: absolute;
  top: 78px;
  left: 40px;
  width: min(700px, calc(100% - 80px));
  margin: 0;
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  line-height: 1.65;
  color: #5d5952;
}

.stage-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: #6f6b63;
}

.stage-title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.stage-description {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  color: #5f5b54;
}

.stage-meta {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #858074;
}

.projects-carousel {
  position: absolute;
  top: 170px;
  left: 40px;
  right: 40px;
  bottom: 28px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 18px;
}

.projects-carousel-viewport {
  overflow: hidden;
  height: 100%;
}

.projects-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.project-card {
  flex: 0 0 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 30px 32px;
  border: none;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: -26px;
  border-radius: 18px;
  filter: blur(24px);
  opacity: 0.58;
  z-index: -1;
  pointer-events: none;
}

.project-card:nth-child(1) {
  background: linear-gradient(165deg, #ff7a18 0%, #ff3d3d 48%, #ff1f8f 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.project-card:nth-child(1)::before {
  background: radial-gradient(circle, rgba(255, 61, 61, 0.58) 0%, rgba(255, 31, 143, 0.36) 48%, rgba(255, 122, 24, 0) 100%);
}

.project-card:nth-child(2) {
  background: linear-gradient(165deg, #00d4ff 0%, #3a86ff 52%, #6a00ff 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.project-card:nth-child(2)::before {
  background: radial-gradient(circle, rgba(58, 134, 255, 0.56) 0%, rgba(106, 0, 255, 0.34) 48%, rgba(0, 212, 255, 0) 100%);
}

.project-card:nth-child(3) {
  background: linear-gradient(165deg, #a6ff00 0%, #2fff8d 48%, #00d084 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.project-card:nth-child(3)::before {
  background: radial-gradient(circle, rgba(47, 255, 141, 0.56) 0%, rgba(0, 208, 132, 0.34) 48%, rgba(166, 255, 0, 0) 100%);
}

.project-card .stage-kicker,
.project-card .stage-title,
.project-card .stage-description,
.project-card .stage-meta {
  color: #ffffff;
}

.projects-arrow {
  width: 58px;
  height: 58px;
  border: none;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.6) 55%, rgba(255, 255, 255, 0.32) 100%);
  box-shadow: inset 0 0 0 1px rgba(185, 179, 168, 0.22);
  color: #3a3834;
  font-size: 1.45rem;
  line-height: 1;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  align-self: center;
  animation: projectsArrowFloat 1.8s ease-in-out infinite;
}

.projects-arrow:hover {
  background: #111;
  color: #fff;
  transform: scale(1.06);
}

.projects-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.split-scroll-sticky.is-dark .split-eyebrow,
.split-scroll-sticky.is-dark .stage-kicker {
  color: #aba597;
}

.split-scroll-sticky.is-dark .split-title-secondary,
.split-scroll-sticky.is-dark .about-description,
.split-scroll-sticky.is-dark .stage-description,
.split-scroll-sticky.is-dark .projects-section-description {
  color: #cac3b8;
}

.split-scroll-sticky.is-dark .split-projects-label,
.split-scroll-sticky.is-dark .stage-meta {
  color: #928a7d;
}

.split-scroll-sticky.is-dark .about-cta-link {
  color: #b4ad9f;
}

.split-scroll-sticky.is-dark .project-card {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.split-scroll-sticky.is-dark .projects-arrow {
  background: radial-gradient(circle at 35% 30%, rgba(48, 51, 54, 0.95) 0%, rgba(26, 28, 30, 0.78) 55%, rgba(15, 16, 17, 0.56) 100%);
  box-shadow: inset 0 0 0 1px rgba(74, 78, 82, 0.25);
  color: #dad2c6;
}

.split-scroll-sticky.is-dark .projects-arrow:hover {
  background: #f1eee7;
  color: #191a1b;
}

.stage-services {
  justify-content: flex-start;
  padding: 110px 40px 40px;
  color: #1f1d1a;
}

.split-scroll-sticky.is-services {
  background: #f7f4ee;
  color: #1f1d1a;
}

.split-scroll-sticky.is-contacts {
  background: #e9eff4;
  color: #131518;
}

.services-head {
  max-width: 860px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.95s ease, transform 0.95s ease;
}

.services-kicker {
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #726d62;
  font-weight: 700;
}

.services-title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.services-description {
  margin: 0;
  max-width: 700px;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.7;
  color: #59544a;
}

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

.service-card {
  background: #ffffff;
  border: 1px solid #e5dfd3;
  padding: 26px 24px;
  min-height: 220px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.95s ease, transform 0.95s ease;
}

.stage-services.is-active .services-head {
  opacity: 1;
  transform: translateY(0);
}

.stage-services.is-active .service-card {
  opacity: 1;
  transform: translateY(0);
}

.stage-services.is-active .service-card:nth-child(1) {
  transition-delay: 0.14s;
}

.stage-services.is-active .service-card:nth-child(2) {
  transition-delay: 0.26s;
}

.stage-services.is-active .service-card:nth-child(3) {
  transition-delay: 0.38s;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: #5b564d;
  line-height: 1.65;
}

.stage-contacts {
  justify-content: center;
  gap: 18px;
}

.contacts-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.contact-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

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

.contact-btn-primary {
  background: #111212;
  color: #fff;
}

.contact-btn-primary:hover {
  background: #000;
}

.contact-btn-secondary {
  border-color: #4f555c;
  color: #1f2429;
  background: rgba(255, 255, 255, 0.55);
}

.contact-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.8);
}

@keyframes logoEntrance {
  from {
    opacity: 0;
    transform: translateY(120px) rotate(0deg) scale(1);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes logoRotate {
  from {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  to {
    transform: translateY(0) rotate(-30deg) scale(1);
  }
}

@keyframes logoExpand {
  from {
    transform: translateY(0) rotate(-30deg) scale(1);
  }
  to {
    transform: translateY(0) rotate(-30deg) scale(12);
  }
}

@keyframes logoColorChange {
  from {
    color: white;
  }
  to {
    color: black;
  }
}

@keyframes logoDisappear {
  from {
    opacity: 1;
    transform: translateY(0) rotate(-30deg) scale(12);
  }
  to {
    opacity: 0;
    transform: translateY(0) rotate(-30deg) scale(13);
  }
}

@keyframes aboutIntroEnter {
  from {
    opacity: 0;
    transform: translateY(115%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutIntroExit {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(-120%);
  }
}

@keyframes bgFade {
  from {
    background: black;
  }
  to {
    background: white;
  }
}

@keyframes siteAppear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes typingCaret {
  0%,
  49% {
    border-right-color: currentColor;
  }
  50%,
  100% {
    border-right-color: transparent;
  }
}

@keyframes scrollHintArrow {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

@keyframes aboutCtaArrow {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

@keyframes projectsArrowFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 20px 24px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .navbar {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .navbar a.nav-contact-link {
    padding: 0 0 8px;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
  }

  .split-scroll-section {
    height: 700vh;
  }

  .content-stage {
    padding: 92px 24px 28px;
    gap: 14px;
  }

  .split-title {
    font-size: 2.6rem;
  }

  .split-title-secondary {
    left: 50%;
    width: calc(100% - 48px);
  }

  .about-label-row {
    top: 24px;
    left: 24px;
    right: 24px;
    gap: 12px;
  }

  .split-projects-label {
    font-size: 2.4rem;
  }

  .about-cta-link {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .projects-label-row {
    top: 24px;
    left: 24px;
    right: 24px;
  }

  .projects-section-description {
    top: 68px;
    left: 24px;
    width: calc(100% - 48px);
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .about-block {
    top: 92px;
    left: 24px;
    width: 100%;
  }

  .about-description {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .about-image {
    width: min(250px, 100%);
    aspect-ratio: 3 / 4;
    height: auto;
  }

  .stage-title {
    font-size: 2.15rem;
  }

  .stage-description {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .projects-carousel {
    top: 150px;
    left: 24px;
    right: 24px;
    bottom: 24px;
    gap: 10px;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .project-card {
    padding: 24px 20px;
  }

  .project-card::before {
    inset: -18px;
    filter: blur(16px);
    opacity: 0.52;
  }

  .projects-arrow {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .intro.about-intro {
    padding: 0 24px;
  }

  .intro.projects-intro {
    padding: 0 24px;
  }

  .about-intro-text,
  .projects-intro-text {
    font-size: clamp(2.6rem, 15vw, 5.8rem);
  }

  .stage-services {
    padding: 92px 24px 28px;
  }

  .services-head {
    margin-bottom: 26px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    min-height: auto;
    padding: 22px 18px;
  }

  .contacts-actions {
    width: 100%;
  }

  .contact-btn {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro {
    display: none;
  }

  .logo,
  .site-content,
  .split-background,
  .split-half,
  .content-stage,
  .about-label-row,
  .about-block,
  .projects-carousel-track,
  .about-cta-arrow,
  .contact-btn,
  .site-header {
    animation: none !important;
    transition: none !important;
  }

  body {
    overflow: auto;
  }

  .typing-text.is-typing {
    animation: none;
    border-right: 0;
    padding-right: 0;
  }

  .scroll-hint-arrow {
    animation: none;
  }

  .projects-arrow {
    animation: none;
  }

  .services-head,
  .service-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
