@font-face {
  font-family: "Basset Bodoni";
  src: url("../fonts/bodoni-moda-logo.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Basset Pixel";
  src: url("../fonts/pixelify-sans-sito.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Basset Oi";
  src: url("../fonts/oi-social.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Basset Space";
  src: url("../fonts/space-grotesk-strategia.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Basset Pacifico";
  src: url("../fonts/pacifico-stampa.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f7f6ef;
  --ink: #050505;
  --inverse: #f7f6ef;
  --muted: #5f5d55;
  --soft: #ecebe3;
  --line: rgba(5, 5, 5, 0.24);
  --line-strong: rgba(5, 5, 5, 0.72);
  --header-height: 76px;
  --page-pad: clamp(18px, 4vw, 72px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  text-rendering: geometricPrecision;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--page-pad);
  color: var(--ink);
  background: rgba(247, 246, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-on-hero {
  color: var(--inverse);
  background: rgba(5, 5, 5, 0);
  border-color: rgba(247, 246, 239, 0.18);
  backdrop-filter: none;
}

.site-header__brand,
.site-nav a,
.project-header-link,
.site-footer a {
  text-decoration: none;
}

/* --- NUOVO LOGO DELA GOTHIC ONE
.site-header__brand {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1;
}*/

.site-header__brand {
  position: relative;
  display: inline-block;
  width: clamp(92px, 10vw, 150px);
  height: clamp(20px, 2.2vw, 34px);
  line-height: 1;
}

.site-header__logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 220ms ease;
}

.site-header__logo--dark {
  opacity: 1;
}

.site-header__logo--light {
  opacity: 0;
}

.site-header.is-on-hero .site-header__logo--dark {
  opacity: 0;
}

.site-header.is-on-hero .site-header__logo--light {
  opacity: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  flex-wrap: wrap;
  text-transform: uppercase;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 650;
}

.site-nav a,
.project-header-link,
.site-footer a {
  transition: opacity 160ms ease;
}

.site-nav a:hover,
.project-header-link:hover,
.site-footer a:hover {
  opacity: 0.58;
}

/* --- HERO SECTION CON IMMAGINE --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background-color: #050e14;
  /* Percorso calcolato considerando styles.css in assets/css/ */
  background-image: url("../../Bassets.jpg"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--inverse);
  padding: calc(var(--header-height) + 40px) var(--page-pad) clamp(34px, 6vw, 72px);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: min(1220px, 100%);
}

.hero__label,
.pill,
.filter-button,
.section-kicker {
  letter-spacing: 0;
}

.hero__label {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 clamp(20px, 3vw, 36px);
  padding: 7px 12px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: clamp(12px, 1.1vw, 15px);
  line-height: 1;
}

.hero__claim {
  max-width: 980px;
  margin: 0;
  font-size: clamp(28px, 4.9vw, 76px);
  font-weight: 300;
  line-height: 0.96;
}

.hero__claim-line {
  display: block;
  max-width: 17ch;
}

.hero__dynamic {
  display: inline-block;
  width: fit-content;
  margin-top: clamp(10px, 2vw, 22px);
  background: var(--word-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: clamp(36px, 6.5vw, 92px); 
  font-weight: 700;
  line-height: 1.3;
  padding-bottom: 0.3em;
  padding-right: 0.1em;
  margin-bottom: -0.3em;
  letter-spacing: 0;
  text-transform: lowercase;
  animation: wordGradient 5s ease-in-out infinite;
  transition: opacity 260ms ease, transform 260ms var(--ease);
}

.hero__dynamic.is-changing {
  opacity: 0;
  transform: translateY(0.12em);
}

.hero__dynamic[data-service="logo"] {
  --word-gradient: linear-gradient(105deg, #fff8d7 0%, #ffb24a 42%, #ff513d 100%);
  font-family: "Basset Bodoni", "Inter", "Helvetica Neue", Arial, sans-serif;
}

.hero__dynamic[data-service="sito"] {
  --word-gradient: linear-gradient(105deg, #66fff7 0%, #65a6ff 44%, #b6ff5e 100%);
  font-family: "Basset Pixel", "Inter", "Helvetica Neue", Arial, sans-serif;
}

.hero__dynamic[data-service="social"] {
  --word-gradient: linear-gradient(105deg, #ff4fd8 0%, #ffe35a 45%, #ff7a3d 100%);
  font-family: "Basset Oi", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

.hero__dynamic[data-service="strategia"] {
  --word-gradient: linear-gradient(105deg, #d8ff64 0%, #86ffd7 45%, #7b84ff 100%);
  font-family: "Basset Space", "Inter", "Helvetica Neue", Arial, sans-serif;
}

.hero__dynamic[data-service="stampa"] {
  --word-gradient: linear-gradient(105deg, #ffd48a 0%, #ff6bb5 45%, #8d63ff 100%);
  font-family: "Basset Pacifico", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

@keyframes wordGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.section {
  scroll-margin-top: var(--header-height);
  padding: clamp(78px, 11vw, 168px) var(--page-pad);
  border-bottom: 1px solid var(--line);
}

.section--marquee {
  padding-block: 0;
  padding-inline: 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(160px, 30vw) minmax(0, 830px);
  gap: clamp(28px, 5vw, 96px);
  align-items: start;
}

.section-grid--intro {
  margin-bottom: clamp(44px, 7vw, 100px);
}

.section-kicker {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-copy p,
.section-intro {
  margin: 0;
}

.section-copy p + p {
  margin-top: 1em;
}

.section-copy--large {
  font-size: clamp(20px, 2.1vw, 34px);
  line-height: 1.18;
}

.section-intro {
  max-width: 780px;
  font-size: clamp(24px, 3.8vw, 58px);
  line-height: 1.02;
  font-weight: 520;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee span {
  flex: 0 0 auto;
  padding: 20px 28px 24px 0;
  font-size: clamp(34px, 7vw, 104px);
  line-height: 0.95;
  font-weight: 560;
  white-space: nowrap;
}

.marquee--contact .marquee__track {
  animation-duration: 28s;
}

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

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

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

.service-button {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: clamp(88px, 11vw, 148px);
  padding: 20px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.service-button__title {
  font-size: clamp(19px, 3.2vw, 52px);
  line-height: 0.96;
  font-weight: 560;
}

.service-button__icon {
  width: clamp(34px, 5vw, 70px);
  height: clamp(34px, 5vw, 70px);
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: clamp(24px, 4vw, 52px);
  line-height: 1;
  transition: transform 260ms var(--ease);
}

.service-button__icon {
  position: relative;
  flex: 0 0 auto;
  font-size: 0; /* nasconde il + testuale senza toccare l'HTML */
}

.service-button__icon::before,
.service-button__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42%;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transform-origin: center;
  pointer-events: none;
}

.service-button__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-item.is-open .service-button__icon {
  transform: rotate(45deg);
}

.service-item.is-open .service-button__icon {
  transform: rotate(45deg);
}

.service-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 420ms var(--ease);
}

.service-item.is-open .service-panel {
  grid-template-rows: 1fr;
}

.service-panel__inner {
  overflow: hidden;
}

.service-description {
  max-width: 850px;
  margin: 0 0 clamp(30px, 5vw, 64px) min(30vw, 430px);
  color: var(--muted);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.25;
}

.filters {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(28px, 5vw, 64px);
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.works-section {
  padding-inline: 0;
}

.works-section > .section-grid,
.works-section > .filters {
  margin-inline: var(--page-pad);
}

.filter-button,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 1px solid currentColor;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1;
}

.filter-button {
  flex: 0 0 auto;
  padding: 9px 13px 10px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.filter-button.is-active {
  background: var(--ink);
  color: var(--inverse);
}

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

.project-empty {
  margin: 0;
  padding: 36px 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 26px);
}

.project-row {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  transition: color 240ms ease, border-color 240ms ease;
}

.project-row[hidden] {
  display: none;
}

.project-row::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.32) 48%, rgba(5, 5, 5, 0.5));
  opacity: 0;
  transition: opacity 300ms ease;
}

.project-row__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--soft);
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 360ms ease, transform 760ms var(--ease);
}

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

.project-row__media.is-placeholder img {
  display: none;
}

.project-row__media-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--page-pad);
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.12) 25%, transparent 25%) 0 0 / 24px 24px,
    linear-gradient(90deg, #1a1a1a, #4c4a43);
  color: rgba(247, 246, 239, 0.18);
}

.project-row__media.is-placeholder .project-row__media-placeholder {
  display: flex;
}

.project-row__media-placeholder span {
  max-width: 12ch;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(54px, 12vw, 190px);
  font-weight: 560;
  line-height: 0.86;
}

.project-row__summary {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: clamp(102px, 12vw, 162px);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(24px, 6vw, 120px);
  padding: 18px var(--page-pad);
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, min-height 360ms var(--ease);
}

.project-row:hover,
.project-row.is-open {
  color: var(--inverse);
  border-color: rgba(247, 246, 239, 0.32);
}

.project-row:hover::after,
.project-row.is-open::after,
.project-row:hover .project-row__media,
.project-row.is-open .project-row__media {
  opacity: 1;
}

.project-row:hover .project-row__media,
.project-row.is-open .project-row__media {
  transform: scale(1);
}

.project-row:hover .pill,
.project-row.is-open .pill {
  background: rgba(5, 5, 5, 0.24);
}

.project-row__title {
  min-width: 0;
  overflow-wrap: anywhere;
  text-transform: uppercase;
  font-size: clamp(19px, 3.2vw, 52px);
  font-weight: 560;
  line-height: 0.92;
}

.project-row__labels,
.label-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project-row__labels {
  justify-content: flex-end;
  justify-self: end;
  max-width: 760px;
}

.pill {
  padding: 4px 8px 5px;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 560;
}

.arrow-link {
  font-size: clamp(42px, 5vw, 82px);
  line-height: 0.8;
  transition: transform 260ms var(--ease);
}

.project-row__panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows 460ms var(--ease);
}

.project-row:hover .project-row__panel,
.project-row.is-open .project-row__panel {
  grid-template-rows: 1fr;
  visibility: visible;
}

.project-row__panel-inner {
  overflow: hidden;
}

.project-row__expanded {
  min-height: clamp(180px, 23vw, 350px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 var(--page-pad) clamp(26px, 4vw, 58px);
}

.cover-frame {
  position: relative;
  min-height: 260px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft);
}

.cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.cover-frame.is-placeholder img {
  display: none;
}

.cover-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.06) 25%, transparent 25%) 0 0 / 22px 22px,
    var(--soft);
}

.cover-frame.is-placeholder .cover-placeholder {
  display: grid;
}

.cover-placeholder__title {
  max-width: 10ch;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(36px, 7vw, 110px);
  font-weight: 560;
  line-height: 0.9;
}

.project-row__content {
  max-width: min(700px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(18px, 3vw, 34px);
}

.project-row__content p {
  margin: 0;
  color: currentColor;
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.24;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  font-weight: 650;
}

.text-button:hover {
  opacity: 0.58;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  margin-top: clamp(40px, 6vw, 76px);
}

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

.form-field--wide,
.form-actions {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 0 12px;
}

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

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 38px;
}

.form-status {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px var(--page-pad);
  font-size: 14px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.project-page {
  --header-height: 74px;
}

.project-page .site-header {
  position: fixed;
}

.project-header-link {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 650;
  text-transform: uppercase;
}

.project-main {
  padding-top: var(--header-height);
}

.project-hero {
  padding: clamp(72px, 10vw, 142px) var(--page-pad) clamp(42px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
}

.project-hero__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
}

.project-hero h1 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(54px, 10.8vw, 168px);
  font-weight: 560;
  line-height: 0.88;
  overflow-wrap: anywhere;
}

.project-hero__aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-hero__aside p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.22;
}

.project-cover-section {
  padding: var(--page-pad);
  border-bottom: 1px solid var(--line);
}

.project-cover-section .cover-frame {
  min-height: 420px;
  aspect-ratio: 16 / 7;
}

.project-info {
  padding: clamp(68px, 10vw, 148px) var(--page-pad);
  border-bottom: 1px solid var(--line);
}

.project-info__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 104px);
}

