@charset "UTF-8";
/* ==========================================================
   FOUNDATION
========================================================== */
/* =====================================
   Colors
===================================== */
/* =====================================
   Variables
===================================== */
/* =====================================
   Fonts
===================================== */
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Abel";
  src: url("../fonts/Abel.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* =====================================
   Reset
===================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: -webkit-fill-available;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  font-family: "Raleway", sans-serif;
  background-color: #E9E9E9;
  color: #0C0504;
}

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

ul,
ol {
  list-style: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

/* =====================================
   Global
===================================== */
.container {
  width: 85%;
  max-width: 1600px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}

.raleway {
  font-family: "Raleway", sans-serif;
  font-weight: 200;
  text-transform: uppercase;
}

/* =====================================
   Button
===================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid rgba(12, 5, 4, 0.65);
  font-family: "Abel", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: #0C0504;
  background-color: transparent;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.button:hover, .button:focus-visible {
  color: #E9E9E9;
  background-color: #0C0504;
  border-color: #0C0504;
}
.button:active {
  transform: translateY(1px);
}

/* =====================================
   Section label
===================================== */
.section-label {
  margin-bottom: 20px;
  font-family: "Abel", sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #EDC796;
}

/* ==========================================================
   SITE-WIDE LAYOUT
========================================================== */
/* =====================================
   Header
===================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 42px 0;
  color: #E9E9E9;
  background-color: transparent;
  transition: padding 0.35s ease, background-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}
.header__nav {
  position: relative;
  z-index: 1002;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 50px;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__menu--left {
  justify-content: flex-end;
}
.header__menu--right {
  justify-content: flex-start;
}
.header__link {
  position: relative;
  font-family: "Abel", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.82;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.header__link:hover {
  opacity: 1;
  color: #EDC796;
}
.header__link:hover::after {
  transform: scaleX(1);
}
.header__link--active {
  opacity: 1;
}
.header__link--active::after {
  transform: scaleX(1);
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.header__logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  transition: font-size 0.35s ease, color 0.3s ease, opacity 0.3s ease;
}
.header__logo-text:hover {
  color: #EDC796;
}
.header__diamond {
  width: 6px;
  height: 6px;
  background-color: #EDC796;
  transform: rotate(45deg);
}
.header__burger {
  position: relative;
  z-index: 1003;
  display: none;
  width: 34px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.header__burger span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #E9E9E9;
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.header__burger span:nth-child(1) {
  top: 2px;
}
.header__burger span:nth-child(2) {
  top: 11px;
}
.header__burger span:nth-child(3) {
  top: 20px;
}
.header__burger:hover span, .header__burger:focus-visible span {
  background-color: #EDC796;
}
.header__burger:focus-visible {
  outline: none;
}
.header--scrolled {
  padding: 18px 0;
  background-color: rgba(12, 5, 4, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}
.header--scrolled .header__logo-text {
  font-size: 34px;
}
.header--menu-open {
  background-color: rgba(12, 5, 4, 0.98);
}
.header--menu-open .header__burger span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.header--menu-open .header__burger span:nth-child(2) {
  opacity: 0;
}
.header--menu-open .header__burger span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

/* =====================================
   Mobile menu
===================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 130px 24px 40px;
  background-color: rgba(12, 5, 4, 0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-menu__nav {
  width: 100%;
  padding-top: 100px;
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-menu__list li {
  margin: 0;
  padding: 0;
}
.mobile-menu__link {
  position: relative;
  display: inline-block;
  font-family: "Abel", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E9E9E9;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.mobile-menu__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.mobile-menu__link:hover, .mobile-menu__link:focus-visible {
  opacity: 1;
  color: #EDC796;
  transform: translateY(-1px);
}
.mobile-menu__link:hover::after, .mobile-menu__link:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}
.mobile-menu__link--active {
  opacity: 1;
}
.mobile-menu__link--active::after {
  transform: translateX(-50%) scaleX(1);
}
.mobile-menu__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 38px 0 30px;
}
.mobile-menu__divider::before, .mobile-menu__divider::after {
  content: "";
  width: 70px;
  height: 1px;
  background-color: #EDC796;
}
.mobile-menu__diamond {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  background-color: #EDC796;
  transform: rotate(45deg);
}
.mobile-menu__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-menu__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu__social a:hover, .mobile-menu__social a:focus-visible {
  opacity: 1;
  transform: translateY(-4px);
}
.mobile-menu__social img {
  display: block;
  width: 14px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-menu--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* =====================================
   Page hero
===================================== */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80vh;
  min-height: 460px;
  max-height: 680px;
  overflow: hidden;
  color: #E9E9E9;
}
.page-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 2s ease-in-out, transform 8s ease-out;
}
.page-hero__slide--active {
  opacity: 1;
  transform: scale(1.08);
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(12, 5, 4, 0.12) 20%, rgba(12, 5, 4, 0.4) 100%), linear-gradient(to bottom, rgba(12, 5, 4, 0.58) 0%, rgba(12, 5, 4, 0.34) 40%, rgba(12, 5, 4, 0.72) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  margin-top: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1000px, 100% - 40px);
  text-align: center;
}
.page-hero__subtitle {
  margin-bottom: 18px;
  font-family: "Abel", sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(233, 233, 233, 0.8);
}
.page-hero__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-left: 0.14em;
}
.page-hero__description {
  font-family: "Abel", sans-serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-left: 0.26em;
}
.page-hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 26px 0 20px;
}
.page-hero__divider-line {
  width: 100px;
  height: 1px;
  background-color: rgba(237, 199, 150, 0.75);
}
.page-hero__divider-diamond {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  background-color: #EDC796;
  transform: rotate(45deg);
}

