:root {
  --font-eb-garamond: "EB Garamond", serif;
  --font-en-secondary: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  --font-en-weight-bold: 500;
  --font-en-weight-body: 400;
  --color-white: #f7f8f7;
  --color-black: #1a1a1a;
  --color-gray: #767676;
  --color-light-gray: #dadada;
  --duration-fade: 0.8s;
  --z-index-global-nav: 10000;
  --z-index-global-nav-button: 10001;
  --z-index-overlay: 20000;
}

*,
:before,
:after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
body {
  color: var(--color-black);
  background: var(--color-white);
  font-family: var(--font-eb-garamond);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
body.menu-open {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  appearance: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  background: 0 0;
  border: none;
  padding: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
img,
svg {
  width: 100%;
  height: auto;
  display: block;
}
.sr-only {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
}

:focus-visible {
  outline: 2px solid var(--color-black);
  outline-offset: 2px;
}

.header {
  font-family: var(--font-eb-garamond);
  height: 14.6667vw;
  z-index: var(--z-index-global-nav);
  justify-content: space-between;
  align-items: center;
  padding: 1.06667vw 3.2vw 0 6.4vw;
  transition: transform 0.3s ease-out;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.header[data-visible="false"] {
  transform: translateY(-100%);
}
.header__logo {
  color: var(--color-black);
  font-size: 4vw;
  font-weight: var(--font-en-weight-bold);
  letter-spacing: 0;
  width: 41.6vw;
  line-height: 1;
}
.header__logo[data-top="true"] {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.header__controls {
  align-items: center;
  gap: 4.66667vw;
  display: flex;
}
.header__lang {
  white-space: nowrap;
  z-index: var(--z-index-global-nav-button);
  align-items: center;
  gap: 2.13333vw;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.3;
  display: flex;
  position: relative;
}
.header__lang-text {
  color: var(--color-gray);
  cursor: pointer;
  font: inherit;
  background: 0 0;
  border: 0;
  padding: 0;
  transition: color 0.2s;
}
.header__lang-text[data-active="true"] {
  color: var(--color-black);
}
.header__lang-separator {
  background-color: var(--color-gray);
  width: 1px;
  height: 2.66667vw;
  display: block;
}
.header__nav {
  display: none;
}
.header__nav-list {
  white-space: nowrap;
  gap: 1.66667vw;
  font-size: max(1.11111vw, 13px);
  font-weight: 500;
  line-height: 1.3;
  display: flex;
}
.header__nav-link {
  color: var(--color-gray);
  transition: color 0.2s;
}
.header__nav-link[data-active="true"],
.header__nav-link:hover {
  color: var(--color-black);
}
.menu-button {
  width: 11.7333vw;
  height: 11.7333vw;
  z-index: var(--z-index-global-nav-button);
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  right: 0.533333vw;
}
.menu-button span {
  background-color: var(--color-black);
  width: 6.4vw;
  height: 0.0625rem;
  transition:
    opacity 0.1s,
    transform 0.1s,
    top 0.1s;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}
.menu-button span:first-child {
  top: 4.2vw;
}
.menu-button span:nth-child(2) {
  top: 5.8vw;
}
.menu-button span:nth-child(3) {
  top: 7.4vw;
}
.menu-open .menu-button span:first-child {
  width: 7.2vw;
  top: 50%;
  transform: translate(-50%, -50%) rotate(27deg);
}
.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}
.menu-open .menu-button span:nth-child(3) {
  width: 7.2vw;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-27deg);
}

.mobile-menu {
  pointer-events: none;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: var(--z-index-global-nav);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}
.menu-open .mobile-menu {
  pointer-events: initial;
  visibility: visible;
}
.mobile-menu__bg {
  background-color: var(--color-black);
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s ease-out;
  position: fixed;
  top: 0;
  left: 0;
}
.menu-open .mobile-menu__bg {
  opacity: 1;
}
.mobile-menu__nav {
  color: var(--color-white);
  opacity: 0;
  flex-direction: column;
  align-items: center;
  gap: 5.06667vw;
  font-size: 8vw;
  font-weight: 500;
  line-height: 1.3;
  transition: opacity 0.2s ease-out;
  display: flex;
  position: relative;
}
.menu-open .mobile-menu__nav {
  opacity: 1;
}

.layout {
  background-color: var(--color-white);
  padding: 14.6667vw 0 0;
  overflow-x: clip;
}
.main {
  position: relative;
}
.top-container {
  flex-direction: column;
  justify-content: flex-end;
  width: 88.2667vw;
  height: calc(100svh - 14.6667vw);
  margin-bottom: 13.0667vw;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 6.13333vw;
  display: flex;
  position: relative;
  overflow: visible;
}
.hero-hills {
  opacity: 0.74;
  pointer-events: none;
  z-index: 0;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}
.top-description {
  letter-spacing: 0.0145em;
  z-index: 1;
  margin-left: 0.266667vw;
  font-size: 2.93333vw;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
}
.top-logo {
  color: var(--color-black);
  z-index: 1;
  width: 100%;
  margin-top: 4.8vw;
  margin-left: 0.8vw;
  display: block;
  position: relative;
}
.top-logo img {
  width: 100%;
  height: auto;
}

.works {
  display: block;
}
.work-container {
  font-family: var(--font-eb-garamond);
  flex-direction: column;
  gap: 12.2667vw;
  width: 87.7333vw;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}
.work-filter {
  flex: none;
  min-width: 0;
}
.work-filter-accordion {
  border-bottom: 1px solid var(--color-light-gray);
}
.work-filter-summary {
  display: block;
}
.work-filter-summary::-webkit-details-marker {
  display: none;
}
.work-filter-summary::marker {
  display: none;
}
.work-filter-summary__inner {
  border-top: 1px solid var(--color-light-gray);
  cursor: pointer;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 4.8vw 0.533333vw 4vw;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1;
  display: flex;
}
.work-filter-summary__icon {
  flex-shrink: 0;
  width: 2.93333vw;
  height: 2.93333vw;
  margin-left: 3.2vw;
  display: block;
  position: relative;
}
.work-filter-summary__icon span {
  background-color: var(--color-black);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}
.work-filter-summary__icon span:first-child {
  width: 2.93333vw;
  height: 0.266667vw;
  margin-top: -0.133333vw;
  margin-left: -1.46667vw;
}
.work-filter-summary__icon span:nth-child(2) {
  width: 0.266667vw;
  height: 2.93333vw;
  margin-top: -1.46667vw;
  margin-left: -0.133333vw;
}
details[open] .work-filter-summary__icon span:nth-child(2) {
  opacity: 0;
}
.work-filter-content {
  overflow: hidden;
}
.work-filter-content__inner {
  flex-direction: column;
  gap: 6.4vw;
  padding: 3.2vw 0.533333vw 5.33333vw;
  display: flex;
}
.filter-group {
  border: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 3.2vw 4.53333vw;
  margin: 0;
  padding: 0;
  display: flex;
}
.filter-group legend {
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}
.filter-input {
  opacity: 0;
  width: 1em;
  height: 1em;
  margin: 0;
  position: absolute;
}
.filter-label {
  color: var(--color-gray);
  cursor: pointer;
  white-space: nowrap;
  align-items: center;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1;
  transition: color 0.2s;
  display: flex;
  position: relative;
}
.filter-label:hover,
.filter-label.is-active {
  color: var(--color-black);
}
.work-list-wrapper {
  flex: auto;
  min-width: 0;
}
.section-logo {
  color: var(--color-black);
  font-family: "Times New Roman", Times, serif;
  letter-spacing: -0.075em;
  transform-origin: 0 100%;
  height: auto;
  margin-bottom: 9.6vw;
  font-size: 12vw;
  font-weight: 500;
  line-height: 0.78;
  transform: scaleX(0.94);
}
.section-logo--small {
  width: 87.7333vw;
  margin-left: auto;
  margin-right: auto;
}
.work-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12.8vw 4.26667vw;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}
.work-grid__item {
  flex-direction: column;
  animation: 0.3s ease-out forwards fade-in;
  display: flex;
}
.work-grid__item.is-hidden {
  display: none;
}
.work-card:hover .work-card__title {
  color: var(--color-gray);
}
.work-card__image-wrapper {
  aspect-ratio: 4/5;
  background-color: var(--color-light-gray);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.work-card__image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.work-card__meta {
  flex-direction: column;
  gap: 2.13333vw;
  margin-top: 3.2vw;
  display: flex;
}
.work-card__title {
  font-feature-settings: "palt" 1;
  font-size: 4vw;
  font-weight: var(--font-en-weight-body);
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
  line-height: 1.3;
  transition: color 0.2s;
}
.work-card__info {
  flex-wrap: wrap;
  align-items: center;
  gap: 2.4vw;
  display: flex;
}
.work-card__category,
.work-card__year {
  color: var(--color-gray);
  letter-spacing: 0.01em;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  font-size: 3.2vw;
  font-weight: 400;
  line-height: 1;
}

.cv {
  padding-top: 35.7333vw;
  padding-bottom: 35.7333vw;
  display: block;
}
.cv-list {
  border-bottom: 1px solid var(--color-light-gray);
  width: 87.7333vw;
  margin-left: auto;
  margin-right: auto;
}
.cv-list__year-item {
  border-top: 1px solid var(--color-light-gray);
  padding: 4vw 0;
  display: flex;
}
.cv-list__year {
  font-feature-settings: "palt";
  font-size: 4vw;
  font-weight: var(--font-en-weight-body);
  flex-shrink: 0;
  width: 22.9333vw;
  padding-right: 3.2vw;
  line-height: 1.3;
}
.cv-list__event-list {
  flex-direction: column;
  flex-grow: 2;
  display: flex;
}
.cv-list__event {
  flex-direction: column;
  gap: 1.6vw;
  display: flex;
}
.cv-list__event:not(:first-child) {
  border-top: 1px solid var(--color-light-gray);
  margin-top: 4.26667vw;
  padding-top: 4.26667vw;
}
.cv-list__title {
  font-feature-settings: "palt";
  font-size: 4vw;
  font-weight: var(--font-en-weight-body);
  line-height: 1.3;
}
.cv-list__location {
  color: var(--color-gray);
  font-feature-settings: "palt";
  font-size: 3.46667vw;
  font-weight: var(--font-en-weight-body);
  line-height: 1.45;
}
.cv-button {
  width: fit-content;
  margin-top: 7.46667vw;
  margin-left: 29.8667vw;
  font-size: 4.26667vw;
  text-decoration-line: underline;
  transition: color 0.2s;
  display: block;
}
.cv-button:hover {
  color: var(--color-gray);
}

.contact {
  padding-bottom: 35.7333vw;
  display: block;
}
.contact__container {
  width: 63.7333vw;
  margin-top: 0.266667vw;
  margin-left: 29.8667vw;
}
.contact__text {
  font-feature-settings: "palt";
  font-size: 4vw;
  font-weight: var(--font-en-weight-body);
  line-height: 1.65;
}
.contact__note {
  color: var(--color-gray);
  font-feature-settings: "palt";
  font-size: 3.46667vw;
  font-weight: var(--font-en-weight-body);
  width: 63.7333vw;
  margin-top: 4.26667vw;
  line-height: 1.65;
}
.contact__mail {
  margin-top: 7.46667vw;
  font-size: 4.26667vw;
  text-decoration-line: underline;
  transition: color 0.2s;
  display: block;
}
.contact__mail:hover {
  color: var(--color-gray);
}

.footer {
  font-family: var(--font-eb-garamond);
  width: 100%;
}
.footer__container {
  flex-direction: column;
  gap: 5.6vw;
  width: 89.3333vw;
  margin-left: auto;
  margin-right: auto;
  padding: 8.53333vw 0;
  display: flex;
}
.footer__content {
  flex-direction: column;
  gap: 10.6667vw;
  width: 100%;
  display: flex;
}
.footer__top-section {
  grid-template-columns: 1fr;
  align-items: flex-start;
  gap: 8.8vw;
  width: 100%;
  display: grid;
  position: relative;
}
.footer__home-link,
.footer__instagram,
.footer__nav,
.footer__socials,
.footer__legal {
  color: var(--color-gray);
  white-space: nowrap;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.2s;
}
.footer__home-link:hover,
.footer__instagram:hover,
.footer__nav a:hover,
.footer__socials a:hover,
.footer__legal a:hover {
  color: var(--color-black);
}
.footer__nav,
.footer__socials,
.footer__legal {
  flex-direction: column;
  gap: 5.06667vw;
  display: flex;
}
.footer__legal {
  gap: 3.2vw;
  font-size: 3.46667vw;
}
.footer__nav-link--emphasis {
  font-family:
    Times New Roman,
    Times,
    serif;
  font-size: 1.34em;
  line-height: 0.95;
}
.section-logo--small {
  font-family:
    Times New Roman,
    Times,
    serif;
}
.footer__copy {
  color: var(--color-gray);
  font-size: 3.2vw;
  line-height: 1.3;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (width>=768px) {
  .header {
    height: 4.93056vw;
    padding: 0 3.81944vw;
  }
  .header__logo {
    width: 10.0694vw;
    font-size: max(1.11111vw, 13px);
  }
  .header__controls {
    gap: 2.77778vw;
    padding-top: 0.138889vw;
  }
  .header__lang {
    gap: 0.833333vw;
    font-size: max(1.11111vw, 13px);
  }
  .header__lang-separator {
    height: 0.694444vw;
  }
  .header__nav {
    display: block;
  }
  .menu-button,
  .mobile-menu {
    display: none;
  }
  .layout {
    padding: 4.93056vw 0 0;
  }
  .top-container {
    width: 93.6806vw;
    height: calc(100svh - 4.93056vw);
    margin-bottom: 4.375vw;
    padding-bottom: 2.56944vw;
  }
  .top-description {
    letter-spacing: 0.03em;
    margin-left: 0.763889vw;
    font-size: 0.972222vw;
  }
  .top-logo {
    margin-top: 1.66667vw;
    margin-left: 0.138889vw;
  }
  .work-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 16.3889vw;
    width: 92.2222vw;
  }
  .work-filter {
    min-width: 7.08333vw;
  }
  .work-filter-accordion {
    border-bottom: none;
  }
  .work-filter-summary {
    display: none;
  }
  .work-filter-content__inner {
    gap: 2.5vw;
    padding: 0;
  }
  .filter-group {
    flex-flow: column;
    align-items: flex-start;
    gap: 0.833333vw;
  }
  .filter-label {
    font-size: max(1.11111vw, 0.8125rem);
  }
  .section-logo {
    margin-bottom: 3.75vw;
    font-size: 4.30556vw;
  }
  .section-logo--small {
    width: 92.2222vw;
  }
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5.55556vw 1.66667vw;
  }
  .work-card__meta {
    gap: 0.555556vw;
    margin-top: 0.833333vw;
  }
  .work-card__title {
    font-size: max(1.11111vw, 0.75rem);
  }
  .work-card__info {
    gap: 0.694444vw;
  }
  .work-card__category,
  .work-card__year {
    font-size: 0.972222vw;
  }
  .cv {
    padding-top: 13.8889vw;
    padding-bottom: 14.2361vw;
  }
  .cv-list {
    width: 92.2222vw;
  }
  .cv-list__year-item {
    padding: 1.52778vw 0;
  }
  .cv-list__year {
    width: 15.5556vw;
    padding-right: 1.66667vw;
    font-size: 1.11111vw;
  }
  .cv-list__event {
    flex-direction: row;
    gap: 0;
  }
  .cv-list__event:not(:first-child) {
    margin-top: 1.52778vw;
    padding-top: 1.52778vw;
  }
  .cv-list__title {
    flex-shrink: 0;
    width: 31.3194vw;
    padding-right: 5.625vw;
    font-size: max(1.11111vw, 0.75rem);
  }
  .cv-list__location {
    width: 21.6667vw;
    font-size: max(1.11111vw, 0.75rem);
  }
  .cv-button {
    margin-top: 2.22222vw;
    margin-left: 50.8333vw;
    font-size: 1.25vw;
  }
  .contact {
    padding-bottom: 14.2361vw;
  }
  .contact__container {
    width: 37.4306vw;
    margin-top: 0;
    margin-left: 50.8333vw;
  }
  .contact__text {
    font-size: max(1.11111vw, 0.75rem);
  }
  .contact__note {
    width: 100%;
    margin-top: 0.694444vw;
    font-size: 1vw;
  }
  .contact__mail {
    margin-top: 2.22222vw;
    font-size: 1.25vw;
  }
  .footer__container {
    gap: 8.54167vw;
    width: 93.6806vw;
    padding: 2.77778vw 0;
  }
  .footer__content {
    flex-direction: column;
    gap: 5.55556vw;
    width: 93.125vw;
    margin-left: auto;
    margin-right: auto;
  }
  .footer__top-section {
    grid-template-columns: 0.85fr 1fr 1.35fr 1.05fr;
    gap: 3.47222vw;
    width: 100%;
    margin-left: 0;
    padding: 0 0 0 0.416667vw;
  }
  .footer__home-link,
  .footer__instagram,
  .footer__nav,
  .footer__socials,
  .footer__legal {
    flex-direction: row;
    gap: 2.77778vw;
    font-size: max(1.11111vw, 13px);
  }
  .footer__legal {
    gap: 1.66667vw;
    font-size: max(0.90278vw, 11px);
  }
  .footer__copy {
    padding-left: 0.416667vw;
    font-size: 0.972222vw;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  :before,
  :after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