.project-meta {
  display: grid;
  gap: 24px;
  align-content: start;
}

.project-meta__item {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.project-meta__label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.project-meta__value {
  margin: 0;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.18;
}

.project-description {
  display: grid;
  gap: clamp(36px, 6vw, 84px);
}

.project-description h2 {
  margin: 0 0 18px;
  font-size: 13px;
  text-transform: uppercase;
}

.project-description p {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 48px);
  line-height: 1.08;
}

.scope-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.project-nav a {
  min-height: clamp(150px, 20vw, 270px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 4vw, 56px) var(--page-pad);
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: background 180ms ease;
}

.project-nav a:last-child {
  border-right: 0;
}

.project-nav a:hover {
  background: rgba(5, 5, 5, 0.035);
}

.project-nav__label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.project-nav__title {
  text-transform: uppercase;
  font-size: clamp(30px, 4.8vw, 78px);
  font-weight: 560;
  line-height: 0.92;
  overflow-wrap: anywhere;
}

.not-found {
  min-height: 70svh;
  display: grid;
  place-items: center;
  padding: var(--page-pad);
  text-align: center;
}

.not-found h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 8vw, 108px);
  line-height: 0.94;
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }
  .section-grid,
  .section-grid--intro,
  .project-info__grid,
  .project-hero__top {
    grid-template-columns: 1fr;
  }
  .section-kicker {
    position: static;
  }
  .service-description {
    margin-left: 0;
  }
  .project-row__summary {
    grid-template-columns: minmax(0, 0.72fr) minmax(220px, 1fr);
  }
  .project-row__labels {
    grid-column: auto;
  }
  .project-row__expanded {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  :root {
    --page-pad: 18px;
    --header-height: 72px;
  }
  .site-header {
    align-items: center;
    justify-content: center;
    min-height: var(--header-height);
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .site-header__brand {
    width: clamp(184px, 44vw, 300px);
    height: clamp(40px, 9.6vw, 68px);
    line-height: 1;
  }
  .site-header__logo {
    object-position: center;
  }
  .site-nav {
    display: none;
  }
  .hero {
    padding-top: calc(var(--header-height) + 28px);
  }
  .hero__claim {
    max-width: 11.5ch;
  }
  .section {
    padding-block: 72px;
  }
  .section--marquee {
    padding-block: 0;
  }
  .marquee span {
    padding-block: 16px 18px;
  }
  .service-button {
    min-height: 92px;
  }
  .service-button__title {
    font-size: clamp(24px, 7vw, 36px);
  }
  .project-row__summary {
    grid-template-columns: 1fr;
    min-height: 118px;
    padding: 20px var(--page-pad);
  }
  .project-row__title {
    font-size: clamp(24px, 7vw, 36px);
  }
  .project-row__labels {
    justify-self: start;
    justify-content: flex-start;
    max-width: 100%;
  }
  .project-row__expanded {
    min-height: 220px;
    padding: 0 var(--page-pad) 24px;
  }
  .cover-frame,
  .project-cover-section .cover-frame {
    min-height: 240px;
    aspect-ratio: 4 / 3;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .form-actions,
  .site-footer,
  .project-nav {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .form-actions {
    align-items: flex-start;
  }
  .project-nav a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .project-nav a:last-child {
    border-bottom: 0;
  }
}

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