/* =====================================
   Footer
===================================== */
.footer {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 760px;
  overflow: hidden;
  color: #E9E9E9;
  background-color: #0C0504;
}
.footer__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.footer__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 35%;
     object-position: center 35%;
}
.footer__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.12) 20%, rgba(0, 0, 0, 0.35) 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.35) 25%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.85) 100%);
}
.footer__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 260px;
  padding-bottom: 36px;
  text-align: center;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 22px;
  transition: opacity 0.3s ease;
  transition: color 0.3s ease;
}
.footer__logo:hover, .footer__logo:focus-visible {
  color: #EDC796;
}
.footer__logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
}
.footer__diamond {
  width: 6px;
  height: 6px;
  background-color: #EDC796;
  transform: rotate(45deg);
}
.footer__name {
  margin-top: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 34px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer__social a:hover, .footer__social a:focus-visible {
  opacity: 1;
  transform: translateY(-4px);
}
.footer__social img {
  display: block;
  width: 15px;
  max-height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 90px;
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: rgba(233, 233, 233, 0.58);
}
.footer__credit {
  transition: color 0.3s ease;
}
.footer__credit:hover, .footer__credit:focus-visible {
  color: #EDC796;
}

/* =====================================
   Gallery lightbox
===================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 28px 42px 24px;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox--open .lightbox__panel {
  opacity: 1;
  transform: scale(1);
}
.lightbox__panel {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 0;
  transform: scale(0.99);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.lightbox__viewer {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  min-height: 0;
  gap: 24px;
}
.lightbox__image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: 20px 0;
  background-color: transparent;
  overflow: hidden;
}
.lightbox__image {
  display: block;
  width: auto;
  max-width: min(82vw, 1400px);
  height: auto;
  max-height: calc(100dvh - 190px);
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.3);
  transition: opacity 0.22s ease, transform 0.3s ease;
}
.lightbox__image--changing {
  opacity: 0;
  transform: scale(0.985);
}
.lightbox__caption {
  max-width: 780px;
  margin: 18px auto 0;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.3s ease;
}
.lightbox__caption--changing {
  opacity: 0;
  transform: translateY(4px);
}
.lightbox__caption[hidden] {
  display: none;
}
.lightbox__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: #E9E9E9;
}
.lightbox__description {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(233, 233, 233, 0.7);
}
.lightbox__year {
  font-family: "Abel", sans-serif;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E9E9E9;
}
.lightbox__arrow {
  position: relative;
  width: 48px;
  height: 70px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.lightbox__arrow::before, .lightbox__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 26px;
  height: 1px;
  background-color: #E9E9E9;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.lightbox__arrow:hover, .lightbox__arrow:focus-visible {
  opacity: 1;
}
.lightbox__arrow:hover::before, .lightbox__arrow:hover::after, .lightbox__arrow:focus-visible::before, .lightbox__arrow:focus-visible::after {
  background-color: #EDC796;
}
.lightbox__arrow--prev {
  justify-self: start;
}
.lightbox__arrow--prev::before, .lightbox__arrow--prev::after {
  left: 8px;
  transform-origin: left center;
}
.lightbox__arrow--prev::before {
  transform: translateY(-50%) rotate(-40deg);
}
.lightbox__arrow--prev::after {
  transform: translateY(-50%) rotate(40deg);
}
.lightbox__arrow--prev:hover, .lightbox__arrow--prev:focus-visible {
  transform: translateX(-3px);
}
.lightbox__arrow--next {
  justify-self: end;
}
.lightbox__arrow--next::before, .lightbox__arrow--next::after {
  right: 8px;
  transform-origin: right center;
}
.lightbox__arrow--next::before {
  transform: translateY(-50%) rotate(40deg);
}
.lightbox__arrow--next::after {
  transform: translateY(-50%) rotate(-40deg);
}
.lightbox__arrow--next:hover, .lightbox__arrow--next:focus-visible {
  transform: translateX(3px);
}
.lightbox__close {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 3;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.lightbox__close span {
  position: absolute;
  top: 20px;
  left: 7px;
  width: 28px;
  height: 1px;
  background-color: #E9E9E9;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.lightbox__close span:first-child {
  transform: rotate(45deg);
}
.lightbox__close span:last-child {
  transform: rotate(-45deg);
}
.lightbox__close:hover span, .lightbox__close:focus-visible span {
  background-color: #EDC796;
}
.lightbox__close:hover span:first-child, .lightbox__close:focus-visible span:first-child {
  transform: rotate(45deg) scaleX(1.1);
}
.lightbox__close:hover span:last-child, .lightbox__close:focus-visible span:last-child {
  transform: rotate(-45deg) scaleX(1.1);
}
.lightbox__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding-top: 8px;
}
.lightbox__counter {
  margin-bottom: 14px;
  font-family: "Abel", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-align: center;
  color: rgba(233, 233, 233, 0.72);
}
.lightbox__thumbnails {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 12px;
  padding: 4px 0 2px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}
.lightbox__thumbnails::-webkit-scrollbar {
  display: none;
}
.lightbox__thumbnail {
  flex: 0 0 84px;
  width: 84px;
  height: 58px;
  padding: 0;
  border: 1px solid transparent;
  background-color: transparent;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.42;
  transition: opacity 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.lightbox__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lightbox__thumbnail:hover, .lightbox__thumbnail:focus-visible {
  opacity: 0.82;
  transform: translateY(-2px);
}
.lightbox__thumbnail--active {
  opacity: 1;
  border-color: #EDC796;
}

/* ==========================================================
   HOME PAGE
========================================================== */
/* =====================================
   Hero
===================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #E9E9E9;
}
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 2s ease-in-out, transform 8s ease-out;
}
.hero__slide--active {
  opacity: 1;
  transform: scale(1.08);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.12) 20%, rgba(0, 0, 0, 0.35) 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.35) 25%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(1200px, 100% - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5.4vw, 92px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-left: 0.24em;
}
.hero__profession {
  font-family: "Abel", sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-left: 0.3em;
}
.hero__social {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  transform: translateX(-50%);
}
.hero__social a {
  font-family: "Abel", sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hero__social a:hover {
  opacity: 1;
  transform: translateY(-4px);
}
.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 26px 0 20px;
}
.hero__divider-line {
  width: 120px;
  height: 1px;
  background-color: rgba(237, 199, 150, 0.75);
}
.hero__divider-diamond {
  width: 7px;
  height: 7px;
  background: #EDC796;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* =====================================
   Quote
===================================== */
.quote-section {
  background-color: #E9E9E9;
  padding: 120px 0;
}

.quote {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.quote__text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 1.8vw, 34px);
  font-weight: 400;
  line-height: 1.45;
  color: #0C0504;
}
.quote__divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 48px 0 42px;
}
.quote__divider::before, .quote__divider::after {
  content: "";
  width: 140px;
  height: 1px;
  background: rgba(237, 199, 150, 0.7);
}
.quote__diamond {
  width: 7px;
  height: 7px;
  background: #EDC796;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.quote__author {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  color: #0C0504;
}

