/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'IBM Plex Sans', sans-serif;
}
img { display: block; max-width: 100%; }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Page shell ---------- */
.page {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #0a0908;
  overflow: hidden;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  flex: 1;
  min-height: 380px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 8, 7, 0.35) 0%,
    rgba(10, 8, 7, 0.30) 32%,
    rgba(9, 7, 6, 0.72) 72%,
    rgba(7, 6, 5, 0.94) 100%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 35%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(20px, 3vw, 44px) clamp(24px, 5vw, 72px);
}

/* ---------- Top bar ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: riseIn 0.7s ease both;
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  height: clamp(32px, 4vw, 52px);
  width: auto;
  opacity: 0.95;
}

.brand-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Center block ---------- */
.center-block {
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(8px, 1.2vw, 16px);
  animation: riseIn 0.9s ease 0.1s both;
}

.kicker {
  color: oklch(72% 0.14 32);
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.title {
  margin: 0;
  color: #fdfaf7;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 7vw, 132px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}

.year {
  color: oklch(72% 0.14 32);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 68px);
  line-height: 1;
  letter-spacing: 0.06em;
}

/* ---------- Bottom block ---------- */
.bottom-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  padding-top: clamp(10px, 1.6vw, 20px);
  animation: riseIn 1.1s ease 0.2s both;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
  color: #fdfaf7;
  font-size: clamp(14px, 1.5vw, 19px);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.meta-row .divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.35);
}

/* ---------- Countdown ---------- */
.countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.countdown-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.countdown-row {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 2.4vw, 32px);
}

.countdown-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.countdown-num {
  color: #fdfaf7;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
}

.countdown-unit {
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(9px, 0.85vw, 11px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.countdown-colon {
  color: rgba(255, 255, 255, 0.3);
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(24px, 3.2vw, 44px);
  transform: translateY(-6px);
}

/* ---------- Footer ---------- */
.footer {
  background: oklch(97% 0.012 75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 44px);
  padding: clamp(18px, 2.4vw, 28px) 24px;
  flex-wrap: wrap;
}

.footer-label {
  color: oklch(38% 0.02 60);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-divider {
  width: 1px;
  height: 28px;
  background: oklch(85% 0.01 60);
}

.footer-logo {
  height: clamp(28px, 3.2vw, 40px);
  width: auto;
}

.footer-logo--atm {
  height: clamp(26px, 3vw, 38px);
}

/* ---------- Links (unused today, defined for future content) ---------- */
a { color: oklch(72% 0.14 32); text-decoration: underline; }
a:hover { color: oklch(80% 0.14 32); }
