/*
 * Inicial — production overrides
 * Loaded after webflow CSS. Centralizes:
 *  - consent banner
 *  - skip-to-content link
 *  - smooth work-card image cycling (replaces display: none/block)
 *  - reduced-motion respect
 *  - scrollbar hide (fixes malformed inline rule)
 */

/* ---------- Scrollbar (replaces broken inline rule) ---------- */
html {
  overflow-x: hidden;
  overflow-y: scroll;
}
::-webkit-scrollbar {
  width: 0;
  background: transparent;
}
* {
  scrollbar-width: none;
}

/* ---------- Skip to content ---------- */
.skip-link {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -120%);
  z-index: 100000;
  background: #FAF8F3;
  color: #111111;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 220ms cubic-bezier(.22, 1, .36, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .35);
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translate(-50%, 1rem);
  outline: 2px solid #F7FF4A;
  outline-offset: 2px;
}

/* ---------- Smooth work-card image cycling ---------- */
.work-card-image__wrapper .work-card-img {
  opacity: 0;
  transition: opacity 420ms cubic-bezier(.22, 1, .36, 1);
  will-change: opacity;
}
.work-card-image__wrapper .work-card-img.is-active,
.work-card-image__wrapper .work-card-img._1 {
  opacity: 1;
}
.work-card-image__wrapper .work-card-img.is-active {
  opacity: 1;
}
.work-card-image__wrapper.is-cycling .work-card-img._1:not(.is-active) {
  opacity: 0;
}