/* =====================================
   About preview
===================================== */
.about-preview {
  background-color: #E9E9E9;
}
.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.about-preview__image {
  min-height: 420px;
  max-height: 460px;
  overflow: hidden;
}
.about-preview__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 25%;
     object-position: center 25%;
}
.about-preview__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  padding: 70px 9%;
}
.about-preview__text {
  max-width: 660px;
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: #0C0504;
}

/* =====================================
   Videos
===================================== */
.videos-section {
  padding: 72px 0 56px;
  background-color: #E9E9E9;
}
.videos-section__header {
  margin-bottom: 34px;
}
.videos-section__title {
  font-family: "Abel", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #0C0504;
}
.videos-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.videos-section__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.video-card {
  overflow: hidden;
  background-color: #0C0504;
}
.video-card__wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-card__wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =====================================
   Press
===================================== */
.press-section {
  padding: 0 0 56px 0;
  background: #E9E9E9;
}
.press-section__title {
  margin-bottom: 70px;
  font-family: "Abel", sans-serif;
  font-size: 18px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.press-section__button {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.press-list {
  max-width: 980px;
  margin: 0 auto;
}

.press-quote {
  text-align: center;
}
.press-quote:not(:last-child) {
  margin-bottom: 60px;
}
.press-quote__text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 1.4vw, 26px);
  font-weight: 400;
  line-height: 1.55;
  color: #0C0504;
}
.press-quote__divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 34px 0 28px;
}
.press-quote__divider::before, .press-quote__divider::after {
  content: "";
  width: 110px;
  height: 1px;
  background: rgba(237, 199, 150, 0.7);
}
.press-quote__diamond {
  width: 7px;
  height: 7px;
  background: #EDC796;
  transform: rotate(45deg);
}
.press-quote__author {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-style: normal;
  color: #0C0504;
}

