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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-cn);
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.en {
  font-family: var(--font-en);
  letter-spacing: 0.12em;
}

main {
  position: relative;
  flex: 1 0 auto;
  padding-top: var(--nav-height);
  background: var(--bg);
}

main::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.008), transparent 42%, rgba(255, 255, 255, 0.006));
  opacity: 0.72;
}

main > section {
  background-color: transparent;
}

main > section:not(.hero) {
  margin-top: -0.1rem;
}

main > section:not(.hero)::before {
  border-top: 0px solid rgba(255, 255, 255, 0.008);
}

main > section:not(.hero)::after {
  border-bottom: 0px solid rgba(0, 0, 0, 0.18);
}

.section {
  position: relative;
  padding: var(--space-section) 0% 5rem;
  overflow: hidden;
}

.section::marker {
  content: "";
}


.section-inner {
  max-width: clamp(100px, 95vw, 1920px);
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.1rem;
  padding: 0 5% 0rem;
}

.section-title {
  font-size: clamp(1.35rem, 2.4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
  padding: 0 5% 0rem;
}

.section-title span {
  color: var(--muted);
  font-weight: 300;
}

.page-hero {

  position: relative;
  min-height: clamp(80px, 10vw, 300px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: calc(var(--nav-height) + 2vw) 5% 1rem;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
  margin-bottom: 0.1rem;
}

.page-hero h1 {
  
  font-size: clamp(1.5rem,4vw,2.5rem);
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.page-hero-eyebrow {
  
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  color: var(--gold);
  margin: 0 auto; 
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
