:root {
  --header-height: 88px;
  --header-text: #f5f1e8;
  --header-border: rgba(255, 255, 255, 0.14);
  --header-glass-strong: rgba(20, 20, 20, 0.24);
  --header-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  --header-max-width: 1440px;
  --gold-soft: #d8c3a0;
}

.site-header,
.site-header * {
  font-family: var(--font-sans);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.35s ease,
    backdrop-filter 0.35s ease,
    -webkit-backdrop-filter 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background-color: rgba(12, 12, 12, 0.22);
  backdrop-filter: blur(34px) saturate(160%);
  -webkit-backdrop-filter: blur(34px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

.site-header__inner {
  max-width: var(--header-max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.site-header__brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.site-header__brand img {
  height: 48px;
  width: auto;
  display: block;
  transition: height 0.35s ease, transform 0.35s ease;
}

.site-header.is-scrolled .site-header__brand img {
  height: 34px;
}

.site-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-header__left,
.site-header__right {
  min-width: 0;
}

.inquiry-btn,
.mobile-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(216, 195, 160, 0.45);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--header-text);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.inquiry-btn:hover,
.mobile-inquiry:hover {
  background: rgba(216, 195, 160, 0.12);
  border-color: rgba(216, 195, 160, 0.8);
  transform: translateY(-1px);
}

.burger {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.burger span {
  width: 22px;
  height: 1.5px;
  background: var(--header-text);
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
}

.burger.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.lang-dropdown {
  position: relative;
}

.lang-dropdown__trigger {
  height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--header-text);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.lang-dropdown__trigger:hover,
.lang-dropdown__trigger.is-open {
  border-color: rgba(216, 195, 160, 0.45);
  background: rgba(255, 255, 255, 0.07);
}

.lang-dropdown__caret {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.25s ease;
}

.lang-dropdown__trigger.is-open .lang-dropdown__caret {
  transform: rotate(-135deg) translateY(-1px);
}

.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 100%;
  padding: 8px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: rgba(16, 16, 16, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lang-dropdown__menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-dropdown__menu a,
.lang-dropdown__menu button,
.mobile-panel__nav a,
.lang-switch a,
.lang-switch button {
  color: var(--header-text);
  text-decoration: none;
  background: none;
  border: 0;
  width: 100%;
  padding: 12px 14px;
  text-align: left;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.lang-dropdown__menu a:hover,
.lang-dropdown__menu button:hover,
.lang-switch a:hover,
.lang-switch button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.mobile-panel__nav a:hover {
  color: #111;
  background: transparent;
  transform: translateX(8px);
}

.lang-dropdown__menu a.active,
.lang-dropdown__menu button.active,
.lang-switch a.active,
.lang-switch button.active {
  color: #8d7552;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(20, 20, 20, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: min(45vw, 500px);
  max-width: 1200px;
  min-width: 320px;
  height: 100vh;
  z-index: 1100;
  padding: 42px 52px 46px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(240, 236, 226, 1);
  backdrop-filter: blur(24px) saturate(135%);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
  border-right: 1px solid rgba(49, 49, 49, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transform: translateX(-100%) scale(0.985);
  transform-origin: left center;
  opacity: 0;
  transition:
    transform 0.75s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.55s ease;
}

.mobile-panel__top {
  position: sticky;
  top: 0;
  z-index: 2;
  padding-bottom: 18px;
  background: rgba(240, 236, 226, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-panel.is-open {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.mobile-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.lang-switch a,
.lang-switch button {
  width: auto;
  padding: 10px 12px;
  color: #313131;
}

.lang-dropdown__menu a {
  display: block;
}

.menu-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(49, 49, 49, 0.16);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  cursor: pointer;
  flex: 0 0 auto;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.menu-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: #313131;
}

.menu-close:hover {
  background: rgba(255, 255, 255, 0.32);
  border-color: rgba(49, 49, 49, 0.24);
  transform: rotate(90deg);
}

.menu-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-panel__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
  flex: 1;
  justify-content: center;
}

.mobile-panel__nav a {
  width: auto;
  padding: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 1.4vw, 32px);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.02;
  color: #313131;
  background: none;
  transition:
    color 0.25s ease,
    transform 0.35s ease,
    opacity 0.35s ease;
}

.mobile-panel__bottom {
  padding-top: 30px;
}

.mobile-inquiry {
  min-width: 190px;
  height: 56px;
}

.mobile-panel .mobile-inquiry {
  color: #f0ece2;
  border-color: #313131;
  background: #313131;
}

.mobile-panel .mobile-inquiry:visited,
.mobile-panel .mobile-inquiry:active,
.mobile-panel .mobile-inquiry:hover {
  color: #f0ece2;
}

.mobile-panel .mobile-inquiry:hover {
  background: #252525;
  border-color: #252525;
}

@media (max-width: 1024px) {
  .site-header__inner {
    grid-template-columns: 1fr 1fr;
    padding: 0 18px;
  }

  .site-header__left {
    gap: 10px;
  }

  .site-header__brand img {
    height: 30px;
  }

  .inquiry-btn {
    min-width: auto;
    height: 40px;
    padding: 0 16px;
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .mobile-panel {
    width: 100vw;
    min-width: 0;
    padding: 28px 24px 34px;
  }

  .mobile-panel__nav a {
    font-size: clamp(22px, 8vw, 34px);
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 76px;
  }

  .site-header__brand img {
    height: 24px;
  }

  .inquiry-btn {
    padding: 0 12px;
    height: 38px;
  }

  .site-header__inner {
    padding: 0 14px;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .site-header__left {
    gap: 8px;
  }

  .site-header__brand {
    position: static;
    transform: none;
    justify-self: center;
  }

  .site-header__right {
    justify-self: end;
  }

  .lang-dropdown__trigger {
    padding: 0 6px;
    min-width: auto;
  }

  .inquiry-btn {
    min-width: 0;
    padding: 0 10px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .lang-dropdown__trigger {
    padding: 0 10px;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }
}

@media (max-width: 640px) {
  .mobile-panel__bottom {
    padding-top: 22px;
  }

  .mobile-inquiry {
    width: 100%;
    min-width: 0;
    height: 50px;
  }

  .lang-switch {
    gap: 2px;
  }

  .lang-switch a,
  .lang-switch button {
    padding: 8px 10px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .menu-close {
    width: 40px;
    height: 40px;
  }
}.site-footer {
  position: relative;
  background:
    linear-gradient(180deg, #313131 0%, #0b0b0b 100%);
  color: #f5f1e8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 84px 28px 28px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 0.85fr;
  gap: 56px;
  padding-bottom: 52px;
}

.site-footer__col h3,
.site-footer__col h4 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-weight: 400;
  color: #d8c3a0;
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: 18px;
}

.site-footer__col--brand p {
  max-width: 440px;
  margin: 0;
  color: rgba(245, 241, 232, 0.78);
  line-height: 1.8;
  font-size: 14px;
}

.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__col li + li {
  margin-top: 5px;
}

.site-footer__col a,
.site-footer__bottom-links a {
  color: rgba(245, 241, 232, 0.86);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.site-footer__col a {
  font-size: 14px;
  line-height: 1.6;
}

.site-footer__col a:hover,
.site-footer__bottom-links a:hover {
  color: #ffffff;
}

.site-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__bottom p {
  margin: 0;
  max-width: 760px;
  color: rgba(245, 241, 232, 0.62);
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.site-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer__bottom-links a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.62);
}

@media (max-width: 1100px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .site-footer__bottom-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-footer__inner {
    padding: 64px 18px 24px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }
}.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1400;
  color: #313131;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  background: rgba(240, 236, 226, 0.9);
  border: 1px solid rgba(49, 49, 49, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.cookie-banner__text {
  flex: 1;
  min-width: 0;
}

.cookie-banner__text p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(49, 49, 49, 0.86);
}

.cookie-banner__text a {
  color: #313131;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-banner__btn {
  min-width: 112px;
  height: 44px;
  padding: 0 18px;
  border: 1px solid #313131;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: #313131;
}

.cookie-banner__btn--secondary:hover {
  background: rgba(49, 49, 49, 0.06);
}

.cookie-banner__btn--primary {
  background: #313131;
  color: #f0ece2;
}

.cookie-banner__btn--primary:hover {
  background: #1f1f1f;
  border-color: #1f1f1f;
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1 1 0;
    min-width: 0;
  }
}.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0f0f0f;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.3) 42%, rgba(0, 0, 0, 0.5) 100%);
}

.hero__center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(920px, 88vw);
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.hero__eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero__center h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #fff;
}

.hero__subline {
  max-width: 720px;
  margin: 22px auto 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.68);
}

@media (max-width: 640px) {
  .hero__center {
    width: 90vw;
  }

  .hero__subline {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero__scroll {
    bottom: 28px;
  }
}.editorial-section {
  background: #f3efe7;
  color: #313131;
}

.editorial-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 110px 28px;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 70px;
  align-items: center;
}

.editorial-section__content {
  max-width: 520px;
}

.editorial-section__eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(49, 49, 49, 0.72);
}

.editorial-section__content h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.editorial-section__text {
  margin: 24px 0 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.9;
  color: rgba(49, 49, 49, 0.84);
}

.editorial-section__text p {
  margin: 0;
}

.editorial-section__text p + p {
  margin-top: 18px;
}

.editorial-section__link {
  margin-top: 34px;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: #313131;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.editorial-section__link-line {
  width: 100%;
  max-width: 180px;
  height: 1px;
  background: rgba(49, 49, 49, 0.5);
  transition: transform 0.3s ease, background 0.3s ease;
  transform-origin: left center;
}

.editorial-section__link:hover .editorial-section__link-line {
  transform: scaleX(1.08);
  background: #313131;
}

.editorial-section__media {
  position: relative;
}

.editorial-section__slider {
  position: relative;
  height: min(70vh, 760px);
  min-height: 460px;
  overflow: hidden;
  background: #ddd7cb;
}

.editorial-section__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease, transform 1.1s ease;
  transform: scale(1.03);
}

.editorial-section__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.editorial-section__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.editorial-section__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.editorial-section__arrow--prev {
  left: 20px;
}

.editorial-section__arrow--next {
  right: 20px;
}

.editorial-section__dots {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.editorial-section__dots button {
  width: 28px;
  height: 1px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.editorial-section__dots button.is-active {
  background: #fff;
}

@media (max-width: 1024px) {
  .editorial-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 84px 20px;
  }

  .editorial-section__content {
    max-width: none;
  }

  .editorial-section__slider {
    height: 62vh;
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .editorial-section__inner {
    padding: 72px 16px;
  }

  .editorial-section__slider {
    min-height: 320px;
    height: 52vh;
  }

  .editorial-section__arrow {
    width: 42px;
    height: 42px;
  }
}.inner-page-hero {
  position: relative;
  min-height: 60vh;
  padding: 120px 0 70px;
  background: #f3efe7;
  color: #fff;
  overflow: hidden;
}

.inner-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.inner-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inner-page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.28) 0%,
      rgba(0, 0, 0, 0.36) 42%,
      rgba(0, 0, 0, 0.52) 100%
    );
}

.inner-page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.inner-page-hero__eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.inner-page-hero__inner h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.95;
  font-weight: 400;
}

.inner-page-hero__text {
  max-width: 760px;
  margin-top: 28px;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
}

.inner-page-hero__text p {
  margin: 0;
}

.inner-page-hero__text p + p {
  margin-top: 18px;
}

@media (max-width: 640px) {
  .inner-page-hero {
    min-height: 78vh;
    padding: 150px 0 72px;
  }

  .inner-page-hero__inner {
    padding: 0 16px;
  }
}.gallery-page {
  margin-top: 40px;
  background: #f3efe7;
  color: #313131;
  padding: 0 0 110px;
}

.gallery-page__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
}