/* =====================================
   Gallery
===================================== */
.gallery-section {
  padding: 0 0 56px;
  background-color: #E9E9E9;
  color: #0C0504;
}
.gallery-section__header {
  margin-bottom: 34px;
}
.gallery-section__title {
  font-family: "Abel", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.gallery-section__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: rgba(12, 5, 4, 0.08);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(12, 5, 4, 0);
  transition: background-color 0.4s ease;
}
.gallery-item:hover img, .gallery-item:focus-visible img {
  transform: scale(1.05);
  filter: brightness(0.82);
}
.gallery-item:hover::after, .gallery-item:focus-visible::after {
  background-color: rgba(12, 5, 4, 0.08);
}

/* ==========================================================
   ABOUT PAGE
========================================================== */
/* =====================================
   Biography
===================================== */
.biography {
  padding: 120px 0;
  color: #0C0504;
  background-color: #E9E9E9;
}
.biography__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}
.biography__image {
  overflow: hidden;
}
.biography__image img {
  width: 100%;
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.biography__intro-content {
  max-width: 680px;
}
.biography__intro-text {
  margin-top: 26px;
}
.biography__intro-text > p {
  font-size: 16px;
  line-height: 1.85;
}
.biography__intro-text > p:not(:last-child) {
  margin-bottom: 24px;
}
.biography__title {
  margin-bottom: 30px;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
}
.biography__lead {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 400;
  line-height: 1.5;
}
.biography__body {
  max-width: 900px;
  margin: 100px auto 0;
  padding-top: 70px;
  border-top: 1px solid rgba(12, 5, 4, 0.14);
}
.biography__content > p {
  font-size: 16px;
  line-height: 1.95;
}
.biography__content > p:not(:last-child) {
  margin-bottom: 30px;
}
.biography__content a {
  color: #0C0504;
  text-decoration: underline;
  text-decoration-color: rgba(237, 199, 150, 0.75);
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}
.biography__content a:hover, .biography__content a:focus-visible {
  color: #EDC796;
}
.biography__content em {
  font-style: italic;
}
.biography__content strong {
  font-weight: 600;
}
.biography__content + .biography__quote {
  margin-top: 70px;
}
.biography__quote + .biography__content {
  margin-top: 70px;
}
.biography__quote {
  position: relative;
  margin: 70px 0;
  padding: 46px 60px;
  border-top: 1px solid rgba(237, 199, 150, 0.65);
  border-bottom: 1px solid rgba(237, 199, 150, 0.65);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(25px, 2.4vw, 38px);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #0C0504;
}
.biography__quote::before {
  content: "“";
  display: block;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  line-height: 0.7;
  color: #EDC796;
}
.biography__quote cite {
  display: block;
  margin-top: 28px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: rgba(12, 5, 4, 0.72);
}
.biography__quote cite em {
  font-style: italic;
}

/* =====================================
   Media Kit
===================================== */
.media-kit {
  padding: 110px 0;
  color: #E9E9E9;
  background-color: #0C0504;
}
.media-kit__header {
  max-width: 720px;
  margin-bottom: 60px;
}
.media-kit__title {
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 400;
  line-height: 1;
}
.media-kit__description {
  max-width: 620px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(233, 233, 233, 0.7);
}
.media-kit__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.media-kit__note {
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(233, 233, 233, 0.46);
}

.media-download {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
  padding: 38px;
  border: 1px solid rgba(233, 233, 233, 0.16);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.media-download:hover {
  border-color: rgba(237, 199, 150, 0.7);
  transform: translateY(-3px);
}
.media-download__format {
  display: block;
  margin-bottom: 30px;
  font-family: "Abel", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #EDC796;
}
.media-download__title {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}
.media-download__description {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(233, 233, 233, 0.65);
}
.media-download__button {
  align-self: flex-start;
  margin-top: 48px;
  color: #E9E9E9;
  border-color: rgba(233, 233, 233, 0.5);
}
.media-download__button:hover, .media-download__button:focus-visible {
  color: #0C0504;
  background-color: #EDC796;
  border-color: #EDC796;
}

/* =====================================
   About videos
===================================== */
.about-videos {
  padding: 110px 0 90px;
  color: #0C0504;
  background-color: #E9E9E9;
}
.about-videos__header {
  margin-bottom: 44px;
}
.about-videos__title {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1;
}
.about-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.about-videos__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

/* ==========================================================
   PRESS PAGE
========================================================== */
/* =====================================
   Press page
===================================== */
.press-page {
  padding: 120px 0;
  color: #0C0504;
  background-color: #E9E9E9;
}
.press-page__header {
  max-width: 780px;
  margin-bottom: 85px;
}
.press-page__title {
  font-size: clamp(46px, 5vw, 74px);
  font-weight: 400;
  line-height: 1;
}
.press-page__introduction {
  max-width: 620px;
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(12, 5, 4, 0.72);
}
.press-page__featured {
  max-width: 1050px;
  margin: 0 auto 110px;
}
.press-page__list {
  max-width: 980px;
  margin: 0 auto;
}
.press-page__download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 110px;
  padding-top: 55px;
  border-top: 1px solid rgba(12, 5, 4, 0.16);
}
.press-page__download-text {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(12, 5, 4, 0.68);
}

.press-review {
  padding: 65px 0;
  text-align: center;
}
.press-review:not(:last-child) {
  border-bottom: 1px solid rgba(12, 5, 4, 0.12);
}
.press-review--featured {
  padding: 70px 50px;
  border-top: 1px solid rgba(237, 199, 150, 0.7);
  border-bottom: 1px solid rgba(237, 199, 150, 0.7);
}
.press-review--featured .press-review__text {
  font-size: clamp(28px, 3vw, 44px);
}
.press-review--featured .press-review__source {
  margin-top: 0;
}
.press-review__text {
  max-width: 900px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.55;
  color: #0C0504;
}
.press-review__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0 32px;
}
.press-review__divider::before, .press-review__divider::after {
  content: "";
  width: 110px;
  height: 1px;
  background-color: rgba(237, 199, 150, 0.7);
}
.press-review__diamond {
  width: 7px;
  height: 7px;
  background-color: #EDC796;
  transform: rotate(45deg);
}
.press-review__source {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-top: 28px;
  font-family: "Raleway", sans-serif;
  font-style: normal;
  line-height: 1.5;
}
.press-review__source-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.press-review__source-link:hover, .press-review__source-link:focus-visible {
  color: #EDC796;
}
.press-review__source-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.press-review__author {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: #0C0504;
}
.press-review__publication {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(12, 5, 4, 0.66);
}
.press-review__publication::before {
  content: "—";
  margin-right: 8px;
  color: rgba(237, 199, 150, 0.85);
}
.press-review__note {
  display: block;
  max-width: 520px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: rgba(12, 5, 4, 0.48);
}

