:root {
  --bg:       #F5F2ED;
  --surface:  #FDFCFA;
  --border:   rgba(60, 50, 35, 0.12);
  --border-hover: rgba(60, 50, 35, 0.25);
  --text:     #2C2418;
  --muted:    #7A6E62;
  --hint:     #B0A898;
  --amber:    #C8873A;
  --amber-bg: #FBF0E3;
  --teal-bg:  #E3F2EC;
  --teal:     #2E7D5E;
  --purple-bg:#EEEAF8;
  --purple:   #5A4FB0;
  --coral-bg: #FAECE7;
  --coral:    #B85030;
  --gray-bg:  #EEEBE5;
  --radius:   14px;
  --radius-sm:8px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ── Layout ── */
.wrap { max-width: 880px; margin: 0 auto; padding: 1.5rem 1.25rem 4rem; }

/* ── Nav ── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.5rem;
  margin-bottom: 1.5rem;
  position: sticky;
  top: 1.25rem;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text);
}

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

.nav-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--text); }

/* ── Hero ── */
.hero {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 4rem 2rem 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--hint);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 420px;
  margin: 0 auto 1.75rem;
}

.hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.tag {
  font-size: 12px;
  color: var(--muted);
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: 20px;
  padding: 4px 14px;
}

/* ── Section ── */
.section { margin-bottom: 2.5rem; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

.section-more {
  font-size: 12px;
  color: var(--hint);
  cursor: pointer;
  transition: color 0.15s;
}

.section-more:hover { color: var(--muted); }

/* ── Grid ── */
.grid { display: grid; gap: 10px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ── Card ── */
.card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
}

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

.card-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.ic-amber  { background: var(--amber-bg); color: var(--amber); }
.ic-teal   { background: var(--teal-bg);  color: var(--teal); }
.ic-purple { background: var(--purple-bg);color: var(--purple); }
.ic-coral  { background: var(--coral-bg); color: var(--coral); }
.ic-gray   { background: var(--gray-bg);  color: var(--muted); }

.card-label {
  font-size: 10px;
  color: var(--hint);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.card-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.4;
}

.card-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── TRPG card ── */
.trpg-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
}

.trpg-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.trpg-top {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 14px;
}

.trpg-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.booth-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--muted);
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.booth-btn:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

/* ── Craft banner ── */
.craft-banner {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
  text-decoration: none;
}

.craft-banner:hover {
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.craft-left { display: flex; align-items: center; gap: 1rem; }

.craft-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--amber-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--amber);
  flex-shrink: 0;
}

.craft-label {
  font-size: 10px;
  color: var(--hint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.craft-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.craft-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.craft-arrow {
  font-size: 20px;
  color: var(--hint);
}

/* ── Works placeholder ── */
.works-placeholder {
  background: transparent;
  border: 0.5px dashed var(--border-hover);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}

.works-placeholder p {
  font-size: 13px;
  color: var(--hint);
  line-height: 1.8;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
  text-decoration: none;
}

.contact-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.ic-x  { background: var(--gray-bg);  color: var(--text); }
.ic-ig { background: var(--coral-bg); color: var(--coral); }

.contact-platform {
  font-size: 10px;
  color: var(--hint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact-action {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.contact-handle {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── Profile ── */
.profile {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.profile-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--amber);
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.05em;
}

.profile-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3px;
}

.profile-bio {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 1.5rem;
  border-top: 0.5px solid var(--border);
  font-size: 12px;
  color: var(--hint);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 36px; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 12px; }
}

@media (max-width: 420px) {
  .grid-3 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

/* ── Fade-in animation ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wrap > * {
  animation: fadeUp 0.4s ease both;
}

nav { animation-delay: 0s; }
.hero { animation-delay: 0.05s; }
.section:nth-child(3) { animation-delay: 0.1s; }
.section:nth-child(4) { animation-delay: 0.15s; }
.section:nth-child(5) { animation-delay: 0.2s; }
.section:nth-child(6) { animation-delay: 0.25s; }
.section:nth-child(7) { animation-delay: 0.3s; }
.profile { animation-delay: 0.35s; }
