:root {
  --carbon: #040301;
  --carbon-soft: #0d0b09;
  --bone: #f0ece4;
  --bone-muted: #bdb5a9;
  --ember: #ef5a24;
  --ember-deep: #8d2d13;
  --line: rgba(240, 236, 228, 0.16);
  --sans: "Hanken Grotesk", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --shell: min(100% - 48px, 1440px);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
  background: var(--carbon);
}

body {
  margin: 0;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  background: var(--carbon);
  color: var(--bone);
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1rem + 0.2vw, 1.18rem);
  line-height: 1.55;
}

/* Blocos editoriais seguem uma mesma malha de leitura. Títulos, navegação,
   botões e pequenos rótulos permanecem alinhados à esquerda. */
.hero-copy p,
.statement-note,
.territory > div > p:last-child,
.service-panel-intro,
.about-copy > p,
.contact-intro,
.legal-content p,
.legal-notice p,
.not-found-main > p:not(.section-index) {
  overflow-wrap: normal;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  word-break: normal;
  -webkit-hyphens: none;
  hyphens: none;
}

main > section,
section[id],
article[id] {
  scroll-margin-top: 92px;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.thumos-cursor {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  display: none;
  width: 44px;
  height: 40px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 120ms ease;
  contain: strict;
  isolation: isolate;
  will-change: transform, opacity;
}

.thumos-cursor img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: 72% 43%;
  backface-visibility: hidden;
}

.thumos-cursor-idle {
  clip-path: polygon(86% 0, 95% 0, 96% 6%, 75% 27%, 83% 35%, 84% 39%, 81% 43%, 74% 49%, 69% 49%, 50% 29%, 50% 23%, 58% 14%, 62% 13%, 69% 21%);
  transform: rotate(90deg) scale(0.86);
  transition: opacity 80ms ease, transform 150ms cubic-bezier(0.22, 1, 0.36, 1);
}

.thumos-cursor-strike {
  clip-path: inset(0 0 51% 0);
  opacity: 0;
  transform: translate3d(0, 2px, 0) scale(0.94);
  transition: opacity 70ms ease, transform 150ms cubic-bezier(0.22, 1, 0.36, 1);
}

.thumos-cursor.is-visible {
  opacity: 1;
}

.thumos-cursor.is-pressed .thumos-cursor-idle {
  opacity: 0;
  transform: rotate(90deg) scale(0.82);
}

.thumos-cursor.is-pressed .thumos-cursor-strike {
  opacity: 1;
  transform: translate3d(-1px, 7px, 0) scale(0.9);
}

.thumos-cursor.is-suppressed {
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .thumos-cursor {
    display: block;
  }

  html.has-thumos-cursor,
  html.has-thumos-cursor body,
  html.has-thumos-cursor body * {
    cursor: none !important;
  }

  html.has-thumos-cursor.is-text-cursor,
  html.has-thumos-cursor.is-text-cursor body,
  html.has-thumos-cursor.is-text-cursor body * {
    cursor: text !important;
  }

  html.has-thumos-cursor input:not([type="button"]):not([type="submit"]):not([type="reset"]),
  html.has-thumos-cursor textarea {
    cursor: text !important;
  }

  html.has-thumos-cursor select {
    cursor: default !important;
  }
}

:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--bone);
  color: var(--carbon);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell,