/* ==========================================================
   GALLERY PAGES
========================================================== */
/* =====================================
   Gallery albums
===================================== */
.gallery-albums {
  padding: 120px 0;
  color: #0C0504;
  background-color: #E9E9E9;
}
.gallery-albums__header {
  max-width: 720px;
  margin-bottom: 70px;
}
.gallery-albums__title {
  font-size: clamp(46px, 5vw, 74px);
  font-weight: 400;
  line-height: 1;
}
.gallery-albums__description {
  max-width: 560px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(12, 5, 4, 0.7);
}
.gallery-albums__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 420px;
  gap: 18px;
}

.album-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.album-card--large {
  grid-row: span 2;
}
.album-card--wide {
  grid-column: span 2;
}
.album-card__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #E9E9E9;
  overflow: hidden;
}
.album-card__image {
  position: absolute;
  inset: 0;
}
.album-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease, filter 0.5s ease;
}
.album-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 5, 4, 0.05) 15%, rgba(12, 5, 4, 0.22) 55%, rgba(12, 5, 4, 0.82) 100%);
  transition: background-color 0.4s ease;
}
.album-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 38px;
}
.album-card__count {
  margin-bottom: 10px;
  font-family: "Abel", sans-serif;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(233, 233, 233, 0.72);
}
.album-card__title {
  font-size: clamp(34px, 3.4vw, 54px);
  font-weight: 400;
  line-height: 1;
}
.album-card__action {
  position: relative;
  display: inline-block;
  margin-top: 18px;
  font-family: "Abel", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
}
.album-card__action::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.album-card:hover .album-card__image img, .album-card:focus-within .album-card__image img {
  transform: scale(1.05);
  filter: brightness(0.82);
}
.album-card:hover .album-card__action, .album-card:focus-within .album-card__action {
  opacity: 1;
}
.album-card:hover .album-card__action::after, .album-card:focus-within .album-card__action::after {
  transform: scaleX(1);
}

