:root {
  --ink: #17140f;
  --ink-soft: #4d4943;
  --paper: #f4f1eb;
  --paper-deep: #e8e1d7;
  --white: #fffdf8;
  --accent: #9d8060;
  --line: rgba(23, 20, 15, 0.16);
  --serif: "Satoshi", "Helvetica Neue", Arial, sans-serif;
  --sans: "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --page: min(100% - 36px, 1320px);
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--accent);
}

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

img {
  height: auto;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  display: block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 0.3s;
}

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

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

.section {
  padding-block: 108px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.display-title {
  max-width: 780px;
  margin-top: 20px;
  font-family: var(--serif);
  font-size: clamp(3.15rem, 13vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.89;
}

.display-title em,
.statement em,
.final-cta h2 em {
  font-weight: 400;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.45s var(--ease), background 0.45s var(--ease), border-color 0.45s var(--ease), transform 0.3s var(--ease);
}

.button::before {
  position: absolute;
  inset: 0;
  background: var(--accent);
  content: "";
  transform: translateY(102%);
  transition: transform 0.5s var(--ease);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateY(0);
}

.button span,
.button .icon {
  position: relative;
  z-index: 1;
}

.button .icon {
  width: 17px;
  height: 17px;
  font-size: 1rem;
  transition: transform 0.35s var(--ease);
}

.button:hover .icon,
.button:focus-visible .icon {
  transform: translate(3px, -3px);
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--light:hover,
.button--light:focus-visible {
  color: var(--white);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--large {
  min-height: 64px;
  padding-inline: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-block: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.35s, gap 0.35s var(--ease);
}

.text-link:hover,
.text-link:focus-visible {
  gap: 30px;
  color: var(--accent);
}

.text-link .icon {
  width: 15px;
  height: 15px;
}

.text-link--light {
  color: var(--white);
}

.noise {
  position: fixed;
  z-index: 200;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
}

.loader {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  transition: visibility 0s 0.9s, clip-path 1.05s var(--ease);
  clip-path: inset(0 0 0 0);
}

.loader__mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.loader__mark span {
  font-family: var(--serif);
  font-size: 2.5rem;
  letter-spacing: -0.04em;
}

.loader__mark small {
  margin-top: 9px;
  color: #c5b39e;
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.loader__line {
  position: absolute;
  right: 20%;
  bottom: 14%;
  left: 20%;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.loader__line i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: loader-line 1.2s var(--ease) forwards;
  transform: translateX(-100%);
}

.is-loaded .loader {
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
}

@keyframes loader-line {
  to { transform: translateX(0); }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  padding-inline: 18px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: color 0.45s var(--ease), background 0.45s var(--ease), box-shadow 0.45s var(--ease), height 0.45s var(--ease);
}

.site-header.is-scrolled {
  height: 68px;
  color: var(--ink);
  background: rgba(244, 241, 235, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(23, 20, 15, 0.05);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  line-height: 1;
}

.brand span {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.brand small {
  margin-top: 5px;
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: transform 0.4s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

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

.main-nav {
  position: fixed;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: 90px 28px 50px;
  color: var(--white);
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}

.main-nav::after {
  position: absolute;
  right: 28px;
  bottom: 32px;
  color: #938674;
  content: "Stories feitos para sentir";
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.main-nav a {
  font-family: var(--serif);
  font-size: clamp(1.95rem, 8.5vw, 2.5rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  opacity: 0;
  transform: translateY(24px);
  transition: color 0.3s, opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #baa78f;
}

.menu-open .site-header {
  color: var(--white);
}

.menu-open .main-nav {
  opacity: 1;
  pointer-events: auto;
}

.menu-open .main-nav a {
  opacity: 1;
  transform: none;
}

.menu-open .main-nav a:nth-child(2) { transition-delay: 0.04s; }
.menu-open .main-nav a:nth-child(3) { transition-delay: 0.08s; }
.menu-open .main-nav a:nth-child(4) { transition-delay: 0.12s; }
.menu-open .main-nav a:nth-child(5) { transition-delay: 0.16s; }

@media (max-width: 1023px) {
  .main-nav a {
    display: flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .main-nav a:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .menu-open .site-header,
  .menu-open .site-header.is-scrolled {
    height: 100svh;
    min-height: 100svh;
    align-items: flex-start;
    color: var(--white);
    background: var(--ink);
    border-bottom-color: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition: none;
  }

  .menu-open .brand {
    position: absolute;
    top: 20px;
    left: 18px;
  }

  .menu-open .menu-toggle {
    position: absolute;
    top: 17px;
    right: 10px;
  }

  .menu-open .main-nav {
    position: absolute;
  }
}

.hero {
  position: relative;
  display: flex;
  min-height: 720px;
  height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__media,
.hero__poster,
.hero__poster img,
.hero__media video,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  overflow: hidden;
  transform: scale(1.04);
}

.hero__poster {
  z-index: 1;
  opacity: 1;
  transition: opacity 0.45s var(--ease);
}

.hero__poster img {
  object-fit: cover;
  object-position: 50% center;
  filter: saturate(0.75) contrast(1.03);
}

.hero__media.is-video-ready .hero__poster {
  opacity: 0;
  pointer-events: none;
}

.hero__media video {
  z-index: 0;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.75) contrast(1.03);
}

.hero__overlay {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(12, 10, 8, 0.32) 0%, rgba(12, 10, 8, 0.08) 34%, rgba(12, 10, 8, 0.66) 100%),
    linear-gradient(90deg, rgba(12, 10, 8, 0.42), transparent 72%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
}

.hero__eyebrow {
  margin-bottom: 22px;
  color: #e6d9ca;
}

.hero__title {
  max-width: 940px;
  font-family: var(--serif);
  font-size: clamp(3.05rem, 13vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.062em;
  line-height: 0.78;
}

.hero__title em {
  font-weight: 400;
}

.title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

.title-line > span {
  display: block;
  transform: translateY(115%);
  transition: transform 1.05s var(--ease);
}

.is-loaded .title-line > span {
  transform: translateY(0);
}

.is-loaded .title-line:nth-child(1) > span { transition-delay: 0.28s; }
.is-loaded .title-line:nth-child(2) > span { transition-delay: 0.36s; }
.is-loaded .title-line:nth-child(3) > span { transition-delay: 0.44s; }

.hero__bottom {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.hero__bottom > p {
  max-width: 500px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.88rem;
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.hero__side-note {
  display: none;
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 20px;
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-hint span {
  position: relative;
  display: block;
  width: 34px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}

.scroll-hint span::after {
  position: absolute;
  inset: 0;
  background: var(--white);
  content: "";
  animation: scroll-line 2s infinite var(--ease);
  transform: translateX(-100%);
}

@keyframes scroll-line {
  55%, 100% { transform: translateX(100%); }
}

.about {
  display: grid;
  gap: 88px;
}

.about__visual {
  position: relative;
  width: calc(100% - 38px);
}

.about__image-main {
  aspect-ratio: 4 / 5.35;
  overflow: hidden;
}

.about__image-main img,
.about__image-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.about__visual:hover img {
  transform: scale(1.025);
}

.about__image-detail {
  position: absolute;
  right: -38px;
  bottom: -48px;
  width: 42%;
  padding: 6px;
  background: var(--paper);
}

.about__image-detail img {
  aspect-ratio: 3 / 4;
}

.about__image-detail figcaption {
  padding: 9px 4px 3px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.2;
}

.about__index {
  position: absolute;
  top: 10px;
  left: -7px;
  color: var(--white);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  transform: rotate(-90deg);
}

.about__copy {
  align-self: center;
}

.about__text {
  display: grid;
  gap: 18px;
  max-width: 590px;
  margin-block: 34px 30px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.85;
}

.about__note {
  padding-top: 21px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.manifesto {
  padding-top: 42px;
}

.statement {
  max-width: 1120px;
  margin-top: 34px;
  font-family: var(--serif);
  font-size: clamp(3.35rem, 12vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.benefits {
  display: grid;
  margin-top: 74px;
  border-top: 1px solid var(--line);
}

.benefit {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 6px 14px;
  padding-block: 27px;
  border-bottom: 1px solid var(--line);
}

.benefit > span {
  padding-top: 6px;
  color: var(--accent);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}

.benefit h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.benefit p {
  grid-column: 2;
  max-width: 390px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.portfolio {
  color: var(--white);
  background: var(--ink);
}

.portfolio .eyebrow {
  color: #b89f83;
}

.portfolio__heading {
  display: grid;
  gap: 28px;
}

.portfolio__intro {
  max-width: 430px;
  align-self: end;
  color: rgba(255, 253, 248, 0.6);
  font-size: 0.84rem;
}

.portfolio__filters {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  margin-block: 62px 34px;
  padding-bottom: 12px;
  scrollbar-width: none;
}

.portfolio__filters::-webkit-scrollbar {
  display: none;
}

.filter {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  color: rgba(255, 255, 255, 0.48);
  background: transparent;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}

.filter sup {
  margin-left: 4px;
  font-size: 0.5rem;
}

.filter:hover,
.filter:focus-visible,
.filter.is-active {
  color: var(--white);
  border-bottom-color: var(--white);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.project {
  position: relative;
  display: block;
  height: 66vw;
  overflow: hidden;
  padding: 0;
  border: 0;
  text-align: left;
  background: #29251f;
  cursor: pointer;
  transition: opacity 0.45s var(--ease), transform 0.6s var(--ease);
}

.project:first-child {
  grid-column: span 2;
  height: min(132vw, 76svh);
}

.project.is-hidden {
  display: none;
}

.project-grid.is-filtered .project:not(.is-hidden) {
  grid-column: span 2;
  height: min(132vw, 76svh);
}

.project__media,
.project__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project__media {
  object-fit: cover;
  filter: saturate(0.82);
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}

.project__shade {
  background: linear-gradient(180deg, transparent 45%, rgba(10, 9, 7, 0.77) 100%);
  transition: background 0.5s;
}

.project__number {
  position: absolute;
  top: 13px;
  left: 13px;
  font-size: 0.54rem;
  letter-spacing: 0.12em;
}

.project__info {
  position: absolute;
  right: 13px;
  bottom: 14px;
  left: 13px;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.project__info small {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.51rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project__info strong {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 5.2vw, 2.3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.project__open {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  font-size: 0.8rem;
  opacity: 0;
  transform: scale(0.7) rotate(-20deg);
  transition: opacity 0.4s, transform 0.5s var(--ease), background 0.3s;
}

.project__open .icon {
  width: 15px;
  height: 15px;
}

.project:hover .project__media,
.project:focus-visible .project__media {
  filter: saturate(1);
  transform: scale(1.045);
}

.project:hover .project__open,
.project:focus-visible .project__open {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.process {
  display: grid;
  gap: 64px;
}

.timeline {
  position: relative;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 5px 18px;
  padding: 0 0 40px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  background: var(--paper);
  font-size: 0.54rem;
}

.timeline__item h3 {
  align-self: center;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.timeline__item p {
  grid-column: 2;
  max-width: 480px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.services {
  background: #e9e3d9;
}

.services__heading {
  display: grid;
  gap: 26px;
  margin-bottom: 64px;
}

.services__heading > p {
  max-width: 390px;
  align-self: end;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.service-list {
  border-top: 1px solid rgba(23, 20, 15, 0.2);
}

.service {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 76px;
  gap: 12px;
  align-items: center;
  min-height: 160px;
  padding-block: 26px;
  border-bottom: 1px solid rgba(23, 20, 15, 0.2);
  transition: padding 0.45s var(--ease), background 0.45s;
}

.service__number {
  align-self: start;
  color: var(--accent);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
}

.service h3 {
  max-width: 660px;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 7vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.service p {
  max-width: 520px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.package {
  align-items: start;
  min-height: 260px;
  padding-block: 34px;
}

.package__body {
  min-width: 0;
}

.package__top {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: space-between;
  align-items: flex-start;
}

.package__top small {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.package__price {
  padding: 8px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.package__features {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.package__features li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.55;
}

.package__features li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.package--featured {
  padding-inline: 16px;
  color: var(--white);
  background: var(--ink);
}

.package--featured:hover {
  color: var(--white);
  background: var(--ink);
}

.package--featured .package__price,
.package--featured .package__features li {
  color: rgba(255, 253, 248, 0.72);
}

.package--featured .circle-link {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
}

.package--featured .circle-link:hover,
.package--featured .circle-link:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.package-list {
  display: grid;
  gap: 16px;
  border-top: 0;
}

.package-list .package {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(23, 20, 15, 0.2);
  background: rgba(255, 255, 255, 0.18);
}

.package-list .package:hover {
  padding: 28px;
  background: rgba(255, 255, 255, 0.35);
}

.package-list .package--featured,
.package-list .package--featured:hover {
  color: var(--white);
  background: var(--ink);
}

.package-list .service__number {
  margin-bottom: 48px;
}

.package-list .package__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.package-list .package__top {
  display: block;
}

.package-list .package__price {
  display: inline-flex;
  margin-top: 20px;
}

.package-list .package__features {
  grid-template-columns: 1fr;
  margin-top: 34px;
}

.package-list .circle-link {
  flex-shrink: 0;
  align-self: flex-end;
  margin-top: 38px;
}

.circle-link {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(23, 20, 15, 0.35);
  border-radius: 50%;
  font-size: 0.49rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.4s, background 0.4s, transform 0.3s var(--ease);
}

.circle-link .icon {
  display: none;
}

.circle-link:hover,
.circle-link:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.impact {
  position: relative;
  display: grid;
  min-height: 82svh;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.impact__media,
.impact__media img,
.impact__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.impact__media img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.5);
  transform: scale(1.08);
}

.impact__veil {
  background: rgba(10, 8, 6, 0.68);
}

.impact__quote {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 6.6vw, 4.6rem);
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.impact__quote span {
  color: rgba(255, 255, 255, 0.66);
}

.impact__quote em {
  margin-top: 9px;
}

.testimonials__heading {
  display: grid;
  gap: 30px;
}

.testimonials__intro {
  max-width: 390px;
  align-self: end;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.feedback-carousel {
  overflow: hidden;
  margin-top: 64px;
  color: var(--white);
  background: var(--ink);
}

.feedback-carousel__bar {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.feedback-carousel__bar > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feedback-controls {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
}

.feedback-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: color 0.3s, background 0.3s, transform 0.3s var(--ease);
}

.feedback-controls .icon {
  width: 15px;
  height: 15px;
}

.feedback-controls button:hover,
.feedback-controls button:focus-visible {
  color: var(--ink);
  background: var(--white);
  transform: scale(1.06);
}

.feedback-controls > span {
  min-width: 52px;
  text-align: center;
  font-size: 0.56rem;
  letter-spacing: 0.12em;
}

.feedback-viewport {
  overflow: hidden;
}

.feedback-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.65s var(--ease);
}

.feedback-slide {
  display: flex;
  min-height: 560px;
  flex: 0 0 100%;
  flex-direction: column;
  padding: 34px 22px;
  opacity: 0.22;
  transition: opacity 0.45s;
}

.feedback-slide.is-active {
  opacity: 1;
}

.feedback__number {
  display: block;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
}

.feedback-slide blockquote {
  max-width: 1100px;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 7vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.feedback-slide footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feedback-slide footer span {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 400;
}

.instagram {
  padding-top: 36px;
}

.instagram__heading {
  display: grid;
  gap: 34px;
  align-items: end;
  margin-bottom: 48px;
}

.instagram__heading .button {
  justify-self: start;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.instagram-grid a {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #ddd5ca;
}

.instagram-grid a:first-child {
  grid-column: span 2;
  aspect-ratio: 1.5;
}

.instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: filter 0.5s, transform 0.8s var(--ease);
}

.instagram-grid a:nth-child(2) img { object-position: 50% 70%; }
.instagram-grid a:nth-child(4) img { object-position: 30% center; }

.instagram-grid a > span {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: rgba(18, 16, 13, 0.62);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s var(--ease);
}

.instagram-grid a > span .icon {
  width: 15px;
  height: 15px;
}

.instagram-grid a:hover img,
.instagram-grid a:focus-visible img {
  filter: saturate(1);
  transform: scale(1.045);
}

.instagram-grid a:hover > span,
.instagram-grid a:focus-visible > span {
  opacity: 1;
  transform: none;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  color: var(--white);
  background: var(--ink);
}

.final-cta__orb {
  position: absolute;
  top: -15vw;
  right: -15vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(188, 161, 128, 0.28);
  border-radius: 50%;
}

.final-cta__orb::after,
.final-cta__orb::before {
  position: absolute;
  border: 1px solid rgba(188, 161, 128, 0.17);
  border-radius: inherit;
  content: "";
}

.final-cta__orb::before { inset: 14%; }
.final-cta__orb::after { inset: 28%; }

.final-cta__content {
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
}

.final-cta .eyebrow {
  color: #bda68b;
}

.final-cta h2 {
  max-width: 1140px;
  margin-block: 26px;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 14vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.81;
}

.final-cta__content > p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.62);
}

.final-cta__content .button {
  margin-top: 38px;
}

.final-cta__ticker {
  overflow: hidden;
  padding-block: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  white-space: nowrap;
  text-transform: uppercase;
}

.final-cta__ticker div {
  width: max-content;
  animation: ticker 24s linear infinite;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer__top {
  display: grid;
  gap: 50px;
  padding-block: 74px;
}

.brand--footer span {
  font-size: 2.6rem;
}

.footer__links {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__links a {
  display: flex;
  justify-content: space-between;
  padding-block: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s, padding 0.3s var(--ease);
}

.footer__links a:hover,
.footer__links a:focus-visible {
  padding-left: 8px;
  color: #bda68b;
}

.footer__links .icon,
.footer__top-link .icon {
  width: 14px;
  height: 14px;
}

.footer__top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.58rem;
  letter-spacing: 0.05em;
}

.project-modal {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--white);
  background: #0d0c0a;
  opacity: 0;
  transition: opacity 0.5s var(--ease), display 0.5s allow-discrete, overlay 0.5s allow-discrete;
}

.project-modal[open] {
  opacity: 1;
}

@starting-style {
  .project-modal[open] { opacity: 0; }
}

.project-modal::backdrop {
  background: rgba(0, 0, 0, 0.8);
}

.modal__close {
  position: absolute;
  z-index: 10;
  top: 12px;
  right: 12px;
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 40px;
  color: var(--white);
  background: rgba(15, 14, 12, 0.88);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.modal__close .icon {
  width: 15px;
  height: 15px;
}

.modal__layout {
  display: grid;
  min-height: 100%;
}

.modal__media {
  min-height: 68svh;
  background: #1b1915;
}

.modal__media img,
.modal__media video {
  width: 100%;
  height: 100%;
  max-height: 72svh;
  object-fit: contain;
}

.modal__caption {
  padding: 34px 20px 48px;
}

.modal__caption h2 {
  margin-block: 17px;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 13vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.modal__caption p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }

[data-parallax] {
  translate: 0 var(--parallax-y, 0px);
}

.noscript {
  position: fixed;
  z-index: 999;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 14px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.72rem;
}

@media (max-width: 699px) {
  :root {
    --page: min(100% - 32px, 1320px);
  }

  .section {
    padding-block: 88px;
  }

  .site-header {
    padding-right: max(16px, env(safe-area-inset-right));
    padding-left: max(16px, env(safe-area-inset-left));
  }

  .brand {
    min-height: 44px;
    justify-content: center;
  }

  .hero {
    height: auto;
    min-height: max(640px, 100svh);
  }

  .hero__content {
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: clamp(30px, 6svh, 56px);
  }

  .hero__eyebrow {
    margin-bottom: 16px;
  }

  .hero__title {
    font-size: clamp(3rem, 13vw, 3.45rem);
    line-height: 0.84;
  }

  .hero__bottom {
    gap: 18px;
    margin-top: 24px;
  }

  .hero__bottom > p {
    font-size: 0.84rem;
    line-height: 1.65;
  }

  .button-row {
    width: 100%;
    gap: 12px;
  }

  .hero .button-row .button {
    width: 100%;
    max-width: 340px;
  }

  .text-link {
    min-height: 44px;
    align-items: center;
  }

  .display-title {
    font-size: clamp(2.85rem, 12.2vw, 3.35rem);
    line-height: 0.92;
  }

  .about {
    gap: 76px;
  }

  .about__visual {
    width: calc(100% - 28px);
  }

  .about__image-detail {
    right: -28px;
  }

  .statement {
    font-size: clamp(3rem, 11vw, 3.4rem);
    line-height: 0.9;
  }

  .portfolio__filters {
    gap: 16px;
    margin-block: 46px 28px;
    overscroll-behavior-inline: contain;
  }

  .filter {
    min-width: 40px;
    padding-inline: 2px;
    font-size: 0.64rem;
  }

  .project-grid {
    gap: 8px;
  }

  .project__info {
    right: 11px;
    bottom: 12px;
    left: 11px;
  }

  .project__info strong {
    font-size: clamp(1.08rem, 5vw, 1.4rem);
  }

  .process {
    gap: 50px;
  }

  .services__heading {
    margin-bottom: 48px;
  }

  .project__open,
  .instagram-grid a > span {
    opacity: 1;
    transform: none;
  }

  .project__open {
    background: rgba(18, 16, 13, 0.28);
  }

  .feedback-carousel__bar {
    justify-content: center;
    padding: 14px 12px;
  }

  .feedback-carousel {
    margin-top: 48px;
  }

  .feedback-viewport {
    touch-action: pan-y;
  }

  .feedback-carousel__bar > span {
    display: none;
  }

  .feedback-controls {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .feedback-controls button {
    width: 44px;
    height: 44px;
  }

  .package-list .package,
  .package-list .package:hover {
    min-height: 0;
    padding: 24px;
  }

  .package-list .service__number {
    margin-bottom: 26px;
  }

  .package-list .package__features {
    margin-top: 28px;
  }

  .package-list .circle-link {
    margin-top: 28px;
  }

  .impact {
    min-height: 70svh;
  }

  .feedback-slide {
    min-height: 520px;
    padding: 30px 20px;
  }

  .feedback__number {
    margin-bottom: 34px;
  }

  .feedback-slide blockquote {
    font-size: clamp(1.65rem, 6.6vw, 2rem);
    line-height: 1.08;
  }

  .instagram__heading {
    margin-bottom: 40px;
  }

  .final-cta {
    padding-top: 100px;
  }

  .final-cta__content {
    padding-bottom: 100px;
  }

  .final-cta__content .button {
    width: 100%;
    max-width: 360px;
  }

  .footer__links a,
  .footer__bottom a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .modal__close {
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
  }

  .modal__media {
    min-height: 64svh;
  }

  .modal__media img,
  .modal__media video {
    max-height: 66svh;
  }

  .modal__caption {
    padding: 28px 18px 38px;
  }

  .modal__caption h2 {
    font-size: clamp(2.65rem, 12vw, 3.35rem);
  }

  .reveal {
    transform: translateY(18px);
    transition-duration: 0.58s;
  }

  .reveal:nth-child(2),
  .reveal:nth-child(3) {
    transition-delay: 0.03s;
  }
}

@media (max-width: 380px) {
  .section {
    padding-block: 80px;
  }

  .hero__title {
    font-size: clamp(2.85rem, 13vw, 3.15rem);
  }

  .hero__eyebrow {
    font-size: 0.61rem;
    letter-spacing: 0.15em;
  }

  .button {
    gap: 18px;
    padding-inline: 16px;
    font-size: 0.69rem;
  }

  .display-title {
    font-size: clamp(2.65rem, 12vw, 3rem);
  }

  .main-nav a {
    font-size: 1.95rem;
  }

  .project__info small {
    font-size: 0.48rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 699px) and (max-height: 700px) {
  .hero {
    min-height: max(620px, 100svh);
  }

  .hero__content {
    padding-bottom: 24px;
  }

  .hero__bottom {
    gap: 12px;
    margin-top: 18px;
  }

  .hero__bottom > p {
    line-height: 1.55;
  }
}

@media (min-width: 700px) {
  :root {
    --page: min(100% - 64px, 1320px);
    --header-h: 88px;
  }

  .section {
    padding-block: 140px;
  }

  .site-header {
    padding-inline: 32px;
  }

  .hero__content {
    padding-bottom: 84px;
  }

  .hero__title {
    font-size: clamp(5.5rem, 11vw, 9.8rem);
  }

  .hero__bottom {
    grid-template-columns: minmax(300px, 520px) 1fr;
    align-items: end;
  }

  .button-row {
    align-items: flex-start;
  }

  .about {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 12vw;
  }

  .about__visual {
    width: 100%;
  }

  .about__image-detail {
    right: -14%;
    width: 44%;
  }

  .portfolio__heading,
  .services__heading,
  .instagram__heading,
  .testimonials__heading {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  }

  .portfolio__filters {
    gap: 38px;
  }

  .project-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
  }

  .project,
  .project:first-child {
    grid-column: span 4;
    height: auto;
    aspect-ratio: 0.68;
  }

  .project:nth-child(1) { grid-column: 1 / span 5; }
  .project:nth-child(2) { grid-column: 7 / span 3; align-self: end; aspect-ratio: 0.76; }
  .project:nth-child(3) { grid-column: 10 / span 3; align-self: center; aspect-ratio: 0.72; }
  .project:nth-child(4) { grid-column: 3 / span 4; margin-top: 26px; aspect-ratio: 0.78; }
  .project:nth-child(5) { grid-column: 9 / span 4; margin-top: 90px; aspect-ratio: 0.82; }
  .project:nth-child(6) { grid-column: 9 / span 4; aspect-ratio: 0.72; }

  .project-grid.is-filtered .project:not(.is-hidden) {
    grid-column: span 4;
    height: auto;
    margin-top: 0;
    aspect-ratio: 0.72;
  }

  .process {
    grid-template-columns: 0.8fr 1fr;
    gap: 9vw;
  }

  .process__heading {
    position: sticky;
    top: 120px;
    align-self: start;
  }

  .service {
    grid-template-columns: 48px minmax(0, 1fr) 96px;
    gap: 24px;
    min-height: 190px;
    padding-inline: 10px;
  }

  .service:hover {
    padding-inline: 24px;
    background: rgba(255, 255, 255, 0.22);
  }

  .package-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .package-list .package,
  .package-list .package:hover {
    min-height: 650px;
    padding: 34px;
  }

  .package-list .package__features {
    grid-template-columns: 1fr;
  }

  .package-list .package--featured,
  .package-list .package--featured:hover {
    background: var(--ink);
  }

  .circle-link {
    width: 86px;
    height: 86px;
  }

  .feedback-carousel__bar {
    padding: 18px 26px;
  }

  .feedback-slide {
    min-height: 540px;
    padding: 48px 52px;
  }

  .instagram-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .instagram-grid a,
  .instagram-grid a:first-child {
    grid-column: auto;
    aspect-ratio: 0.8;
  }

  .instagram-grid a:nth-child(2),
  .instagram-grid a:nth-child(4) {
    margin-top: 54px;
  }

  .final-cta {
    padding-top: 170px;
  }

  .final-cta__content {
    padding-bottom: 160px;
  }

  .footer__top {
    grid-template-columns: 1fr 0.72fr;
    align-items: start;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .modal__layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  }

  .modal__media {
    height: 100svh;
  }

  .modal__media img,
  .modal__media video {
    max-height: 100svh;
  }

  .modal__caption {
    align-self: end;
    padding: 50px 5vw 76px;
  }
}

@media (min-width: 700px) and (max-width: 1023px) {
  .hero__content {
    padding-bottom: 64px;
  }

  .hero__title {
    max-width: 690px;
    font-size: clamp(5rem, 11.4vw, 6rem);
    line-height: 0.82;
  }

  .hero__bottom {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 26px;
  }

  .hero__bottom > p {
    max-width: 520px;
  }

  .button-row {
    flex-direction: row;
    align-items: center;
  }

  .hero .button-row .button {
    width: auto;
    min-width: 280px;
  }
}

@media (min-width: 1024px) {
  :root {
    --page: min(100% - 96px, 1320px);
  }

  body {
    font-size: 16px;
  }

  .site-header {
    padding-inline: 48px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
    padding: 0;
    color: inherit;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav::after {
    display: none;
  }

  .main-nav a {
    position: relative;
    font-family: var(--sans);
    font-size: 0.61rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1;
    opacity: 0.78;
    transform: none;
    text-transform: uppercase;
  }

  .main-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
  }

  .main-nav a:hover::after,
  .main-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .hero__media video {
    object-position: center 48%;
  }

  .hero__bottom {
    grid-template-columns: minmax(360px, 520px) 1fr;
  }

  .button-row {
    flex-direction: row;
    align-items: center;
  }

  .hero__side-note {
    position: absolute;
    z-index: 3;
    top: 50%;
    right: -67px;
    display: block;
    font-size: 0.51rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transform: rotate(90deg);
  }

  .scroll-hint {
    right: 48px;
    bottom: 32px;
    display: flex;
  }

  .benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefit {
    grid-template-columns: 38px 1fr;
    padding: 32px 34px 10px 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .benefit + .benefit {
    padding-left: 34px;
  }

  .benefit:last-child {
    border-right: 0;
  }

  .project__number {
    top: 18px;
    left: 18px;
  }

  .project__info {
    right: 20px;
    bottom: 21px;
    left: 20px;
  }

  .project__open {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  .project__info strong {
    font-size: 2.35rem;
  }

}

@media (min-width: 1350px) {
  .hero__title {
    font-size: 9.3rem;
  }
}

@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;
  }

  .reveal,
  .title-line > span {
    opacity: 1;
    transform: none;
  }

  [data-parallax] {
    transform: none !important;
  }
}