.gallery-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 28px;
}

.gallery-card {
  display: flex;
  flex-direction: column;
}

.gallery-card__image-wrap {
  background: #e7e1d6;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.gallery-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-card:hover .gallery-card__image {
  transform: scale(1.03);
}

.gallery-card__download {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 150px;
  height: 44px;
  padding: 0 18px;
  border: 1px solid #313131;
  background: transparent;
  color: #313131;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.gallery-card__download:hover {
  background: #313131;
  color: #f0ece2;
}

@media (max-width: 1024px) {
  .gallery-page {
    padding-bottom: 84px;
  }

  .gallery-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }
}

@media (max-width: 640px) {
  .gallery-page__inner {
    padding: 0 16px;
  }

  .gallery-page__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .gallery-card__download {
    width: 100%;
    align-self: stretch;
  }
}.residence-category {
  background: #f3efe7;
  color: #313131;
  overflow: hidden;
}

.residence-category.is-alt-background {
  background: #fffdf8;
}

.residence-category__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 110px 28px;
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(320px, 0.95fr);
  gap: 70px;
  align-items: center;
}

.residence-category.is-mirrored .residence-category__inner {
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
}

.residence-category.is-mirrored .residence-category__media {
  order: 2;
}

.residence-category.is-mirrored .residence-category__content {
  order: 1;
}

