@font-face {
  font-family: "Bradford";
  src: url("../fonts/BradfordLL-LightItalic.otf") format("opentype");
  font-style: italic;
  font-weight: 300;
  font-display: swap;
}

:root {
  --page-bg: #f0efeb;
  --surface: #f0efeb;
  --text: #1d1d1b;
  --muted: rgba(20, 20, 20, 0.68);
  --border: rgba(20, 20, 20, 0.9);
  --container: 100%;
  --site-pad: 20px;
  --shell-pad: 45px;
  --header-height: 83px;
  --gutter: 20px;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.2, 0.85, 0.22, 1);
  --font-sans: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Bradford", "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  font-weight: 300;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: inherit;
  font-weight: inherit;
  font-size: 16px;
  line-height: 1.35;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--page-bg);
  opacity: 1;
  visibility: visible;
  transition: opacity 1.2s var(--ease-soft), visibility 1.2s var(--ease-soft), background-color 1.2s var(--ease-soft);
}

.site-preloader.is-hiding,
.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-preloader.is-hiding {
  background: rgba(240, 239, 235, 0.82);
}

.site-preloader__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
}

.site-preloader__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-preloader__logo-image {
  display: block;
  width: auto;
  max-width: min(82vw, 608px);
  height: auto;
  max-height: 86px;
  opacity: 0;
  transform: scale(0.985);
  animation: preloaderLogoIn 0.8s var(--ease-soft) 0.05s forwards;
  will-change: opacity, transform, filter;
}

.site-preloader.is-logo-fading .site-preloader__logo-image {
  animation: preloaderLogoOut 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes preloaderLogoIn {
  from {
    opacity: 0;
    transform: scale(0.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes preloaderLogoOut {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }

  35% {
    opacity: 0.82;
    filter: blur(0.2px);
    transform: scale(0.999);
  }

  100% {
    opacity: 0;
    filter: blur(1.25px);
    transform: scale(0.994);
  }
}

@keyframes shellReveal {
  from {
    opacity: 0.72;
    transform: translateY(10px);
    filter: blur(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

a {
  color: inherit;
}

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-shell--revealing {
  animation: shellReveal 1.2s var(--ease-soft) forwards;
}

.site-main {
  flex: 1;
  padding: 0 var(--site-pad);
}

.site-header,
.site-footer {
  padding: 0 var(--shell-pad);
}

.site-header__inner,
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.site-header__inner {
  min-height: var(--header-height);
}

.site-footer__inner {
  min-height: var(--header-height);
}

.site-header__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(20px, 1.7vw, 24px);
}

.site-header__brand a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
}

.site-header__logo-image {
  display: block;
  width: auto;
  height: 34px;
  max-width: min(100%, 320px);
}

.site-header__toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-header__toggle-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transform-origin: center;
  transition: transform 0.38s var(--ease), opacity 0.28s var(--ease);
}

.site-header__toggle-line:first-child {
  transform: translate(-50%, -5px);
}

.site-header__toggle-line:nth-child(2) {
  transform: translate(-50%, 5px);
}

.site-header__mobile {
  display: none;
}

.site-header__brand em,
.hero__title em,
.page-about__content em,
.page-contact__hero-content em,
.page-contact__lead em,
.page-contact__body em,
.page-contact__social em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
}

.site-header__menu {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 400;
  text-transform: uppercase;
}

.site-header__menu a,
.site-footer__link,
.project-single__nav a,
.project-card__title a {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  transition: background-size 0.25s var(--ease), opacity 0.25s var(--ease);
}

.site-header__menu a:not(:hover),
.site-footer__link:not(:hover),
.project-single__nav a:not(:hover),
.project-card__title a:not(:hover) {
  background-size: 0 1px;
}

.site-header__languages {
  justify-self: start;
}

.site-header__primary {
  justify-self: end;
}

.hero,
.page-about,
.page-legal,
.page-default,
.page-contact,
.project-archive,
.project-grid,
.project-single {
  width: 100%;
}

.hero__media,
.page-contact__hero,
.project-single__hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.hero__image,
.page-contact__image,
.project-single__hero-image {
  width: 100%;
  object-fit: cover;
}

.hero__slider,
.hero__video-wrap {
  position: relative;
  min-height: min(clamp(420px, 68vw, 1080px), calc(100vh - var(--header-height) - (var(--site-pad) * 2)));
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__slide .hero__image,
.hero__media > .hero__image,
.hero__video-wrap video {
  width: 100%;
  height: min(clamp(420px, 68vw, 1080px), calc(100vh - var(--header-height) - (var(--site-pad) * 2)));
  object-fit: cover;
}

.hero__wash {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
  pointer-events: none;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 80px);
  z-index: 2;
}

.hero__title,
.page-about__content,
.page-contact__content,
.page-default__title,
.page-default__content {
  max-width: 1300px;
}

.hero__title {
  margin: 0;
  text-align: center;
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 400;
  line-height: 0.96;
  max-width: 980px;
}

.project-filters {
  padding: 45px 0;
}

.project-filters__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.project-filter,
.project-card__tag {
  border: 1px solid var(--border);
  border-radius: 5px;
  background: #f0efeb;
  color: var(--text);
  padding: 7px 11px;
  font-size: 11px;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.24s var(--ease), color 0.24s var(--ease), background-color 0.24s var(--ease);
}

.project-filter {
  cursor: pointer;
}

.project-filter:hover,
.project-filter.is-active,
.project-card__tag:hover {
  background: #111;
  color: #fff;
  transform: translateY(-1px);
}

.project-grid__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gutter);
  grid-auto-flow: dense;
  align-items: start;
  container-type: inline-size;
}

