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

/* ─────────────────────────────────────────────
   TOKENS
───────────────────────────────────────────── */
:root {
  --bg:       #141210;
  --fg:       #f2ede5;
  --orange:   #d46000;
  --gray-a:   #c0b8ae;
  --gray-b:   #7a7268;
  --gray-c:   #2e2b28;
  --line:     rgba(242,237,229,.11);
  --line-hi:  rgba(242,237,229,.24);
  --serif:    'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:     'Inter', system-ui, -apple-system, sans-serif;
}

/* ─────────────────────────────────────────────
   RESET
───────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { background: var(--bg); }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ─────────────────────────────────────────────
   TYPOGRAPHY SCALE
   T1→T6: 200px display → 10px label
───────────────────────────────────────────── */
.t-hero {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(96px, 15vw, 200px);
  line-height: .86;
  letter-spacing: -.03em;
}
.t-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(52px, 7vw, 96px);
  line-height: .92;
  letter-spacing: -.02em;
}
.t-subhead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -.01em;
}
.t-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--gray-a);
}
.t-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-b);
}
.t-metric {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -.02em;
}

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 56px;
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(20,18,16,.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .02em;
  color: var(--fg);
  transition: opacity .3s;
}
.nav-logo:hover { opacity: .6; }
.nav-list {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-list li a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-b);
  transition: color .3s;
  position: relative;
  padding-bottom: 4px;
}
.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width .35s ease;
}
.nav-list li a:hover,
.nav-list li a.active { color: var(--fg); }
.nav-list li a.active::after,
.nav-list li a:hover::after { width: 100%; }

/* ─────────────────────────────────────────────
   MARQUEE  (reusable)
───────────────────────────────────────────── */
.mq-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255,255,255,.015);
}
.mq-row {
  overflow: hidden;
  padding: 13px 0;
}
.mq-row + .mq-row {
  border-top: 1px solid var(--line);
}
.mq-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}
.mq-item {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-b);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.mq-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gray-c);
  flex-shrink: 0;
}
.mq-accent { color: var(--orange); }

/* ─────────────────────────────────────────────
   PAGE TRANSITION
───────────────────────────────────────────── */
body { opacity: 0; transition: opacity .5s ease; }
body.visible { opacity: 1; }

/* ─────────────────────────────────────────────
   SHARED DIVIDERS
───────────────────────────────────────────── */
.hr { width: 100%; height: 1px; background: var(--line); }
.hr-hi { background: var(--line-hi); }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  padding: 36px 56px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 11px;
  color: var(--gray-b);
  letter-spacing: .06em;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-nav { padding: 22px 24px; }
  .nav-list { gap: 24px; }
  .site-footer { padding: 28px 24px; flex-direction: column; gap: 8px; align-items: flex-start; }
}