.residence-category__media,
.residence-category__content {
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 1.1s cubic-bezier(0.19, 1, 0.22, 1);
}

.residence-category__media {
  position: relative;
  min-height: 720px;
  transform: translateY(70px);
}

.residence-category__content {
  max-width: 520px;
  transform: translateY(55px);
}

.residence-category.is-visible .residence-category__media,
.residence-category.is-visible .residence-category__content {
  opacity: 1;
  transform: translateY(0);
}

.residence-category__media-main {
  position: relative;
  width: min(100%, 720px);
  height: 640px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
  transform: translateY(calc(var(--parallax-offset, 0px) * 0.45));
  transition: transform 0.25s linear;
  will-change: transform;
}

.residence-category__media-main img,
.residence-category__media-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.residence-category__media:hover .residence-category__media-main img,
.residence-category__media:hover .residence-category__media-secondary img {
  transform: scale(1.04);
}

.residence-category__media-secondary {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s linear;
  will-change: transform;
}

.residence-category__media-secondary--one {
  right: 10px;
  bottom: 110px;
  width: 240px;
  height: 300px;
  transform: translateY(calc(var(--parallax-offset, 0px) * 0.75));
}

.residence-category__media-secondary--two {
  left: 60px;
  bottom: -20px;
  width: 220px;
  height: 260px;
  transform: translateY(calc(var(--parallax-offset, 0px) * 1.05));
}