.project-archive__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: clamp(42px, 6vw, 74px) 0 45px;
}

.project-archive__title {
  margin: 0;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-align: center;
}

.project-archive__back {
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
}

.project-card {
  min-width: 0;
}

.project-card--span-2 {
  grid-column: span 2;
}

.project-card__media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  height: calc(((100cqw - (3 * var(--gutter))) / 4) * 1.25);
}

.project-card--span-2 .project-card__media {
  height: calc(((100cqw - (3 * var(--gutter))) / 4) * 1.25);
}

.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.4s var(--ease);
}

.project-card:hover .project-card__image {
  transform: scale(1.03);
  filter: saturate(1.03) contrast(1.02);
}

.project-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-top: 15px;
}

.project-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.page-about__inner,
.page-contact__inner,
.page-default__inner {
  padding: clamp(56px, 8vw, 150px) clamp(18px, 4vw, 52px);
}

.page-about__content,
.page-default__content {
  font-size: clamp(36px, 3.2vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.page-about__content {
  width: min(66.666vw, 1200px);
  max-width: 66.666%;
}

.page-legal__header,
.page-legal__content {
  width: min(50vw, 860px);
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.page-legal__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-bottom: clamp(36px, 5vw, 56px);
}

.page-legal__title {
  margin-top: 55px;
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-align: center;
}

.page-legal__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.page-legal__nav a {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: background-size 0.25s var(--ease), opacity 0.25s var(--ease);
}

.page-legal__nav a:hover {
  background-size: 100% 1px;
}

.page-legal__content {
  display: flex;
  flex-direction: column;
  gap: clamp(44px, 6vw, 72px);
}

.page-legal__section {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.page-legal__section-title {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.02;
  text-align: center;
}

.page-legal__editor {
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.page-legal__editor p,
.page-legal__editor ul,
.page-legal__editor ol {
  margin: 0 0 1em;
}

.page-legal__editor > :last-child {
  margin-bottom: 0;
}

.page-about__content p,
.page-default__content p {
  margin: 0 0 0.75em;
}

.page-about__content em,
.page-contact__hero-content em,
.page-contact__lead em,
.page-contact__body em,
.page-contact__social em {
  font-style: italic;
  color: inherit;
}

.page-contact__hero {
  min-height: min(clamp(420px, 68vw, 1080px), calc(100vh - var(--header-height) - (var(--site-pad) * 2)));
}

.page-contact__hero-content {
  position: absolute;
  top: 50%;
  left: clamp(28px, 3.8vw, 58px);
  z-index: 2;
  width: min(43rem, 46%);
  max-width: calc(100% - 56px);
  transform: translateY(-50%);
  color: var(--text);
  font-size: 42px;
  line-height: 0.98;
  letter-spacing: 0;
}

.page-contact__hero-content > * {
  margin: 0;
}

.page-contact__hero-content > * + * {
  margin-top: 0.95em;
}

.page-contact__hero-content a {
  text-decoration: none;
}

.page-contact__image {
  width: 100%;
  height: 100%;
  min-height: min(clamp(420px, 68vw, 1080px), calc(100vh - var(--header-height) - (var(--site-pad) * 2)));
  object-fit: cover;
}

.page-contact__inner {
  padding-top: clamp(56px, 6vw, 84px);
  padding-bottom: clamp(120px, 16vw, 220px);
}

.page-contact__content {
  width: min(50vw, 860px);
  max-width: 50%;
}

.page-contact__editor {
  max-width: 760px;
}

.page-contact__editor > * + * {
  margin-top: clamp(44px, 5vw, 70px);
}

.page-contact__editor p {
  margin: 0;
}

.page-contact__editor {
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.page-contact__editor a {
  text-decoration: none;
}

.project-single__gallery {
  display: grid;
  gap: var(--gutter);
  padding-top: var(--gutter);
}

.project-single__gallery--aligned {
  --project-gallery-aligned-ratio: 5 / 4;
}

.project-single__gallery--columns-1 {
  grid-template-columns: 1fr;
}

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

.project-single__figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.project-single__figure--aligned {
  aspect-ratio: var(--project-gallery-aligned-ratio);
}

.project-single__image {
  width: 100%;
  object-fit: cover;
}

.project-single__figure--aligned .project-single__image {
  display: block;
  height: 100%;
}

.project-single__meta {
  padding: 40px 0 28px;
}

.project-single__tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer__inner {
  border-top: 1px solid rgba(20, 20, 20, 0.4);
  margin-top: clamp(40px, 6vw, 70px);
}

.project-single__nav {
  margin-top: clamp(40px, 6vw, 70px);
}

.project-single__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  min-height: 112px;
  padding: 8px var(--shell-pad) 18px;
}

.project-single__nav-item {
  font-size: 18px;
}

.project-single__nav-link,
.project-single__nav-item a {
  display: inline-block;
}

.project-single__nav-item--center {
  text-align: center;
}

.project-single__nav-item--right {
  text-align: right;
}

.project-single__nav-item--center a {
  font-size: 19px;
  font-weight: 400;
  text-transform: uppercase;
}

.project-single__nav-link.is-disabled {
  opacity: 1;
}

.site-footer__copyright {
  text-align: center;
}

.site-footer__link:first-child {
  justify-self: start;
}

.site-footer__link:last-child {
  justify-self: end;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.is-hidden {
  display: none;
}

@media (max-width: 1024px) {
  :root {
    --shell-pad: 20px;
    --header-height: 98px;
  }

  .project-grid__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-card__media,
  .project-card--span-2 .project-card__media {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .project-card,
  .project-card--span-2 {
    grid-column: 1 / -1;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-header {
    position: relative;
    z-index: 40;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .site-header__languages,
  .site-header__primary {
    display: none;
  }

  .site-header__brand {
    justify-self: start;
    align-self: center;
    text-align: left;
    font-size: clamp(18px, 3vw, 24px);
    width: auto;
    max-width: none;
    min-width: 0;
  }

  .site-header__brand a {
    display: block;
    width: 250px !important;
    min-width: 250px;
    max-width: calc(100vw - (var(--site-pad) * 2) - 44px) !important;
    flex: 0 0 auto;
  }

  .site-header__logo-image {
    height: auto;
    width: 100% !important;
    max-width: 250px !important;
  }

  .site-preloader__logo-image {
    max-width: min(82vw, 368px);
    max-height: 51px;
  }

  .site-header__toggle {
    display: inline-flex;
    justify-self: end;
    margin-right: calc(var(--site-pad) - var(--shell-pad));
    position: relative;
    z-index: 60;
    width: 24px;
    height: 24px;
  }

  .site-header__mobile {
    position: fixed;
    inset: 0;
    display: block;
    padding: calc(var(--header-height) + 4px) var(--shell-pad) 20px;
    background: rgba(240, 239, 235, 0.98);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.92s var(--ease-soft), opacity 0.62s var(--ease-soft);
    z-index: 50;
  }

  .site-header__mobile-inner {
    display: flex;
    flex-direction: column;
    height: calc(100dvh - var(--header-height) - 24px);
    min-height: calc(100vh - var(--header-height) - 24px);
    overflow: hidden;
  }

  .site-header__mobile-primary {
    display: block;
    flex: 0 0 auto;
  }

  .site-header__mobile-languages {
    display: block;
    flex: 0 0 auto;
    margin-top: 18px;
  }

  .site-header__mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .site-header__mobile-menu li {
    opacity: 0;
    transform: translateY(34px);
    transition: transform 0.86s var(--ease-soft), opacity 0.76s var(--ease-soft);
  }

  .site-header__mobile-menu--primary {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    min-height: 0;
    padding-left: 10px;
  }

  .site-header__mobile-menu--primary a {
    display: inline-block;
    font-size: clamp(34px, 7.8vw, 62px);
    line-height: 0.92;
    letter-spacing: -0.05em;
    text-decoration: none;
  }

  .site-header__mobile-menu--languages {
    display: flex;
    gap: 18px;
    padding-top: 18px;
    padding-left: 10px;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .site-header__mobile-menu--languages a {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .site-header__mobile {
    opacity: 1;
    pointer-events: auto;
    clip-path: inset(0 0 0 0);
  }

  body.menu-open .site-header__mobile-menu li {
    opacity: 1;
    transform: translateY(0);
  }

  body.menu-open .site-header__mobile-menu li:nth-child(1) {
    transition-delay: 0.12s;
  }

  body.menu-open .site-header__mobile-menu li:nth-child(2) {
    transition-delay: 0.2s;
  }

  body.menu-open .site-header__mobile-menu li:nth-child(3) {
    transition-delay: 0.28s;
  }

  body.menu-open .site-header__toggle-line:first-child {
    transform: translate(-50%, 0) rotate(45deg);
  }

  body.menu-open .site-header__toggle-line:nth-child(2) {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .page-contact__hero-content {
    width: min(40rem, 56%);
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  :root {
    --shell-pad: 20px;
    --header-height: 84px;
  }

  .site-header__mobile {
    padding-top: calc(var(--header-height) + 10px);
    padding-bottom: 14px;
  }

  .site-header__mobile-menu--primary {
    gap: 6px;
  }

  .site-header__mobile-menu--primary a {
    font-size: clamp(28px, 8.4vw, 46px);
    line-height: 0.94;
  }

  .site-header__mobile-menu--languages {
    gap: 12px;
    padding-top: 12px;
  }

  .page-legal__header,
  .page-legal__content {
    width: 100%;
    max-width: 100%;
  }

  .page-legal__nav {
    gap: 12px 16px;
  }

  .page-legal__content {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .page-legal__section-title {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .page-legal__editor {
    display: block;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero--home .hero__slider,
  .hero--home .hero__video-wrap,
  .hero--home .hero__media > .hero__image,
  .hero--home .hero__slide .hero__image,
  .hero--home .hero__video-wrap video {
    min-height: 70vh;
    height: 70vh;
    min-height: 70dvh;
    height: 70dvh;
  }

  .project-grid__inner,
  .project-single__gallery {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .project-card,
  .project-card--span-2,
  .project-single__figure--large {
    grid-column: 1 / -1 !important;
  }

  .project-card__media {
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .project-card__meta {
    flex-direction: column;
  }

  .project-card__tags {
    justify-content: flex-start;
  }

  .project-filters {
    padding: 34px 0;
  }

  .project-filters__inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

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

  .project-filter {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 14px;
  }

  .project-single__nav {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    text-align: left;
  }

  .project-single__nav-item--center {
    text-align: center;
  }

  .project-single__nav-item--right {
    text-align: right;
  }

  .project-single__nav-item,
  .project-single__nav-item a,
  .project-single__nav-link {
    white-space: nowrap;
  }

  .project-single__nav-item {
    font-size: 15px;
  }

  .project-single__nav-item--center a {
    font-size: 15px;
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 8px;
    text-align: left;
    align-items: center;
  }

  .site-footer__copyright {
    text-align: center;
    white-space: nowrap;
    font-size: 15px;
  }

  .site-footer__link {
    white-space: nowrap;
    font-size: 15px;
  }

  .site-footer__link:first-child {
    justify-self: start;
  }

  .site-footer__link:last-child {
    justify-self: end;
    text-align: right;
  }

  .page-contact__hero-content {
    position: static;
    width: 100%;
    max-width: 100%;
    transform: none;
    font-size: 26px;
    line-height: 1.02;
    padding: 22px 20px 24px;
  }

  .page-about__content {
    width: 100%;
    max-width: none;
    font-size: 26px;
    line-height: 1;
  }

  .page-default__content,
  .page-contact__editor {
    width: 100%;
    max-width: 100%;
    font-size: 32px;
    line-height: 1;
  }

  .page-contact__hero {
    min-height: 0;
  }

  .page-contact__image {
    min-height: 0;
    height: auto;
  }

  .page-contact__content {
    width: 100%;
    max-width: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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