:root {
  --ink: #0d0e10;
  --paper: #f4f3ef;
  --line: rgba(13, 14, 16, .18);
  --header-height: 108px;
  --ease-luxury: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", "Noto Sans SC", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3.2vw;
  color: #fff;
  transition: color .65s var(--ease-luxury), background-color .65s var(--ease-luxury),
    box-shadow .65s var(--ease-luxury), height .55s var(--ease-luxury);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(248, 247, 243, .98);
  transform: translateY(-102%);
  transition: transform .75s var(--ease-luxury);
}
.site-header.header--solid {
  color: var(--ink);
  height: 82px;
  box-shadow: none;
}
.site-header.header--solid::before { transform: translateY(0); }
.wordmark {
  font-size: clamp(1.2rem, 1.65vw, 2rem);
  line-height: 1;
  letter-spacing: .17em;
  font-weight: 700;
}
.nav-action, .language-button, .desktop-nav a {
  border: 0;
  padding: 12px 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: .07em;
}
.menu-button { justify-self: start; display: flex; align-items: center; gap: 14px; }
.menu-lines { width: 20px; display: grid; gap: 5px; }
.menu-lines i { display: block; height: 1px; width: 100%; background: currentColor; }
.menu-lines i:last-child { width: 70%; }
.desktop-nav { justify-self: end; display: flex; align-items: center; gap: clamp(18px, 2vw, 36px); }
.desktop-nav a, .language-button { position: relative; }
.desktop-nav a::after, .language-button::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease-luxury);
}
.desktop-nav a:hover::after, .language-button:hover::after { transform: scaleX(1); transform-origin: left; }