.residence-category.is-mirrored .residence-category__media-secondary--one {
  left: 10px;
  right: auto;
}

.residence-category.is-mirrored .residence-category__media-secondary--two {
  right: 60px;
  left: auto;
}

.residence-category__eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(49, 49, 49, 0.7);
}

.residence-category__content h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 68px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.residence-category__text {
  margin-top: 26px;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.9;
  color: rgba(49, 49, 49, 0.84);
}

.residence-category__text p {
  margin: 0;
}

.residence-category__text p + p {
  margin-top: 18px;
}

.residence-category__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.residence-category__btn {
  min-width: 168px;
  height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #313131;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.residence-category__btn:hover {
  transform: translateY(-2px);
}

.residence-category__btn--dark {
  background: #313131;
  color: #f3efe7;
}

.residence-category__btn--dark:hover {
  background: #1f1f1f;
  border-color: #1f1f1f;
}

.residence-category__btn--ghost {
  background: transparent;
  color: #313131;
}

.residence-category__btn--ghost:hover {
  background: rgba(49, 49, 49, 0.06);
}

@media (max-width: 1100px) {
  .residence-category__inner,
  .residence-category.is-mirrored .residence-category__inner {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 84px 20px;
  }

  .residence-category__media,
  .residence-category__content,
  .residence-category.is-mirrored .residence-category__media,
  .residence-category.is-mirrored .residence-category__content {
    order: initial;
  }

  .residence-category__media {
    min-height: 620px;
  }

  .residence-category__content {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .residence-category__inner {
    padding: 72px 16px;
  }

  .residence-category__media,
  .residence-category__content {
    opacity: 1;
    transform: none;
  }

  .residence-category__media {
    min-height: auto;
  }

  .residence-category__media-main {
    width: 100%;
    height: 420px;
    transform: none;
  }

  .residence-category__media-secondary--one,
  .residence-category__media-secondary--two {
    display: none;
  }

  .residence-category__actions {
    flex-direction: column;
  }

  .residence-category__btn {
    width: 100%;
  }
}@font-face {
  font-family: 'Clarice';
  src: url('/fonts/clarice-regular-webfont.woff2') format('woff2'),
       url('/fonts/clarice-regular-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Clarice';
  src: url('/fonts/clarice-italic-webfont.woff2') format('woff2'),
       url('/fonts/clarice-italic-webfont.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Clarice';
  src: url('/fonts/claricemedium-webfont.woff2') format('woff2'),
       url('/fonts/claricemedium-webfont.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Clarice';
  src: url('/fonts/claricemediumitalic-webfont.woff2') format('woff2'),
       url('/fonts/claricemediumitalic-webfont.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

:root {
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Clarice", "Times New Roman", serif;
}

body {
  margin: 0;
  background: #f3eee7;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

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