/* =====================================
   Gallery album
===================================== */
.gallery-album {
  padding: 100px 0 120px;
  color: #0C0504;
  background-color: #E9E9E9;
}
.gallery-album__header {
  max-width: 760px;
  margin-bottom: 65px;
}
.gallery-album__back {
  display: inline-block;
  margin-bottom: 46px;
  font-family: "Abel", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(12, 5, 4, 0.62);
  transition: color 0.3s ease, transform 0.3s ease;
}
.gallery-album__back:hover, .gallery-album__back:focus-visible {
  color: #EDC796;
  transform: translateX(-3px);
}
.gallery-album__title {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  line-height: 1;
}
.gallery-album__description {
  max-width: 560px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(12, 5, 4, 0.7);
}
.gallery-album__grid {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 14px;
       column-gap: 14px;
}
.gallery-album__item {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 14px;
  overflow: hidden;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.gallery-album__item img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.gallery-album__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(12, 5, 4, 0);
  transition: background-color 0.4s ease;
}
.gallery-album__item:hover img, .gallery-album__item:focus-visible img {
  transform: scale(1.025);
  filter: brightness(0.84);
}
.gallery-album__item:hover::after, .gallery-album__item:focus-visible::after {
  background-color: rgba(12, 5, 4, 0.08);
}