.menu-panel {
  position: fixed; z-index: 210; inset: 0 auto 0 0; width: min(560px, 90vw);
  padding: 34px 44px 48px; color: #ecebe7; background: #111214;
  transform: translateX(-102%); transition: transform .8s var(--ease-luxury);
  display: flex; flex-direction: column;
}
.menu-panel.is-open { transform: translateX(0); }
.menu-panel__top { display: flex; justify-content: space-between; align-items: center; letter-spacing: .16em; font-weight: 700; }
.menu-panel__top button { border: 0; background: transparent; color: inherit; font-size: 36px; font-weight: 200; cursor: pointer; }
.menu-panel nav { display: grid; margin: auto 0; }
.menu-panel nav a { display: flex; gap: 20px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.menu-panel nav span { width: 28px; flex: 0 0 28px; color: #777; font-size: 9px; }
.menu-panel nav b {
  font-size: clamp(1.35rem, 2.6vw, 2.45rem);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -.025em;
}
.menu-panel p { color: #8f8f8d; max-width: 310px; line-height: 1.7; }
.menu-backdrop { position: fixed; z-index: 200; inset: 0; opacity: 0; pointer-events: none; background: rgba(0,0,0,.48); transition: opacity .5s; }
.menu-backdrop.is-open { opacity: 1; pointer-events: auto; }
body.menu-open { overflow: hidden; }

.media-stage { position: relative; overflow: hidden; color: #fff; background: #151719; }
.hero { min-height: 100svh; }
.stage-media, .media-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; }
.stage-media { z-index: 1; object-fit: cover; }
.media-placeholder {
  z-index: 0; display: grid; place-content: center; justify-items: center; gap: 12px;
  background:
    radial-gradient(circle at 72% 28%, rgba(154,174,184,.5), transparent 31%),
    linear-gradient(125deg, #232b2d 0%, #68767b 46%, #b0b6b5 100%);
}
.media-placeholder span { font-size: 10px; letter-spacing: .26em; opacity: .68; }
.media-placeholder strong { font-size: clamp(3rem, 10vw, 10rem); letter-spacing: -.06em; opacity: .3; }
.media-placeholder--warm { background: linear-gradient(135deg, #17191a, #725c48 52%, #c8a979); }
.media-placeholder--night { background: radial-gradient(circle at 25% 30%, #455b71, transparent 30%), linear-gradient(130deg, #080c12, #172738 58%, #07090c); }
.stage-shade { position: absolute; z-index: 2; inset: 0; background: linear-gradient(90deg, rgba(6,8,10,.54), rgba(6,8,10,.04) 60%), linear-gradient(0deg, rgba(6,8,10,.55), transparent 42%); }
.stage-shade--bottom { background: linear-gradient(0deg, rgba(0,0,0,.72), transparent 56%); }
.hero-copy {
  position: absolute; z-index: 3;
  left: clamp(34px, 6.2vw, 118px);
  bottom: clamp(68px, 9vh, 108px);
  width: min(720px, 58vw);
  max-width: calc(100vw - 68px);
}
.eyebrow, .section-kicker { margin: 0 0 18px; font-size: 10px; letter-spacing: .23em; text-transform: uppercase; }
.hero h1 {
  margin: 0;
  max-width: 660px;
  font-size: clamp(3.6rem, 6.8vw, 7.8rem);
  line-height: .9;
  letter-spacing: -.055em;
  font-weight: 500;
}
.hero-summary {
  max-width: 520px;
  margin: 26px 0 20px;
  font-size: clamp(13px, 1.05vw, 17px);
  line-height: 1.75;
  font-weight: 400;
}
.text-link { display: inline-block; position: relative; padding: 9px 0; font-size: 12px; letter-spacing: .08em; }
.text-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 3px; height: 1px; background: currentColor; transform-origin: left; transition: transform .35s; }
.text-link:hover::after { transform: scaleX(.55); }
.hero-index { position: absolute; z-index: 3; right: 3.2vw; bottom: 38px; display: flex; align-items: center; gap: 14px; font-size: 9px; letter-spacing: .18em; }
.hero-index span { display: block; width: 42px; height: 1px; background: currentColor; }

.intro, .closing { padding: clamp(100px, 15vw, 250px) clamp(24px, 8vw, 160px); }
.intro h2, .closing h2 { margin: 0; max-width: 1150px; font-size: clamp(3rem, 7.5vw, 9rem); line-height: .98; letter-spacing: -.065em; font-weight: 400; }
.intro-copy { width: min(500px, 100%); margin: 56px 0 0 auto; font-size: clamp(16px, 1.6vw, 24px); line-height: 1.65; color: #535351; }
.feature { min-height: min(84vw, 900px); }
.feature-copy { position: absolute; z-index: 3; bottom: clamp(50px, 7vw, 108px); left: 50%; width: min(860px, 86%); text-align: center; transform: translateX(-50%); }
.feature-copy p { margin: 0 0 14px; font-size: 11px; letter-spacing: .16em; }
.feature-copy h2 { margin: 0 0 15px; font-size: clamp(2.5rem, 6vw, 7.5rem); font-weight: 400; letter-spacing: -.05em; }

.editorial-grid { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 950px; }
.editorial-card { position: relative; min-height: 820px; overflow: hidden; }
.editorial-card--image { background: #d4d1c8; }
.editorial-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.002);
  transition: transform 1.4s var(--ease-luxury);
}
.editorial-card--image:hover .editorial-image { transform: scale(1.035); }
.image-placeholder { position: absolute; inset: 0; display: grid; place-content: center; gap: 12px; text-align: center; color: #77736c; background: linear-gradient(135deg, #dad7cf, #b7b2a8); }
.image-placeholder span { font-size: 10px; letter-spacing: .22em; }
.image-placeholder strong { font-size: clamp(1.5rem, 3vw, 3.2rem); font-weight: 400; }
.editorial-card--image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.62), transparent 52%); }
.editorial-card--image .card-copy { color: #fff; }
.card-copy { position: absolute; z-index: 2; left: clamp(26px, 5vw, 78px); bottom: clamp(36px, 6vw, 76px); right: 40px; }
.card-copy p { font-size: 10px; letter-spacing: .2em; }
.card-copy h3 { margin: 14px 0 12px; max-width: 680px; font-size: clamp(2rem, 4vw, 5rem); line-height: 1.05; letter-spacing: -.045em; font-weight: 400; }
.editorial-card--text { color: #ecebe7; background: #141517; }
.oversized-mark { position: absolute; top: -9vw; left: 2vw; color: rgba(255,255,255,.05); font-family: Georgia, serif; font-size: 58vw; line-height: 1; }
.feature--third { min-height: 82svh; }
.feature--third .feature-copy {
  left: auto;
  right: clamp(28px, 6vw, 112px);
  bottom: clamp(42px, 6vw, 88px);
  width: min(560px, 46%);
  text-align: right;
  transform: none;
}
.feature--third .feature-copy p {
  font-size: 10px;
  letter-spacing: .2em;
}
.feature--third .feature-copy h2 {
  margin-left: auto;
  max-width: 560px;
  font-size: clamp(2.25rem, 4vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.closing {
  padding: clamp(110px, 12vw, 190px) clamp(28px, 10vw, 190px);
  text-align: left;
  background: #e6e3dc;
}
.closing .section-kicker {
  width: min(920px, 100%);
  margin: 0 auto 38px;
  text-align: left;
}
.intro h2 { font-size: clamp(3rem, 7.5vw, 9rem); }
.closing h2 {
  width: min(920px, 100%);
  max-width: none;
  margin: 0 auto;
  font-size: clamp(2.8rem, 4.5vw, 5.4rem);
  line-height: 1.12;
  letter-spacing: -.045em;
  font-weight: 400;
}
.outline-button { display: block; width: max-content; margin: 52px auto 0; padding: 15px 25px; border: 1px solid var(--ink); font-size: 10px; letter-spacing: .12em; transition: color .35s, background .35s; }
.outline-button:hover { color: #fff; background: var(--ink); }

footer { padding: 70px 4vw 42px; color: #e5e4df; background: #0d0e10; }
.footer-mark { display: block; font-size: clamp(3rem, 10vw, 11rem); line-height: .85; letter-spacing: -.055em; font-weight: 600; }
.footer-meta { display: flex; justify-content: space-between; gap: 24px; margin-top: 72px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.2); font-size: 10px; letter-spacing: .12em; }
.footer-meta button { border: 0; color: inherit; background: transparent; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 820px) {
  :root { --header-height: 78px; }
  .site-header { padding: 0 20px; grid-template-columns: 1fr auto 1fr; }
  .desktop-nav a:not(.account-link) { display: none; }
  .desktop-nav { gap: 14px; }
  .language-button { font-size: 9px; }
  .account-link { display: none; }
  .menu-button > span:last-child { display: none; }
  .wordmark { font-size: 15px; }
  .menu-panel { padding: 28px 28px 38px; }
  .menu-panel nav a { gap: 14px; padding: 15px 0; }
  .menu-panel nav span { width: 24px; flex-basis: 24px; font-size: 8px; }
  .menu-panel nav b { font-size: clamp(1.45rem, 7.2vw, 2rem); }
  .menu-panel p { font-size: 12px; }
  .hero-copy { left: 24px; right: 24px; bottom: 84px; width: auto; max-width: none; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 5.6rem); line-height: .92; }
  .hero-summary { max-width: 92%; margin-top: 22px; font-size: 13px; }
  .hero-index { left: 24px; right: auto; bottom: 28px; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-card { min-height: 680px; }
  .feature { min-height: 85svh; }
  .feature--video:not(.feature--third) .feature-copy {
    left: 18px;
    right: 18px;
    width: auto;
    max-width: calc(100vw - 36px);
    transform: none;
  }
  .feature--video:not(.feature--third) .feature-copy h2 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2rem, 11vw, 3.15rem);
    line-height: 1.06;
    letter-spacing: -.045em;
    overflow-wrap: anywhere;
  }
  .feature--third .feature-copy {
    left: 24px;
    right: 24px;
    bottom: 44px;
    width: auto;
    text-align: right;
  }
  .feature--third .feature-copy h2 {
    max-width: 88%;
    margin-left: auto;
    font-size: clamp(2.15rem, 10.5vw, 3.5rem);
    line-height: 1.08;
  }
  .closing { padding: 92px 24px; }
  .closing .section-kicker { margin-bottom: 26px; }
  .closing h2 { font-size: clamp(2.35rem, 11vw, 4rem); line-height: 1.12; }
  .outline-button { margin-top: 38px; }
  .footer-meta { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .stage-media { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
