@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Jost:wght@300;400;500&family=DM+Mono:wght@300;400&display=swap');

:root {
  --black: #080808;
  --deep: #111008;
  --gold: #c9a234;
  --gold-light: #e8c96d;
  --gold-muted: #8a6f3a;
  --cream: #f7f2e8;
  --white: #fafaf8;
  --green: #152210;
  --text-muted: #8a8070;

  --font-display: 'Playfair Display', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Jost', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --hero-size: clamp(72px, 10vw, 140px);
  --h2-size: clamp(36px, 5vw, 72px);
  --h3-size: clamp(20px, 2.5vw, 32px);

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-15: 120px;

  --container: 1320px;
  --nav-h: 92px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background: radial-gradient(circle at 20% 0%, #18160f 0%, var(--black) 45%, #050505 100%);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

body.cursor-enabled,
body.cursor-enabled a,
body.cursor-enabled button {
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 200ms ease;
}

img,
svg,
iframe {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

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

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.section {
  padding-block: var(--space-15);
}

.label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: 0.02em;
  font-weight: 400;
}

h2 {
  font-size: var(--h2-size);
}

.section-number {
  position: relative;
}

.section-number::before {
  content: attr(data-number);
  position: absolute;
  right: 4%;
  top: 24px;
  font-family: var(--font-display);
  font-size: clamp(70px, 14vw, 180px);
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  background: var(--black);
}

.preloader__lotus {
  width: 72px;
  height: 72px;
}

.preloader__lotus path {
  stroke: var(--gold);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: lotusDraw 1.1s ease forwards;
}

.preloader__lotus path:nth-child(2) {
  animation-delay: 0.15s;
}

.preloader__lotus path:nth-child(3) {
  animation-delay: 0.3s;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms ease, visibility 320ms ease;
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 6000;
}

.cursor--main {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(232, 201, 109, 0.8);
  background: rgba(201, 162, 52, 0.16);
  transition: transform 220ms ease, width 220ms ease, height 220ms ease;
}

.cursor--trail {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
}

.cursor--main.cursor-grow {
  width: 32px;
  height: 32px;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 3000;
  transition: background-color 320ms ease, backdrop-filter 320ms ease, border-color 320ms ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled,
.nav.nav--solid {
  background: rgba(8, 8, 8, 0.72);
  border-color: rgba(201, 162, 52, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: var(--space-4);
}

.nav__logo {
  font-family: var(--font-sans);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.nav__logo span {
  display: block;
  font-size: 30px;
  line-height: 1;
  font-weight: 300;
}

.nav__logo small {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--cream);
  opacity: 0.85;
}

.nav__links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.8vw, 44px);
}

.nav__link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(247, 242, 232, 0.84);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold-light);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

.nav__burger {
  display: none;
  width: 32px;
  background: transparent;
  border: 0;
  gap: 6px;
  flex-direction: column;
}

.nav__burger span {
  height: 1px;
  background: var(--gold-light);
  transition: 220ms ease;
}

.nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 2990;
  display: grid;
  place-content: center;
  gap: var(--space-4);
  background: rgba(8, 8, 8, 0.97);
  transform: translateY(-100%);
  transition: transform 300ms ease;
}

.nav__mobile.open {
  transform: translateY(0);
}

.nav__mobile-link {
  text-align: center;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(18px, 5vw, 26px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  background: transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--deep);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-ghost,
.btn-pill {
  border-color: rgba(201, 162, 52, 0.45);
  color: var(--cream);
}

.btn-ghost:hover,
.btn-pill:hover {
  border-color: var(--gold-light);
  background: rgba(201, 162, 52, 0.12);
  color: var(--gold-light);
}

body.exp-video-open {
  overflow: hidden;
}

.exp-video-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(8, 8, 8, 0.58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity 200ms ease, visibility 200ms ease;
}

.exp-video-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.exp-video-overlay__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000;
  filter: brightness(1.5) contrast(1.15) saturate(1.08);
  z-index: 1;
}

.exp-video-overlay__controls {
  position: absolute;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  display: flex;
  gap: 8px;
  z-index: 2;
}

.exp-video-overlay__control {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(247, 242, 232, 0.72);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.48);
  color: var(--cream);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1;
  cursor: pointer;
}

.exp-video-overlay__control:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.footer {
  border-top: 1px solid rgba(201, 162, 52, 0.28);
  padding-top: var(--space-12);
  padding-bottom: var(--space-6);
  background: #0b0b0a;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-8);
}

.footer__brand {
  font-family: var(--font-sans);
  letter-spacing: 0.24em;
  color: var(--gold-light);
  margin-bottom: var(--space-2);
}

.footer__tagline {
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
  color: var(--text-muted);
}

.footer__heading {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-3);
}

.footer ul {
  display: grid;
  gap: 10px;
}

.footer p,
.footer a {
  color: var(--text-muted);
  font-size: 15px;
}

.footer a:hover {
  color: var(--cream);
}

.footer__socials {
  margin-top: var(--space-3);
  display: flex;
  gap: 14px;
}

.footer__socials a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 162, 52, 0.38);
  display: grid;
  place-items: center;
}

.footer__socials a:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.footer__socials svg {
  width: 17px;
  height: 17px;
}

.footer__bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(201, 162, 52, 0.15);
  text-align: center;
  display: grid;
  gap: 4px;
}

.footer__bottom p:first-child {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.footer__bottom p:last-child {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-muted);
}

@media (max-width: 1440px) {
  .nav__logo span {
    font-size: 24px;
  }
}

@media (max-width: 1024px) {
  .section {
    padding-block: 104px;
  }

  .nav__links,
  .nav .btn-pill {
    display: none;
  }

  .nav__burger {
    display: flex;
    margin-left: auto;
    justify-self: end;
  }

  .nav__inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }

  .nav__logo {
    max-width: calc(100% - 56px);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .nav__logo span {
    font-size: 20px;
  }

  .nav__logo small {
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  .section {
    padding-block: 92px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .section-number::before {
    right: 2%;
    top: 18px;
  }

  .exp-video-overlay__media {
    width: 100vw;
    height: 100dvh;
  }
}

@media (hover: none), (pointer: coarse) {
  body.cursor-enabled,
  body.cursor-enabled a,
  body.cursor-enabled button {
    cursor: auto;
  }

  .cursor {
    display: none;
  }
}