.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  border-color: var(--line);
  background: rgba(6, 5, 3, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-symbol {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-wordmark {
  display: block;
  width: 100px;
  height: auto;
}

.header-center-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  text-decoration: none;
}

.header-center-symbol {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.header-center-wordmark {
  display: block;
  width: clamp(100px, 8vw, 120px);
  height: auto;
}

.menu-button {
  justify-self: end;
  display: inline-flex;
  min-width: 72px;
  min-height: 44px;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--bone);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-button span:last-child {
  color: var(--ember);
  font-size: 1.2rem;
  transition: transform 240ms ease;
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.site-nav {
  position: absolute;
  top: 100%;
  right: 24px;
  display: grid;
  min-width: min(360px, calc(100vw - 48px));
  padding: 16px 0;
  border: 1px solid var(--line);
  background: rgba(6, 5, 3, 0.98);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.site-nav a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.site-nav a:last-child {
  border-bottom: 0;
}

.site-nav a[aria-current="true"] {
  color: var(--bone);
}

.site-nav a[aria-current="true"]::before {
  content: "·";
  margin-right: 8px;
  color: var(--ember);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -4;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 50%;
  filter: saturate(0.86) contrast(1.14) brightness(0.69);
  transform: scale(1.025);
  transform-origin: 64% 52%;
  animation: hero-push 15s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.hero-heat {
  display: none;
}

.hero-scrim {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 2, 1, 0.88) 0%, rgba(3, 2, 1, 0.64) 40%, rgba(3, 2, 1, 0.23) 76%, rgba(3, 2, 1, 0.08) 100%),
    linear-gradient(0deg, rgba(3, 2, 1, 0.84) 0%, rgba(3, 2, 1, 0.16) 52%, rgba(3, 2, 1, 0.06) 100%);
  pointer-events: none;
}

.hero.motion-paused .hero-image {
  animation-play-state: paused;
}

@keyframes hero-push {
  from {
    transform: scale(1.025) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.085) translate3d(-0.8%, -0.5%, 0);
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 144px;
  padding-bottom: 96px;
}

.eyebrow,
.section-index,
.territory-kicker {
  margin: 0;
  color: var(--bone-muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-index {
  font-size: 0.814rem;
}

.hero-content > .eyebrow {
  padding-left: 8px;
  font-size: clamp(0.8rem, 0.85vw, 0.9rem);
}

.hero h1 {
  max-width: 1100px;
  margin: 18px 0 64px;
  font-size: clamp(3.8rem, 9.6vw, 9.2rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--ember);
  font-family: var(--serif);
  font-size: 1.12em;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-transform: none;
}

.hero-bottom {
  padding-top: 0;
}

.hero-primary-links {
  display: grid;
  width: 90%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-inline: auto;
}

.hero-primary-link {
  display: flex;
  min-height: clamp(96px, 8vw, 116px);
  align-items: center;
  justify-content: center;
  padding-inline: clamp(16px, 2.2vw, 32px);
  color: var(--bone-muted);
  font: inherit;
  font-size: clamp(1.18rem, 1.72vw, 1.78rem);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.hero-primary-label {
  display: inline-block;
  color: var(--bone);
  font: inherit;
  opacity: 0.58;
  transform: scale(1);
  transition:
    color 320ms ease,
    opacity 320ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-primary-link:hover .hero-primary-label,
.hero-primary-link:focus-visible .hero-primary-label {
  color: #ffffff;
  opacity: 1;
  transform: scale(1.045);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.text-link.accent {
  color: #ff7440;
}

.motion-toggle {
  position: absolute;
  right: 24px;
  bottom: 52px;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: rgba(240, 236, 228, 0.78);
  font: inherit;
  font-size: 0.72rem;
  cursor: pointer;
}

.motion-bars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.motion-bars i {
  display: block;
  width: 2px;
  height: 12px;
  background: var(--ember);
}

.motion-toggle[aria-pressed="true"] .motion-bars i:first-child {
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--ember);
  background: transparent;
}

.motion-toggle[aria-pressed="true"] .motion-bars i:last-child {
  display: none;
}

.section-shell {
  padding-block: clamp(88px, 11vw, 160px);
}

.statement {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 8fr 2fr;
  gap: 24px;
  background: var(--carbon);
  isolation: isolate;
}

.statement::before {
  position: absolute;
  inset-block: 0;
  right: calc(50% - 50vw);
  left: calc(50% - 50vw);
  content: "";
  pointer-events: none;
}

.statement::before {
  z-index: 0;
  background-color: var(--carbon);
  background-image: url("../media/odisseu-fundo-site-marmore-v8.png");
  background-repeat: no-repeat;
  background-position: calc(100% + clamp(144px, 16vw, 288px)) 12%;
  background-size: 108% auto;
  background-blend-mode: normal;
  filter: brightness(0.79) contrast(1.08) saturate(0.72);
  opacity: 0.56;
  transition: opacity 1400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.statement > * {
  position: relative;
  z-index: 2;
}

.statement .section-index {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  transform: translateY(-14px);
}

.statement h2 {
  grid-column: 2;
  grid-row: 1;
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.35rem, 4.85vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.statement h2 em,
.statement-note .note-highlight {
  color: var(--ember);
  -webkit-text-fill-color: var(--ember);
}

.statement h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.accent-period {
  position: relative;
  display: inline-block;
  width: 0.17em;
  color: transparent;
  vertical-align: baseline;
}

.accent-period::after {
  position: absolute;
  right: 0;
  bottom: 0.1em;
  width: 0.13em;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ember);
  content: "";
}

.statement-note {
  grid-column: 3;
  grid-row: 1;
  align-self: end;
  max-width: 28ch;
  margin: 0;
  color: var(--bone-muted);
  font-size: clamp(0.78rem, 0.72rem + 0.18vw, 0.92rem);
  line-height: 1.45;
}

.statement-note strong {
  color: var(--bone);
  font-weight: 600;
}

.statement-note em {
  font-family: inherit;
  font-style: italic;
}

.statement-note .note-highlight {
  font-family: inherit;
  font-style: normal;
  font-weight: 600;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  margin-bottom: 64px;
}

.section-heading h2,
.preview-anchor h2,
#services-title {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

#territories-title,
#projects-title,
#services-title {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 24ch;
  font-size: clamp(2.295rem, 4.05vw, 4.59rem);
  text-align: center;
}

#territories-title,
#projects-title {
  font-size: clamp(2.066rem, 3.645vw, 4.131rem);
}

#territories-title span,
#projects-title span,
#services-title span {
  display: block;
}

#territories-title span + span,
#projects-title span + span,
#services-title span + span {
  margin-top: 0.12em;
}

.js .section-index[data-typewriter] {
  clip-path: inset(0 100% 0 0);
}

.js .section-index[data-typewriter].typed {
  animation: section-index-type 460ms steps(24, end) both;
}

@keyframes section-index-type {
  to {
    clip-path: inset(0 0 0 0);
  }
}

#projects-title em {
  color: var(--ember);
  font-family: var(--serif);
  font-size: 1.12em;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.territory-grid {
  display: grid;
  width: 80.5%;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-inline: auto;
  background: transparent;
}

.territory {
  display: grid;
  min-height: 500px;
  padding: 30px;
  grid-template-rows: 1fr auto;
  gap: 44px;
}

.territory-light {
  position: relative;
  overflow: hidden;
  background: var(--carbon);
  color: var(--bone);
  isolation: isolate;
}

.territory-light::before,
.territory-light::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.territory-light::before {
  z-index: 0;
  background: url("../media/pensador-grego-agencia-v1.png") center right / cover no-repeat;
  opacity: 0.72;
  filter: grayscale(0.3) brightness(0.86) contrast(1.1);
  transform: scale(1.008);
  transform-origin: center right;
  transition: opacity 1100ms ease, filter 1100ms ease, transform 1800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.territory-light::after {
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(6, 5, 3, 0.98) 0%, rgba(6, 5, 3, 0.76) 42%, rgba(6, 5, 3, 0.14) 78%),
    linear-gradient(90deg, rgba(6, 5, 3, 0.92) 0%, rgba(6, 5, 3, 0.48) 54%, rgba(6, 5, 3, 0.12) 100%);
  opacity: 1;
  transition: opacity 1100ms ease;
}

.territory-light > * {
  position: relative;
  z-index: 2;
}

.territory-fire {
  position: relative;
  overflow: hidden;
  background: var(--carbon);
  color: var(--bone);
  isolation: isolate;
}

.territory-fire::before,
.territory-fire::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.territory-fire::before {
  z-index: 0;
  background: url("../media/arqueiro-grego-produtora-v1.png") center right / cover no-repeat;
  opacity: 0.78;
  filter: grayscale(0.28) brightness(0.92) contrast(1.1);
  transform: scale(1.008);
  transform-origin: center right;
  transition: opacity 1100ms ease, filter 1100ms ease, transform 1800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.territory-fire::after {
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(6, 5, 3, 0.98) 0%, rgba(6, 5, 3, 0.76) 42%, rgba(6, 5, 3, 0.12) 78%),
    linear-gradient(90deg, rgba(6, 5, 3, 0.76) 0%, rgba(6, 5, 3, 0.4) 54%, rgba(6, 5, 3, 0.12) 100%);
  opacity: 1;
  transition: opacity 1100ms ease;
}

.territory-fire > * {
  position: relative;
  z-index: 2;
}

.territory > div {
  align-self: end;
}

.territory-kicker {
  color: currentColor;
  font-size: clamp(0.752rem, 0.701rem + 0.17vw, 0.872rem);
  opacity: 0.74;
  transition: color 500ms ease, opacity 500ms ease;
  white-space: nowrap;
}

.territory h3 {
  max-width: 11ch;
  margin: 16px 0 24px;
  font-size: clamp(1.97rem, 3.16vw, 3.93rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.territory p:not(.territory-number, .territory-kicker) {
  max-width: 42ch;
  margin: 0;
  font-size: 86%;
  opacity: 0.78;
}

.territory > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid currentColor;
  padding-top: 16px;
  font-size: 0.95rem;
  text-align: center;
  text-decoration: none;
  transition: color 240ms ease;
}

.forge-mark {
  position: relative;
  display: block;
  width: 34px;
  height: 31px;
  flex: 0 0 auto;
}

.forge-mark img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.forge-mark-base {
  clip-path: inset(50% 0 0 0);
}

.forge-mark-strike {
  clip-path: inset(0);
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .territory > div,
  .territory > a {
    opacity: 0.34;
    transition: color 240ms ease, opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .territory:hover > div,
  .territory:focus-within > div,
  .territory:hover > a,
  .territory:focus-within > a {
    opacity: 1;
  }

  .territory:hover .territory-kicker,
  .territory:focus-within .territory-kicker {
    color: #fff;
    opacity: 1;
  }

  .territory-light:hover::before,
  .territory-light:focus-within::before {
    opacity: 0.88;
    filter: grayscale(0.2) brightness(1.03) contrast(1.08);
    transform: scale(1.022);
  }

  .territory-fire:hover::before,
  .territory-fire:focus-within::before {
    opacity: 0.9;
    filter: grayscale(0.2) brightness(1.04) contrast(1.08);
    transform: scale(1.022);
  }

  .territory:hover::after,
  .territory:focus-within::after {
    opacity: 0.84;
  }

  .territory > a:hover,
  .territory > a:focus-visible {
    color: var(--bone);
  }

  .territory > a:hover .forge-mark-strike,
  .territory > a:focus-visible .forge-mark-strike {
    opacity: 1;
  }
}

.projects-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  margin-bottom: 72px;
}

.project-marquee {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-block: clamp(30px, 4vw, 58px);
  cursor: grab;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  touch-action: pan-y;
  user-select: none;
}

.project-marquee::-webkit-scrollbar {
  display: none;
}

.project-marquee.is-dragging {
  cursor: grabbing;
}

.project-marquee.is-dragging,
.project-marquee.is-dragging * {
  user-select: none;
}

.project-track {
  display: flex;
  width: max-content;
  animation: project-drift-right 54s linear infinite;
  will-change: transform;
}

.project-marquee.is-dragging .project-track {
  animation-play-state: paused;
}

.project-set {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  gap: clamp(48px, 7vw, 116px);
  padding-inline: clamp(28px, 6vw, 96px);
}

.portfolio-card {
  position: relative;
  display: grid;
  width: clamp(170px, 18vw, 250px);
  min-height: clamp(225px, 23vw, 280px);
  padding: 0;
  flex: 0 0 auto;
  grid-template-areas:
    "logo"
    "title"
    "description";
  grid-template-rows: clamp(132px, 13vw, 168px) auto auto;
  align-content: start;
  border: 0;
  background: transparent;
  color: var(--bone);
  outline: none;
  text-align: center;
  text-decoration: none;
}

.portfolio-card:hover,
.portfolio-card:focus-visible {
  z-index: 2;
}

.portfolio-card-logo,
.portfolio-feature-media {
  display: flex;
  width: 100%;
  min-height: 0;
  grid-area: logo;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: translateZ(0) scale(1.06);
}

.portfolio-card-logo {
  gap: 9px;
}

.portfolio-card-featured {
  text-decoration: none;
}

.portfolio-feature-logo {
  display: block;
  width: clamp(122px, 10vw, 152px);
  height: auto;
  border-radius: 50%;
  clip-path: circle(49.2% at 50% 50%);
}

.portfolio-feature-copy {
  display: contents;
}

.portfolio-card-number,
.portfolio-feature-title {
  justify-self: center;
  grid-area: title;
  margin-top: 12px;
  color: var(--bone);
  font-size: clamp(1.14rem, 1.44vw, 1.42rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: none;
}

.portfolio-card-status,
.portfolio-feature-description {
  max-width: 30ch;
  justify-self: center;
  grid-area: description;
  margin-top: 8px;
  color: var(--bone-muted);
  font-size: clamp(0.74rem, 0.86vw, 0.86rem);
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-transform: none;
  text-wrap: balance;
}

.portfolio-card-number,
.portfolio-card-status,
.portfolio-feature-copy > * {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.portfolio-card-logo img {
  display: block;
  height: auto;
}

.portfolio-card-symbol {
  width: 22%;
}

.portfolio-card-wordmark {
  width: 70%;
}

.portfolio-card-featured .portfolio-feature-title {
  margin-top: 18px;
}

@keyframes project-drift-right {
  from {
    transform: translate3d(-33.333333%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.services {
  --services-bottom-space: clamp(48px, 6vw, 84px);
  position: relative;
  overflow: visible;
  padding-bottom: var(--services-bottom-space);
}

.service-statue-layer {
  position: absolute;
  z-index: 0;
  top: var(--service-tab-height);
  bottom: calc(-1 * var(--services-bottom-space));
  left: 50%;
  overflow: hidden;
  width: 100vw;
  background: var(--carbon);
  contain: paint;
  pointer-events: none;
  transform: translate3d(-50%, 0, 0);
}

.service-statue-layer::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(180px, 24vw, 360px);
  background: linear-gradient(
    to bottom,
    rgba(4, 3, 1, 0) 0%,
    rgba(4, 3, 1, 0.22) 26%,
    rgba(4, 3, 1, 0.72) 64%,
    var(--carbon) 100%
  );
  content: "";
  pointer-events: none;
}

.service-statue {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  max-width: none;
  height: var(--service-statue-height);
  backface-visibility: hidden;
  opacity: 0;
  object-fit: contain;
  filter: brightness(0.52);
  mix-blend-mode: lighten;
  transform: translateZ(0) scale(var(--service-statue-scale));
  transform-origin: center top;
  transition: opacity 720ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.service-statue-thinker {
  object-position: right center;
  transform: translateZ(0) scaleX(-1) scale(var(--service-statue-scale));
}

.service-statue-thinker.is-active,
.service-statue-archer.is-active {
  opacity: 0.85;
  transition-duration: 1200ms;
}

.service-statue-archer {
  object-position: right center;
  transform: translateZ(0) scale(var(--service-statue-scale));
}

.service-statue-thinker.is-active {
  transform: translateZ(0) scaleX(-1) scale(var(--service-statue-scale));
}

.service-statue-archer.is-active {
  transform: translateZ(0) scale(var(--service-statue-scale));
}

.services-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  margin-bottom: 80px;
}

.services-heading h2,
.about h2,
.contact h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.services-heading h2 em,
.contact h2 em {
  color: var(--ember);
  font-family: var(--serif);
  font-weight: 400;
}

.about h2 em {
  color: var(--ember);
  font-family: var(--serif);
  font-size: 1.12em;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.service-switcher {
  --service-tab-height: 88px;
  --service-statue-height: clamp(780px, 61vw, 980px);
  --service-statue-scale: 1.16;
  position: relative;
  background: var(--carbon);
  isolation: isolate;
}

.service-tablist {
  position: relative;
  z-index: 3;
  display: grid;
  width: 86%;
  grid-template-columns: 1fr 1fr;
  margin-inline: auto;
  background: var(--carbon);
}

.service-tablist button {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-right: 1px solid var(--line);
  padding: 20px 24px;
  background: transparent;
  color: var(--bone-muted);
  font: inherit;
  font-size: clamp(1.38rem, 2.3vw, 2.1rem);
  text-align: center;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.service-tablist button:last-child {
  border-right: 0;
}

.service-tab-label {
  display: inline-block;
  color: var(--bone);
  font: inherit;
  font-weight: 500;
  letter-spacing: -0.035em;
  opacity: 0.58;
  transform: scale(1);
  transition:
    color 520ms ease,
    opacity 520ms ease,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-tablist button[aria-selected="true"] .service-tab-label {
  color: #ffffff;
  opacity: 1;
  transform: scale(1.035);
}

.service-panel {
  position: relative;
  z-index: 2;
  display: block;
  padding-block: clamp(56px, 7vw, 96px);
}

.js .service-panel {
  opacity: 0;
  transition: opacity 520ms ease;
}

.js .service-panel.is-active {
  opacity: 1;
}

.service-panel[hidden] {
  display: none;
}

.service-panel-intro {
  max-width: 30ch;
  margin: 0;
  color: var(--bone-muted);
}

.service-list {
  display: grid;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 0;
  gap: clamp(36px, 4vw, 56px);
  list-style: none;
}

.service-list li {
  display: grid;
  justify-items: center;
  padding: 0;
  border: 0;
  text-align: center;
}

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

.service-list h3 {
  max-width: 24ch;
  margin: 0;
  color: var(--bone);
  font-size: clamp(1.28rem, 2.22vw, 2.39rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  text-align: center;
}

.service-list p {
  width: 100%;
  max-width: 46ch;
  margin: 12px auto 0;
  color: var(--bone-muted);
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.6;
  text-align: center;
  text-align-last: center;
  text-justify: auto;
}

.about {
  position: relative;
  display: grid;
  min-height: clamp(720px, 64vw, 900px);
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 72px;
  align-items: center;
  overflow: visible;
  background: var(--carbon);
  padding-top: clamp(48px, 6vw, 84px);
  isolation: isolate;
}

.about::before,
.about::after {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  content: "";
  pointer-events: none;
}

.about::before {
  z-index: 0;
  background-color: var(--carbon);
  background-image: url("../media/hefesto-sobre-fundo-marmore-v2.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: auto 96%;
  filter: brightness(0.79) contrast(1.08) saturate(0.72);
  opacity: 0.56;
  transition: opacity 1400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.about::after {
  z-index: 1;
  background: none;
}

.about-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
}

.about h2 {
  max-width: 18ch;
  margin-block: 32px 56px;
  font-size: clamp(2.7rem, 5.4vw, 6.3rem);
  text-wrap: balance;
}

.about-lead {
  max-width: 40ch;
  margin: 0 0 24px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.35;
}

.about-copy > p:last-child {
  max-width: 52ch;
  margin: 0;
  color: var(--bone-muted);
}

.contact {
  position: relative;
  overflow: hidden;
  background-color: var(--carbon);
  isolation: isolate;
}

.contact::before {
  position: absolute;
  z-index: 0;
  inset: -2%;
  background-image:
    linear-gradient(rgba(6, 5, 3, 0.38), rgba(6, 5, 3, 0.38)),
    url("../media/contact-sparks-v1.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  content: "";
  pointer-events: none;
  transform-origin: 82% 45%;
  animation: contact-sparks-slow 16s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
  will-change: opacity, filter, transform;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
}

@keyframes contact-sparks-slow {
  from {
    opacity: 0.34;
    filter: brightness(0.72);
    transform: scale(1.01) translate3d(1.2%, 0.6%, 0);
  }

  to {
    opacity: 0.78;
    filter: brightness(1);
    transform: scale(1.045) translate3d(-1%, -0.7%, 0);
  }
}

.contact h2,
.contact-intro,
.contact-form {
  grid-column: 1 / -1;
  justify-self: center;
}

.contact h2 {
  max-width: 24ch;
  font-size: clamp(2.066rem, 3.645vw, 4.131rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-align: center;
  text-wrap: balance;
}

.contact-intro {
  max-width: 62ch;
  margin: 32px auto 72px;
  color: var(--bone-muted);
  text-align: center;
  text-align-last: center;
}

.contact-intro span {
  display: block;
}

.contact-form {
  display: grid;
  width: min(100%, 960px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 24px;
}

.field {
  display: grid;
  gap: 10px;
}

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

.field label {
  color: var(--bone-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field label span,
.form-footer p span {
  color: var(--ember);
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(240, 236, 228, 0.35);
  border-radius: 0;
  padding: 14px 0;
  background: transparent;
  color: var(--bone);
  font: inherit;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--ember);
  outline: 0;
}

.field input:user-invalid,
.field textarea:user-invalid {
  border-color: #ff9977;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.form-footer p {
  margin: 0;
  color: var(--bone-muted);
  font-size: 0.78rem;
}

.form-footer button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--bone);
  padding: 12px 22px;
  background: transparent;
  color: var(--bone);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease;
}

.contact-submit .forge-mark {
  width: 30px;
  height: 27px;
}

.contact-submit .forge-mark img {
  transition: filter 220ms ease, opacity 220ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: var(--bone);
  color: var(--carbon);
  outline: 0;
}

.contact-submit:hover .forge-mark-strike,
.contact-submit:focus-visible .forge-mark-strike {
  opacity: 1;
}

.contact-submit:hover .forge-mark img,
.contact-submit:focus-visible .forge-mark img {
  filter: brightness(0);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--bone-muted);
  font-size: 0.9rem;
}

.site-footer {
  background: var(--carbon);
}

.footer-top {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding-block: clamp(44px, 5.5vw, 72px);
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.footer-brand-symbol {
  width: clamp(56px, 6vw, 76px);
  height: auto;
  object-fit: contain;
}

.footer-brand-wordmark {
  display: block;
  width: clamp(132px, 15vw, 188px);
  height: auto;
}

.footer-signature {
  margin: 0;
  color: var(--bone-muted);
  font-size: clamp(0.68rem, 0.64rem + 0.15vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-top nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.footer-top nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding-inline: clamp(12px, 1.8vw, 22px);
  color: var(--bone-muted);
  font-size: clamp(0.76rem, 0.72rem + 0.15vw, 0.86rem);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-top nav a + a {
  border-left: 1px solid var(--line);
}

.footer-top nav a:hover,
.footer-top nav a:focus-visible {
  color: var(--bone);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-top: 1px solid var(--line);
  color: rgba(240, 236, 228, 0.55);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: inherit;
}

.whatsapp-float {
  position: fixed;
  z-index: 116;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: #050403;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.08),
    0 12px 34px rgba(0, 0, 0, 0.42);
  text-decoration: none;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.whatsapp-float::after {
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scale(0.84);
  animation: whatsapp-pulse 2.5s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

@keyframes whatsapp-pulse {
  0% {
    opacity: 0;
    transform: scale(0.84);
  }

  16% {
    opacity: 0.74;
  }

  100% {
    opacity: 0;
    transform: scale(1.42);
  }
}

.whatsapp-float img {
  display: block;
  width: 25px;
  height: 25px;
  transition: filter 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  border-color: #050403;
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.16),
    0 14px 38px rgba(0, 0, 0, 0.46);
  transform: translateY(-2px) scale(1.035);
}

.whatsapp-float:hover::after,
.whatsapp-float:focus-visible::after {
  opacity: 0;
  animation: none;
}

.whatsapp-float:hover img,
.whatsapp-float:focus-visible img {
  filter: brightness(0);
}

body:has(.cookie-bar:not([hidden])) .whatsapp-float {
  bottom: 112px;
}

.cookie-bar {
  position: fixed;
  z-index: 120;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  max-width: 900px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-inline: auto;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--carbon-soft);
  color: var(--bone);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

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

.cookie-bar p {
  margin: 0;
  font-size: 0.85rem;
}

.cookie-bar > div {
  display: flex;
  gap: 8px;
}

.cookie-bar button {
  min-height: 44px;
  border: 1px solid var(--line);
  padding: 8px 16px;
  background: transparent;
  color: var(--bone);
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.cookie-bar .cookie-accept {
  background: var(--bone);
  color: var(--carbon);
}

.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 880ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1040ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.js [data-reveal].visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .statement[data-visual-reveal]:not(.visual-visible)::before,
.js .about[data-visual-reveal]:not(.visual-visible)::before {
  opacity: 0;
}

.js .territory[data-visual-reveal]:not(.visual-visible)::before {
  opacity: 0;
  transform: scale(1.025);
}

.js .services[data-visual-reveal]:not(.visual-visible) .service-statue.is-active {
  opacity: 0;
}

.legal-page,
.not-found-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 18%, rgba(239, 90, 36, 0.2), transparent 24%),
    var(--carbon);
}

.legal-header,
.legal-footer {
  display: flex;
  width: min(100% - 48px, 1440px);
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  padding-block: 24px;
}

.legal-header {
  border-bottom: 1px solid var(--line);
}

.legal-back,
.legal-footer a {
  color: var(--bone-muted);
  font-size: 0.82rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-main {
  width: min(100% - 48px, 1120px);
  margin-inline: auto;
  padding-block: clamp(96px, 12vw, 180px);
}

.legal-main h1,
.not-found-main h1 {
  margin: 24px 0;
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.legal-main h1 em,
.not-found-main h1 em {
  color: var(--ember);
  font-family: var(--serif);
  font-weight: 400;
}

.legal-updated {
  margin: 40px 0 96px;
  color: var(--bone-muted);
  font-size: 0.85rem;
}

.legal-content {
  display: grid;
  width: min(100%, 780px);
  gap: 0;
  margin-left: auto;
}

.legal-content section {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) 2fr;
  gap: 32px;
  padding-block: 36px;
  border-top: 1px solid var(--line);
}

.legal-content h2,
.legal-content p {
  margin: 0;
}

.legal-content h2 {
  font-size: 1rem;
  font-weight: 600;
}

.legal-content p {
  color: var(--bone-muted);
}

.legal-notice {
  width: min(100%, 780px);
  margin: 64px 0 0 auto;
  padding: 24px;
  border-left: 3px solid var(--ember);
  background: var(--carbon-soft);
  color: var(--bone-muted);
}

.legal-notice p {
  margin: 0;
}

.legal-footer {
  border-top: 1px solid var(--line);
  color: var(--bone-muted);
  font-size: 0.78rem;
}

.legal-footer p {
  margin: 0;
}

.not-found-main {
  position: relative;
  display: flex;
  min-height: 100vh;
  width: min(100% - 48px, 1440px);
  justify-content: center;
  flex-direction: column;
  margin-inline: auto;
  overflow: hidden;
  padding-block: 80px;
}

.not-found-main > p:not(.section-index) {
  max-width: 34ch;
  margin: 12px 0 36px;
  color: var(--bone-muted);
}

.not-found-main .text-link {
  width: max-content;
}

.not-found-mark {
  position: absolute;
  right: -8vw;
  bottom: -12vw;
  width: min(58vw, 820px);
  opacity: 0.07;
  transform: rotate(-9deg);
}

.not-found-mark img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 960px) {
  .hero-content {
    padding-bottom: 88px;
  }

  .hero h1 {
    margin-bottom: 48px;
    font-size: clamp(3.5rem, 11vw, 6.5rem);
  }

  .hero-bottom,
  .statement,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .statement h2,
  .statement-note {
    grid-column: 1;
  }

  .statement .section-index,
  .statement h2,
  .statement-note {
    grid-row: auto;
  }

  .statement-note {
    margin-top: 32px;
  }

  .statement::before {
    background-position: calc(44% + 8vw) 10%;
    background-size: auto 112%;
  }

}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 40px, 1440px);
  }

  .site-header {
    padding: 14px 20px;
  }

  .brand-symbol {
    width: 32px;
    height: 32px;
  }

  .brand-wordmark {
    width: 88px;
  }

  .header-center-symbol {
    width: 32px;
    height: 32px;
  }

  .header-center-wordmark {
    width: 96px;
  }

  .site-nav {
    right: 20px;
  }

  .hero {
    min-height: 900px;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-scrim {
    background: linear-gradient(0deg, rgba(3, 2, 1, 0.9) 0%, rgba(3, 2, 1, 0.52) 58%, rgba(3, 2, 1, 0.22) 100%);
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 80px;
  }

  .hero h1 {
    margin: 16px 0 36px;
    font-size: clamp(3.1rem, 15.5vw, 5rem);
    line-height: 0.82;
  }

  .hero-content > .eyebrow {
    padding-left: 4px;
  }

  .hero-bottom {
    padding-top: 0;
  }

  .hero-primary-links {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-primary-link {
    min-height: 70px;
    padding-inline: 18px;
    font-size: clamp(1.15rem, 5.5vw, 1.4rem);
  }

  .territory-grid {
    width: 92%;
    grid-template-columns: 1fr;
  }

  .territory {
    min-height: 418px;
    padding: 22px;
  }

  .service-statue-thinker.is-active,
  .service-statue-archer.is-active {
    opacity: 0.28;
  }

  .service-switcher {
    --service-tab-height: 176px;
    --service-statue-height: 820px;
  }

  .projects-intro,
  .services-heading,
  .service-panel,
  .about,
  .contact-inner,
  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .project-marquee {
    padding-block: 22px;
  }

  .portfolio-card {
    width: min(52vw, 220px);
    min-height: 190px;
  }

  .project-set {
    gap: 40px;
  }

  .service-tablist {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .service-tablist button {
    border-right: 0;
  }

  .service-tablist button + button {
    border-top: 1px solid var(--line);
  }

  .contact h2,
  .contact-intro,
  .contact-form {
    grid-column: 1;
  }

  .about {
    min-height: 800px;
    align-items: end;
    padding-top: 360px;
  }

  .about::before {
    background-position: 31% bottom;
    background-size: auto 94%;
  }

  .about::after {
    background: linear-gradient(
      180deg,
      rgba(4, 3, 1, 0.02) 0%,
      rgba(4, 3, 1, 0.12) 34%,
      rgba(4, 3, 1, 0.88) 62%,
      rgba(4, 3, 1, 0.98) 100%
    );
  }

  .about-copy {
    grid-column: 1;
  }

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

  .field-full {
    grid-column: 1;
  }

  .form-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .footer-top {
    gap: 18px;
  }

  .footer-bottom {
    align-items: start;
    padding: 20px;
  }

  .cookie-bar {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .cookie-bar > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  body:has(.cookie-bar:not([hidden])) .whatsapp-float {
    bottom: 238px;
  }

  .legal-header,
  .legal-footer,
  .legal-main,
  .not-found-main {
    width: min(100% - 40px, 1440px);
  }

  .legal-main {
    padding-block: 96px;
  }

  .legal-main h1,
  .not-found-main h1 {
    font-size: clamp(3.7rem, 18vw, 6.5rem);
  }

  .legal-content section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .legal-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-image,
  .hero-heat {
    animation: none;
  }

  .project-marquee {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .project-marquee::-webkit-scrollbar {
    display: none;
  }

  .project-marquee::before,
  .project-marquee::after,
  .project-set[aria-hidden="true"] {
    display: none;
  }

  .project-track {
    animation: none;
    transform: none;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .js .section-index[data-typewriter] {
    clip-path: none;
    animation: none;
  }

  .js .statement[data-visual-reveal]::before,
  .js .about[data-visual-reveal]::before {
    opacity: 0.56;
  }

  .js .territory-light[data-visual-reveal]::before {
    opacity: 0.72;
  }

  .js .territory-fire[data-visual-reveal]::before {
    opacity: 0.78;
  }

  .js .services[data-visual-reveal] .service-statue.is-active {
    opacity: 0.85;
  }
}