/* ---------- Consent banner ---------- */
.cookie-pop-up {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.consent-banner {
  position: fixed;
  z-index: 99998;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 44rem;
  margin: 0 auto;
  background: #111111;
  color: #FAF8F3;
  border: 1px solid rgba(250, 248, 243, .14);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .5);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 280ms ease, transform 320ms cubic-bezier(.22, 1, .36, 1);
  font-family: inherit;
}
.consent-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.consent-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: center;
}
.consent-banner__copy {
  min-width: 0;
}
.consent-banner__title {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(250, 248, 243, .58);
  margin: 0 0 .35rem 0;
}
.consent-banner__body {
  font-size: .92rem;
  line-height: 1.45;
  margin: 0;
  color: rgba(250, 248, 243, .92);
}
.consent-banner__link {
  color: #FAF8F3;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(250, 248, 243, .35);
  transition: text-decoration-color .2s ease;
}
.consent-banner__link:hover {
  text-decoration-color: #F7FF4A;
}
.consent-banner__actions {
  display: flex;
  gap: .55rem;
  flex-shrink: 0;
}
.consent-banner__btn {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(250, 248, 243, .35);
  color: #FAF8F3;
  font: inherit;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: .65rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.consent-banner__btn:hover { border-color: #FAF8F3; }
.consent-banner__btn:focus-visible {
  outline: 2px solid #F7FF4A;
  outline-offset: 2px;
}
.consent-banner__btn--solid {
  background: #FAF8F3;
  color: #111111;
  border-color: #FAF8F3;
}
.consent-banner__btn--solid:hover {
  background: #F7FF4A;
  border-color: #F7FF4A;
}

@media (max-width: 640px) {
  .consent-banner__inner {
    grid-template-columns: 1fr;
    gap: .9rem;
  }
  .consent-banner__actions {
    width: 100%;
  }
  .consent-banner__btn {
    flex: 1 1 0;
    text-align: center;
  }
}

/* ---------- Reduced motion ----------
 * Applies WCAG 2.3.3 — kills decorative motion when the user opts out.
 * JS layers (cursor, image cycling, GSAP timelines) check the same media
 * query and bail early; this is the CSS safety net.
 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .custom-cursor { display: none !important; }
  body.has-custom-cursor,
  body.has-custom-cursor * {
    cursor: auto !important;
  }
  [text-split],
  [letters-slide-up-h1],
  [letters-slide-up],
  [scrub-each-word] {
    opacity: 1 !important;
  }
  [text-split] .word,
  [text-split] .char {
    transform: none !important;
    opacity: 1 !important;
  }
  .transition,
  .transition-trigger,
  .transition-bg,
  .transition-lottie-wrapper { display: none !important; }
}

/* ---------- High-contrast focus ring (a11y) ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid #F7FF4A;
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Logo dimensions safety ---------- */
.inicial-logo {
  display: block;
  width: auto;
  height: 1.3rem;
  max-width: 100%;
}


/* ============================================================
 * MODERN ENHANCEMENTS
 * Below this line: motion polish + new content sections.
 * ============================================================ */

/* ---------- Magnetic CTAs ----------
 * No layout overrides — Webflow's .button uses display:flex internally with
 * the arrow as a sibling. We only animate transform via JS.
 */

/* ---------- Cursor: keep mix-blend-mode: difference everywhere ----------
 * (Section tinting removed at user request — was breaking the difference
 * blend that DESIGN.md specifies as the default cursor mode.)
 */

/* ---------- Header link micro underline (replaces .line) ---------- */
.header-link .line,
.footer--link .line {
  height: 1px;
  background: currentColor;
  width: 0;
  transition: width 320ms cubic-bezier(.22, 1, .36, 1);
  margin-top: 2px;
  opacity: .7;
}
.header-link:hover .line,
.footer--link:hover .line,
.header-link a:focus-visible + .line,
.footer--link a:focus-visible + .line {
  width: 100%;
}

/* ---------- Theme-specific contrast fixes ---------- */
:root[data-theme="light"] .header__nav > .button,
:root[data-theme="light"] .button.header {
  border-color: currentColor;
}

:root[data-theme="light"] .button.black {
  color: #111;
  border-color: rgba(17, 17, 17, .72);
}

:root[data-theme="light"] .button.black .button__text {
  color: #111;
}

:root[data-theme="light"] .button.black .button__arrow {
  filter: none;
}

:root[data-theme="light"] .logo-gradient {
  background-image: linear-gradient(to right, #faf8f3, rgba(250, 248, 243, 0) 62%);
}

:root[data-theme="light"] .logo-gradient.right {
  background-image: linear-gradient(to left, #faf8f3, rgba(250, 248, 243, 0) 62%);
}

:root[data-theme="light"] .section--agency-proof {
  background-color: #faf8f3;
  color: #111;
}

:root[data-theme="light"] .agency-proof__wrapper {
  border-top-color: rgba(17, 17, 17, .16);
}

:root[data-theme="light"] .agency-proof__lead {
  color: rgba(17, 17, 17, .72);
}

:root[data-theme="light"] .agency-proof__grid {
  background-color: rgba(17, 17, 17, .12);
  border-color: rgba(17, 17, 17, .12);
}

:root[data-theme="light"] .agency-proof__card {
  background-color: #f3f0e9;
  color: #111;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, .03);
}

:root[data-theme="light"] .agency-proof__card:before {
  background: radial-gradient(circle at var(--proof-x) var(--proof-y), rgba(17, 17, 17, .08), rgba(17, 17, 17, 0) 36%);
}

:root[data-theme="light"] .agency-proof__card:hover {
  background-color: #ebe7dc;
}

:root[data-theme="light"] .agency-proof__number {
  color: rgba(17, 17, 17, .42);
}

:root[data-theme="light"] .agency-proof__card h5 {
  color: #111;
}

:root[data-theme="light"] .agency-proof__card p:last-child {
  color: rgba(17, 17, 17, .68);
}

:root[data-theme="light"] .agency-proof__marquee {
  border-bottom-color: rgba(17, 17, 17, .14);
}

:root[data-theme="light"] .agency-proof__marquee-track span {
  color: rgba(17, 17, 17, .46);
}

.inicial-form {
  grid-column-gap: 3.75rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.contact-redesign__form-section {
  border-top-color: rgba(250, 248, 243, .22);
}

.contact--form-wrapper,
.contact-form {
  width: 100%;
}

.form-field-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.form-label {
  color: rgba(250, 248, 243, .58);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
  line-height: 1;
}

.inicial-form .form-row {
  gap: 1rem;
}

.inicial-form .form-field {
  min-height: 4.2rem;
  color: #faf8f3;
  text-transform: none;
  background-color: rgba(250, 248, 243, .075);
  border: 1px solid rgba(250, 248, 243, .18);
  border-radius: .5rem;
  padding: 1rem 1.1rem;
  font-size: 1.05rem;
  line-height: 1.25;
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.inicial-form .form-field:hover {
  background-color: rgba(250, 248, 243, .105);
  border-color: rgba(250, 248, 243, .32);
}

.inicial-form .form-field:focus,
.inicial-form .form-field:focus-visible {
  color: #faf8f3;
  background-color: rgba(250, 248, 243, .13);
  border-color: rgba(250, 248, 243, .82);
  outline: none;
  box-shadow: 0 0 0 3px rgba(250, 248, 243, .1);
}

.inicial-form .form-field::placeholder {
  color: rgba(250, 248, 243, .42);
}

.inicial-form .form-field.form-message {
  min-height: 11rem;
  resize: vertical;
  padding-bottom: 1rem;
}

.inicial-form .form-field-wrap.is-message {
  width: 100%;
}

.inicial-form .form--submit-button-wrapper {
  margin-top: 1.1rem;
}

button.button.form {
  color: #111;
  background-color: #faf8f3;
  border: 1px solid #faf8f3;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
  min-height: 3.75rem;
  padding: 1rem 1.35rem;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

button.button.form .button__text {
  color: currentColor;
}

button.button.form .button__arrow {
  filter: invert(1);
}

button.button.form:hover {
  color: #faf8f3;
  background-color: transparent;
  transform: translateY(-2px);
}

button.button.form:hover .button__arrow {
  filter: none;
}

button.button.form:focus-visible {
  outline: 2px solid rgba(250, 248, 243, .72);
  outline-offset: 4px;
}

.contact-form .form__sucess-wrapper,
.contact-form .form__error-wrapper {
  display: none;
}

:root[data-theme="light"] .contact-redesign__form-section {
  border-top-color: rgba(17, 17, 17, .16);
}

:root[data-theme="light"] .form-label {
  color: rgba(17, 17, 17, .58);
}

:root[data-theme="light"] .inicial-form .form-field {
  color: #111;
  background-color: rgba(17, 17, 17, .055);
  border-color: rgba(17, 17, 17, .16);
}

:root[data-theme="light"] .inicial-form .form-field:hover {
  background-color: rgba(17, 17, 17, .075);
  border-color: rgba(17, 17, 17, .3);
}

:root[data-theme="light"] .inicial-form .form-field:focus,
:root[data-theme="light"] .inicial-form .form-field:focus-visible {
  color: #111;
  background-color: rgba(17, 17, 17, .09);
  border-color: rgba(17, 17, 17, .78);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, .08);
}

:root[data-theme="light"] .inicial-form .form-field::placeholder {
  color: rgba(17, 17, 17, .5);
}

:root[data-theme="light"] button.button.form {
  color: #faf8f3;
  background-color: #111;
  border-color: #111;
}

:root[data-theme="light"] button.button.form .button__arrow {
  filter: none;
}

:root[data-theme="light"] button.button.form:hover {
  color: #111;
  background-color: transparent;
}

:root[data-theme="light"] button.button.form:hover .button__arrow {
  filter: invert(1);
}

:root[data-theme="light"] button.button.form:focus-visible {
  outline-color: rgba(17, 17, 17, .72);
}

:root[data-theme="light"] body.project-next-is-swapping,
:root[data-theme="light"] .next-project-section,
:root[data-theme="light"] .next-project-section.is-loading,
:root[data-theme="light"] .project-legal-footer {
  color: #111;
  background-color: #faf8f3;
}

:root[data-theme="light"] .next-project__eyebrow,
:root[data-theme="light"] .next-project__progress-label {
  color: rgba(17, 17, 17, .54);
}

:root[data-theme="light"] .next-project__title {
  color: #111;
}

:root[data-theme="light"] .next-project__sector {
  color: rgba(17, 17, 17, .62);
}

:root[data-theme="light"] .next-project__image-wrap {
  background-color: #ebe7dc;
}

:root[data-theme="light"] .next-project__image-overlay {
  background: linear-gradient(180deg, rgba(250, 248, 243, .04), rgba(250, 248, 243, .12));
}

:root[data-theme="light"] .next-project__progress-track {
  background-color: rgba(17, 17, 17, .16);
}

:root[data-theme="light"] .next-project__progress-bar {
  background-color: #111;
}

:root[data-theme="light"] .project-legal-footer {
  color: rgba(17, 17, 17, .52);
}

:root[data-theme="light"] .project-legal-footer__inner {
  border-top-color: rgba(17, 17, 17, .16);
}

:root[data-theme="light"] .project-legal-footer a:hover,
:root[data-theme="light"] .project-legal-footer a:focus-visible {
  color: #111;
}

@media screen and (max-width: 767px) {
  .inicial-form {
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
  }

  .contact--form-wrapper {
    padding-top: 1.4rem;
  }

  .inicial-form .form-row {
    gap: 1rem;
  }

  .inicial-form .form-field {
    min-height: 3.85rem;
    font-size: 1rem;
  }
}

.work-card-wrapper,
.work-card-wrapper:hover,
.work-card-wrapper:focus-visible,
.work-card-text-wrapper,
.work-card-text-wrapper h5,
.work-card-text-wrapper p,
.work-card-title,
.work-card-paragraph {
  color: #fff !important;
}

@media (hover: hover) and (pointer: fine) {
  .custom-cursor.is-project,
  body:has(a.work-card-wrapper:hover) .custom-cursor {
    color: #111 !important;
    background-color: #f7ff4a;
    border-color: #f7ff4a;
    mix-blend-mode: normal;
  }

  .custom-cursor.is-project .custom-cursor__label,
  body:has(a.work-card-wrapper:hover) .custom-cursor .custom-cursor__label {
    color: #111 !important;
  }
}

/* ============================================================
 * Section: STATS / by-the-numbers
 * ============================================================ */
.section--stats {
  background: #111111;
  padding: 5rem 0 4rem;
  border-top: 1px solid rgba(250, 248, 243, .08);
  border-bottom: 1px solid rgba(250, 248, 243, .08);
}
.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  align-items: end;
}
.stats__item {
  border-left: 1px solid rgba(250, 248, 243, .14);
  padding-left: 1.25rem;
}
.stats__number {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 0.95;
  font-weight: 500;
  color: #FAF8F3;
  letter-spacing: -0.01em;
  margin: 0 0 .65rem;
  font-feature-settings: "tnum" 1;
}
.stats__label {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  color: rgba(250, 248, 243, .55);
  margin: 0;
}
@media (max-width: 768px) {
  .stats__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

/* ============================================================
 * Section: PROCESS — editorial split layout
 * Sticky title left, big-numeral rows right.
 * ============================================================ */
.section--process {
  background: #FAF8F3;
  color: #111111;
  padding: 8rem 0 7rem;
}
.section--process .process__title,
.section--process .process__row-title {
  color: #111111;
}
.process__layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}
.process__sticky {
  position: sticky;
  top: 7rem;
  align-self: start;
}
.process__eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  color: #8D8B84;
  margin: 0 0 1.6rem;
}
.process__title {
  margin: 0 0 1.8rem;
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 500;
}
.process__lead {
  font-size: 1rem;
  line-height: 1.55;
  color: #4D4B47;
  max-width: 28rem;
  margin: 0;
}

.process__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(17, 17, 17, .12);
}
.process__row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  gap: 2.5rem;
  align-items: baseline;
  padding: 2.4rem 0 2.4rem;
  border-bottom: 1px solid rgba(17, 17, 17, .12);
  transition: padding-left 480ms cubic-bezier(.22, 1, .36, 1),
              opacity 420ms ease;
  opacity: .55;
}
.process__row.is-active {
  opacity: 1;
  padding-left: 1rem;
}
.process__row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: #F7FF4A;
  transform: translateY(-50%);
  transition: width 480ms cubic-bezier(.22, 1, .36, 1);
}
.process__row.is-active::before {
  width: .55rem;
}
.process__numeral {
  display: inline-block;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(17, 17, 17, .14);
  font-feature-settings: "tnum" 1;
  transition: color 420ms ease;
  min-width: 4ch;
}
.process__row.is-active .process__numeral {
  color: #111111;
}
.process__row-body {
  min-width: 0;
}
.process__row-title {
  margin: 0 0 .35rem;
  font-size: clamp(1.4rem, 1.8vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.process__row-text {
  margin: 0;
  color: #4D4B47;
  line-height: 1.5;
  max-width: 32rem;
  font-size: .98rem;
}
.process__row-tag {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8D8B84;
  white-space: nowrap;
  padding-top: .25rem;
}

@media (max-width: 992px) {
  .process__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .process__sticky {
    position: static;
  }
}
@media (max-width: 640px) {
  .section--process { padding: 5rem 0 4.5rem; }
  .process__row {
    grid-template-columns: auto 1fr;
    gap: 1.25rem 1.5rem;
    padding: 1.8rem 0;
  }
  .process__row-tag {
    grid-column: 1 / -1;
    padding-top: 0;
  }
}

/* ============================================================
 * Section: TESTIMONIALS
 * ============================================================ */
.section--testimonials {
  background: #111111;
  padding: 7rem 0 7rem;
  position: relative;
}
.testimonials__rotator {
  position: relative;
  min-height: 18rem;
  display: grid;
  align-items: center;
}
.testimonials__quote {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 2.5rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}
.testimonials__quote.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.testimonials__text {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.25;
  color: #FAF8F3;
  letter-spacing: -0.005em;
  margin: 0;
  max-width: 60rem;
  font-weight: 400;
}
.testimonials__text:before {
  content: "“";
  display: inline-block;
  margin-right: .12em;
  color: #F7FF4A;
}
.testimonials__text:after {
  content: "”";
  display: inline-block;
  margin-left: .12em;
  color: #F7FF4A;
}
.testimonials__attribution {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(250, 248, 243, .58);
}
.testimonials__attribution strong {
  color: #FAF8F3;
  font-weight: 500;
}
.testimonials__divider {
  width: 1.5rem;
  height: 1px;
  background: rgba(250, 248, 243, .35);
}
.testimonials__nav {
  margin-top: 3rem;
  display: flex;
  gap: .55rem;
}
.testimonials__dot {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(250, 248, 243, .35);
  width: 2.4rem;
  height: 1px;
  padding: 0;
  cursor: pointer;
  transition: background-color .25s ease, border-color .25s ease, height .25s ease;
}
.testimonials__dot:hover { background: rgba(250, 248, 243, .55); }
.testimonials__dot[aria-selected="true"] {
  background: #F7FF4A;
  border-color: #F7FF4A;
}
.testimonials__eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  color: rgba(250, 248, 243, .55);
  margin: 0 0 2.5rem;
}

/* ============================================================
 * Section: AWARDS / FEATURED-IN strip
 * ============================================================ */
.section--awards {
  background: #FAF8F3;
  color: #111111;
  padding: 4rem 0;
  border-top: 1px solid rgba(17, 17, 17, .06);
  border-bottom: 1px solid rgba(17, 17, 17, .06);
}
.awards__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}
.awards__label {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  color: #8D8B84;
  margin: 0;
  white-space: nowrap;
}
.awards__marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.awards__track {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  animation: awards-marquee 40s linear infinite;
  width: max-content;
  white-space: nowrap;
}
.awards__track.is-paused { animation-play-state: paused; }
.awards__item {
  font-size: 1.05rem;
  letter-spacing: .02em;
  color: #111111;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.awards__item:after {
  content: "";
  width: .35rem;
  height: .35rem;
  background: #111111;
  border-radius: 999px;
  opacity: .35;
}
@keyframes awards-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .awards__row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .awards__track { animation: none; }
}


/* ============================================================
 * 404 — editorial not-found
 * ============================================================ */
.section--404.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #111111;
  color: #FAF8F3;
  padding: 8rem 0 4rem;
}
.not-found__inner {
  max-width: 56rem;
}
.not-found__eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  color: rgba(250, 248, 243, .55);
  margin: 0 0 1.4rem;
}
.not-found__title {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0 0 1.4rem;
}
.not-found__lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(250, 248, 243, .72);
  max-width: 36rem;
  margin: 0 0 3rem;
}
.not-found__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  border-top: 1px solid rgba(250, 248, 243, .12);
}
.not-found__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(250, 248, 243, .12);
  text-decoration: none;
  color: #FAF8F3;
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: padding-left .32s cubic-bezier(.22, 1, .36, 1), color .25s ease;
}
.not-found__link:hover {
  padding-left: .8rem;
  color: #F7FF4A;
}
.not-found__arrow {
  display: inline-block;
  transform: translateX(0);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
  opacity: .6;
}
.not-found__link:hover .not-found__arrow {
  transform: translateX(.4rem);
  opacity: 1;
  color: #F7FF4A;
}
@media (max-width: 640px) {
  .not-found__link { font-size: 1.2rem; padding: 1.1rem 0; }
}
