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

:root {
  --navy: #2D2A3E;
  --red: #C84B31;
  --amber: #E8A838;
  --purple: #6C7AE0;
  --cream: #F5F0E8;
  --cream2: #EDE8DF;
  --text: #2D2A3E;
  --muted: #6B6578;
}

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

/* ── Header ── */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
}

.wordmark {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.wordmark span { color: var(--red); }

nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  margin-left: 2rem;
  font-family: -apple-system, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
nav a:hover { color: var(--amber); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 5rem 2.5rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.hero-dice {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0.15;
  font-size: 7rem;
  line-height: 1;
  user-select: none;
}
.die { transition: transform 0.3s; }
.d1 { transform: rotate(-12deg); }
.d2 { transform: rotate(6deg) translateX(20px); }
.d3 { transform: rotate(-4deg) translateX(-10px); }

.hero-content { max-width: 560px; }

.eyebrow {
  font-family: -apple-system, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  font-weight: 700;
}
h1 span { color: var(--amber); }

.sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  max-width: 420px;
}

.btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-family: -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.1s;
}
.btn:hover { background: #a83a23; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
}
.btn-outline:hover { background: var(--red); color: #fff; }

/* ── Games ── */
.games {
  padding: 5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.games h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--navy);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.game-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(45,42,62,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.game-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(45,42,62,0.14); }

.card-top {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon { font-size: 2.8rem; }

.card-body { padding: 1.3rem 1.5rem 1.5rem; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }

.meta {
  display: flex;
  gap: 1rem;
  font-family: -apple-system, sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
  letter-spacing: 0.3px;
}
.meta span::before { content: ''; }

.card-body p { font-size: 0.92rem; color: #555; margin-bottom: 0.8rem; line-height: 1.5; }

.stars { color: var(--amber); letter-spacing: 2px; font-size: 1rem; }

/* ── Nights ── */
.nights {
  background: var(--cream2);
  padding: 5rem 2.5rem;
}

.nights-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.nights-text { flex: 1; }
.nights-text h2 { font-size: 2.2rem; line-height: 1.2; margin: 0.5rem 0 1rem; }
.nights-text p { color: var(--muted); margin-bottom: 1.5rem; font-size: 1rem; }

.night-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-family: -apple-system, sans-serif;
  font-size: 0.95rem;
}

.nights-board {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 80px);
  grid-template-rows: repeat(2, 80px);
  gap: 12px;
}

.board-tile {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(45,42,62,0.1);
  transition: transform 0.2s;
}
.board-tile:hover { transform: scale(1.1) rotate(4deg); }

/* ── Contact ── */
.contact {
  text-align: center;
  padding: 5rem 2.5rem;
  background: var(--navy);
  color: #fff;
}
.contact h2 { font-size: 2rem; margin-bottom: 0.8rem; }
.contact p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-size: 1rem; }

/* ── Footer ── */
footer {
  background: #1e1c2b;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 2rem;
  font-family: -apple-system, sans-serif;
  font-size: 0.85rem;
}
.footer-logo {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.3rem;
}
.footer-logo span { color: var(--red); }

/* ── Mobile ── */
@media (max-width: 700px) {
  header { padding: 1rem 1.5rem; }
  nav { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--navy); padding: 1rem 1.5rem; }
  nav.open { display: flex; }
  nav a { margin: 0.5rem 0; }
  .nav-toggle { display: block; }
  .hero { flex-direction: column; gap: 2rem; padding: 3rem 1.5rem; min-height: auto; }
  .hero-dice { flex-direction: row; font-size: 4rem; }
  .nights-inner { flex-direction: column; gap: 2rem; }
  .nights-board { grid-template-columns: repeat(3, 70px); }
  .board-tile { width: 70px; height: 70px; }
  .games, .nights, .contact { padding: 3rem 1.5rem; }
}
