/* ─── Reset & Variables ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg:       #111111;
  --bg2:      #1a1a1a;
  --bg3:      #141414;
  --text:     #F0EDE8;
  --text-dim: #C8C4BC;
  --muted:    #7A7A72;
  --accent:   #C15F3C;
  --gold:     #b8a080;
  --border:   #252525;
  --border2:  #1e1e1e;

  --font-serif: 'Noto Serif SC', 'Songti SC', 'SimSun', serif;
  --font-mono:  'SF Mono', 'Fira Code', 'Cascadia Code', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-serif);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── Utility ─── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .45em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 400;
}

/* ─── Scroll animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

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

.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .22s; }
.reveal.d3 { transition-delay: .34s; }
.reveal.d4 { transition-delay: .46s; }
.reveal.d5 { transition-delay: .58s; }
.reveal.d6 { transition-delay: .70s; }