/* ==========================================================
   VIDEOS PAGE
========================================================== */
/* =====================================
   Video frame
===================================== */
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #0C0504;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =====================================
   Featured video
===================================== */
.featured-video {
  padding: 120px 0;
  color: #0C0504;
  background-color: #E9E9E9;
}
.featured-video__header {
  margin-bottom: 55px;
}
.featured-video__heading {
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
}
.featured-video__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
}
.featured-video__meta {
  margin-bottom: 20px;
  font-family: "Abel", sans-serif;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #EDC796;
}
.featured-video__title {
  font-size: clamp(34px, 3.7vw, 56px);
  font-weight: 400;
  line-height: 1.12;
}
.featured-video__description {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(12, 5, 4, 0.72);
}
.featured-video__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 34px 0;
}
.featured-video__details p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(12, 5, 4, 0.75);
}
.featured-video__details span {
  display: block;
  margin-bottom: 5px;
  font-family: "Abel", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(12, 5, 4, 0.46);
}

/* =====================================
   Video library
===================================== */
.video-library {
  padding: 110px 0;
  color: #E9E9E9;
  background-color: #0C0504;
}
.video-library__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}
.video-library__title {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
}
.video-library__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}
.video-library__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 22px;
}

.video-filter {
  position: relative;
  padding: 0 0 7px;
  border: 0;
  background: transparent;
  font-family: "Abel", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(233, 233, 233, 0.55);
  cursor: pointer;
  transition: color 0.3s ease;
}
.video-filter::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #EDC796;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.video-filter:hover, .video-filter:focus-visible, .video-filter--active {
  color: #E9E9E9;
}
.video-filter:hover::after, .video-filter:focus-visible::after, .video-filter--active::after {
  transform: scaleX(1);
}

.video-entry {
  min-width: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.video-entry--hidden {
  display: none;
}
.video-entry__media {
  overflow: hidden;
}
.video-entry__content {
  padding-top: 24px;
}
.video-entry__category {
  margin-bottom: 12px;
  font-family: "Abel", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #EDC796;
}
.video-entry__title {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 1.2;
}
.video-entry__description {
  max-width: 580px;
  margin-top: 13px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(233, 233, 233, 0.62);
}

/* =====================================
   YouTube CTA
===================================== */
.youtube-cta {
  padding: 110px 0;
  color: #0C0504;
  background-color: #E9E9E9;
}
.youtube-cta__content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.youtube-cta__title {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.05;
}
.youtube-cta__description {
  max-width: 600px;
  margin: 24px auto 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(12, 5, 4, 0.7);
}
.youtube-cta__button {
  margin-top: 34px;
}

/* =====================================
   CONTACT PAGE
===================================== */
.contact-section {
  padding: 120px 0;
  color: #0C0504;
  background-color: #E9E9E9;
}
.contact-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(70px, 9vw, 150px);
}
.contact-section__info {
  position: sticky;
  top: 140px;
}
.contact-section__title {
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
}
.contact-section__intro {
  max-width: 520px;
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(12, 5, 4, 0.72);
}
.contact-section__details {
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-top: 58px;
  padding-top: 42px;
  border-top: 1px solid rgba(12, 5, 4, 0.14);
}
.contact-section__form-wrapper {
  min-width: 0;
}

