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

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
a:hover { color: var(--gold-deep); }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: normal;
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* Editorial helpers — long-tracked uppercase labels that give the Sky Tower vibe */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--steel);
}
.eyebrow--gold { color: var(--gold-deep); }
.eyebrow--paper { color: var(--paper); opacity: 0.75; }

.rule {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: var(--space-3);
  opacity: 0.5;
}

.section {
  padding-block: clamp(64px, 9vw, 128px);
}
.section--dark {
  background: var(--ink);
  color: var(--paper);
}
.section--cream {
  background: var(--paper-warm);
}
