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

.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.22) 0%, rgba(0, 0, 0, 0.42) 45%, rgba(0, 0, 0, 0.62) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 140px 7vw 182px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 980px;
}

.hero__eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero__content h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 62px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: 14ch;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 170px;
  height: 52px;
  margin-top: 28px;
  padding: 0 24px;
  border: 1px solid rgba(216, 195, 160, 0.5);
  border-radius: 0;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero__cta:hover {
  background: rgba(216, 195, 160, 0.12);
  border-color: rgba(216, 195, 160, 0.8);
  transform: translateY(-1px);
}

.hero__center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(920px, 88vw);
  text-align: center;
  z-index: 2;
}

.hero__subline {
  max-width: 60ch;
}

.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;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
}

.hero__scroll-line {
  width: 1px;
  height: 42px;
  background: rgba(255,255,255,0.65);
}: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 button,
.mobile-panel__nav 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 button: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 button.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;
  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.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 button {
  width: auto;
  padding: 10px 12px;
  color: #313131;
}

.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: #313131;
  border-color: rgba(49, 49, 49, 0.22);
  background: rgba(255, 255, 255, 0.22);
}

.mobile-panel .mobile-inquiry:hover {
  background: rgba(255, 255, 255, 0.34);
  border-color: rgba(49, 49, 49, 0.34);
}

@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: 1fr 1fr;
    gap: 10px;
  }

  .lang-dropdown__trigger {
    padding: 0 10px;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }
}.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;
  }
}