.contact-detail__label {
  margin-bottom: 9px;
  font-family: "Abel", sans-serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(12, 5, 4, 0.5);
}
.contact-detail__value {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  line-height: 1.5;
  color: #0C0504;
}
.contact-detail a.contact-detail__value {
  transition: color 0.3s ease;
}
.contact-detail a.contact-detail__value:hover, .contact-detail a.contact-detail__value:focus-visible {
  color: #EDC796;
}
.contact-detail__social {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.contact-detail__social a {
  position: relative;
  padding-bottom: 5px;
  font-family: "Abel", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(12, 5, 4, 0.68);
  transition: color 0.3s ease;
}
.contact-detail__social a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #EDC796;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.contact-detail__social a:hover, .contact-detail__social a:focus-visible {
  color: #0C0504;
}
.contact-detail__social a:hover::after, .contact-detail__social a:focus-visible::after {
  transform: scaleX(1);
}

/* =====================================
   Contact form
===================================== */
.contact-form {
  padding: 54px;
  border: 1px solid rgba(12, 5, 4, 0.14);
}
.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.contact-form__field {
  margin-bottom: 30px;
}
.contact-form__field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
  font-family: "Abel", sans-serif;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(12, 5, 4, 0.72);
}
.contact-form__field label span {
  font-size: 9px;
  color: rgba(12, 5, 4, 0.42);
}
.contact-form__field input,
.contact-form__field textarea,
.contact-form__field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(12, 5, 4, 0.3);
  border-radius: 0;
  padding: 12px 0;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #0C0504;
  background-color: transparent;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.contact-form__field textarea {
  min-height: 170px;
  resize: vertical;
}
.contact-form__field select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #0C0504 50%), linear-gradient(135deg, #0C0504 50%, transparent 50%);
  background-position: calc(100% - 8px) 50%, calc(100% - 3px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus,
.contact-form__field select:focus {
  border-color: #EDC796;
}
.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 10px;
}
.contact-form__button {
  flex-shrink: 0;
}
.contact-form__note {
  max-width: 300px;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(12, 5, 4, 0.5);
}

/* =====================================
   Contact form messages & spam field
===================================== */
.contact-form__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.contact-form__message {
  margin-bottom: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(12, 5, 4, 0.16);
  font-size: 14px;
  line-height: 1.6;
}
.contact-form__message--success {
  border-color: rgba(237, 199, 150, 0.75);
}
.contact-form__message--error {
  border-color: rgba(12, 5, 4, 0.42);
}

/* =====================================
   404 Page
===================================== */
.error-page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 100px;
  text-align: center;
  color: #E9E9E9;
  background-color: #0C0504;
  overflow: hidden;
}
.error-page__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.error-page__background img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.error-page__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.68) 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.9) 100%);
}
.error-page__content {
  position: relative;
  z-index: 2;
  width: min(760px, 100% - 40px);
  margin: 0 auto;
}
.error-page__code {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(110px, 18vw, 230px);
  font-weight: 300;
  line-height: 0.8;
  letter-spacing: 0.04em;
  color: rgba(233, 233, 233, 0.94);
}
.error-page__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 42px 0 34px;
}
.error-page__divider-line {
  width: 100px;
  height: 1px;
  background-color: rgba(237, 199, 150, 0.75);
}
.error-page__divider-diamond {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  background-color: #EDC796;
  transform: rotate(45deg);
}
.error-page__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.15;
}
.error-page__text {
  max-width: 560px;
  margin: 24px auto 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(233, 233, 233, 0.72);
}
.error-page__button {
  margin-top: 38px;
  color: #E9E9E9;
  border-color: rgba(233, 233, 233, 0.55);
}
.error-page__button:hover, .error-page__button:focus-visible {
  color: #0C0504;
  background-color: #EDC796;
  border-color: #EDC796;
}/*# sourceMappingURL=style.css.map */