:root {
  --cream: #f5f0e8;
  --warm-white: #fdfaf5;
  --brown-light: #e8e0d0;
  --brown-mid: #c8b89a;
  --brown-dark: #7a6a55;
  --ink: #2c2c2c;
  --ink-light: #666;
  --blue: #2c7be5;
  --blue-dark: #1a5fc7;
  --blue-light: #e8f0fd;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  background-color: var(--warm-white);
  border-bottom: 1px solid var(--brown-light);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-light);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--blue);
}

/* ── LAYOUT ── */
.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--ink);
}

.divider {
  border: none;
  border-top: 1px solid var(--brown-light);
  margin: 0 2rem;
}

/* ── BUTTONS ── */
button, .btn-primary, .btn-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s, border-color 0.2s;
  border: none;
  display: inline-block;
}

.btn-primary {
  background: var(--blue);
  color: white;
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--brown-mid);
}

.btn-secondary:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

/* ── HOMEPAGE HERO ── */
.hero {
  padding: 5rem 2rem 4rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--blue);
}

.hero p {
  font-size: 1.1rem;
  color: var(--ink-light);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── HOME POST CARDS ── */
.home-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.home-post-card {
  background: var(--warm-white);
  border: 1px solid var(--brown-light);
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.home-post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.home-post-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.home-post-card p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ── POST TAG & DATE ── */
.post-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.post-date {
  font-size: 0.75rem;
  color: var(--brown-dark);
  margin-top: 1rem;
}

/* ── GAME PROMO ── */
.game-promo {
  background: var(--ink);
  color: white;
  border-radius: 12px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.game-promo h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.game-promo p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 480px;
}

/* ── BLOG PAGE ── */
.blog-header {
  background: var(--warm-white);
  border-bottom: 1px solid var(--brown-light);
  padding: 3rem 2rem;
  text-align: center;
}

.blog-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}

.blog-header p {
  color: var(--ink-light);
  font-size: 1rem;
}

.blog-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* ── FEATURED POST ── */
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--warm-white);
  border: 1px solid var(--brown-light);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 3rem;
  transition: box-shadow 0.2s;
  cursor: pointer;
}

.featured-post:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.featured-image {
  background: linear-gradient(135deg, #d4e4f7 0%, #b8d0f0 50%, #e8d5c0 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.featured-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.featured-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.featured-content p {
  color: var(--ink-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.read-more {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.read-more:hover { text-decoration: underline; }

/* ── POSTS GRID ── */
.posts-grid-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-dark);
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--brown-light);
}

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

.post-card {
  background: var(--warm-white);
  border: 1px solid var(--brown-light);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.post-card-image {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.post-card-image.blue { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.post-card-image.warm { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.post-card-image.green { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }

.post-card-body {
  padding: 1.25rem;
}

.post-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.post-card-body p {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* ── ABOUT PAGE ── */
.about-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-container h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-container p {
  color: var(--ink-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-container p strong {
  color: var(--ink);
}

.about-highlight {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.8;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .featured-post { grid-template-columns: 1fr; }
  .featured-image { min-height: 200px; }
  .game-promo { grid-template-columns: 1fr; text-align: center; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.8rem; }
}

footer {
  text-align: left;
  padding: 2rem;
  font-size: 0.8rem;
  color: var(--brown-dark);
  border-top: 1px solid var(--brown-light);
  margin-top: 3rem;
}
