:root {
  --bg: #FDF8F0;
  --bg-alt: #F5EFE6;
  --fg: #1A1A1A;
  --fg-muted: #6B6B6B;
  --accent: #E8622A;
  --accent-warm: #F4A261;
  --accent-light: #E9C46A;
  --border: #E0D8CC;
  --card-bg: #FFFFFF;
  --radius: 12px;
  --radius-sm: 6px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.15;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,248,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
  text-decoration: none;
}
nav { display: flex; gap: 2rem; }
nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover { color: var(--fg); }

/* Hero */
.hero {
  padding: 7rem 2rem 5rem;
  text-align: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(232,98,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 680px; margin: 0 auto; }
.hero-label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Sections */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section-header { margin-bottom: 3rem; }
.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.section-header p { color: var(--fg-muted); }

/* Games Grid */
.games { padding: 5rem 0; background: var(--bg-alt); }
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.game-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.game-art {
  aspect-ratio: 16/9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-art-inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}
/* Brick-breaker art */
.paddle {
  width: 60px;
  height: 10px;
  background: #F4A261;
  border-radius: 4px;
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.ball {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 2.5rem;
  left: calc(50% + 15px);
}
.brick-row {
  display: flex;
  gap: 4px;
  justify-content: center;
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
}
.brick {
  flex: 1;
  height: 14px;
  border-radius: 3px;
}
/* Path art */
.path-art { padding: 0; }
.path-art svg { width: 100%; height: 100%; }
/* Tw tile art */
.tw-row {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 6px;
}
.tw-tile {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 2px solid #444;
  background: transparent;
}
.tw-tile.filled { background: #2D5016; border-color: #2D5016; }

.game-meta { padding: 1.25rem; }
.game-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  background: rgba(232,98,42,0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}
.game-meta h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.game-meta p { font-size: 0.875rem; color: var(--fg-muted); margin-bottom: 0.75rem; line-height: 1.5; }
.game-stats { font-size: 0.8rem; color: var(--fg-muted); }

.games-note {
  margin-top: 2.5rem;
  padding: 1rem 1.25rem;
  background: rgba(232,98,42,0.08);
  border: 1px solid rgba(232,98,42,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-align: center;
}
.games-note strong { color: var(--accent); }

/* Approach */
.approach { padding: 5rem 0; }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 3rem 2.5rem;
}
.approach-item {}
.approach-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,98,42,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.approach-item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.approach-item p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }

/* Pass */
.pass { padding: 5rem 0; background: var(--bg-alt); }
.pass .section-inner { display: flex; gap: 4rem; align-items: flex-start; }
.pass-card {
  flex: 1;
  min-width: 280px;
  background: var(--card-bg);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 2rem;
}
.pass-badge {
  font-family: 'Fraunces', serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.pass-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--fg);
}
.price-period { font-size: 1rem; color: var(--fg-muted); }
.pass-tagline { font-size: 0.9rem; color: var(--fg-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.pass-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pass-features li {
  font-size: 0.9rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pass-features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.pass-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 0.5rem;
}
.stat {}
.stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
  display: block;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand .wordmark { font-size: 1.1rem; }
.footer-brand p { font-size: 0.8rem; color: var(--fg-muted); margin-top: 0.25rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.875rem; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--fg); }
.footer-copy { font-size: 0.8rem; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 5rem 1.5rem 3rem; }
  .hero-headline { font-size: 2rem; }
  .section-inner { padding: 0 1.5rem; }
  .game-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pass .section-inner { flex-direction: column; gap: 2.5rem; }
  .pass-stats { flex-direction: row; flex-wrap: wrap; gap: 1.5rem; }
  .stat { min-width: 100px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}