:root {
  --bg: #f8f7f4;
  --card: #ffffff;
  --text: #2a2a2a;
  --gold: #b58a33;
  --gold-dark: #8a6826;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  line-height: 1.6;
}
.container {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.card {
  width: 100%;
  max-width: 520px;
  background: var(--card);
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  border: 1px solid #eee;
}
body.about .card {
  max-width: 900px;
  border-radius: 32px;
  padding: 50px;
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.logo img {
  width: 120px;
  height: auto;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.brand-stack { text-align: center; margin-top: 6px; }
.brand-line { color: #5b3d14; line-height: 1.35; margin: 4px 0; }
.brand-title { font-weight: 700; font-size: 22px; letter-spacing: .06em; }
.brand-sub { font-weight: 600; font-size: 16px; }
.brand-tagline { font-size: 12px; font-weight: 500; opacity: 0.95; }
.grid { display: grid; gap: 12px; margin-top: 16px; }
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg,#fefbf5,#fbf2df);
  border: 1px solid #ead9b7;
  color: #624b16;
  font-weight: 600;
  text-decoration: none;
  transition: transform .05s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(181,138,51,.18); }
.btn:active { transform: translateY(0); }
.icon svg { width: 18px; height: 18px; display: block; }
.footer { margin-top: 18px; text-align: center; font-size: 12px; opacity: .7; }
body.about .prose {
  max-width: 80ch;
  margin: 0 auto;
  color: #2a2a2a;
  text-align: justify;
}
body.about .prose h1 {
  font-size: 28px;
  margin: 18px 0 10px;
  color: var(--gold-dark);
}
body.about .prose h2 {
  font-size: 22px;
  margin: 24px 0 12px;
  color: var(--gold-dark);
}
body.about .prose p {
  margin: 10px 0;
  line-height: 1.7;
}
.center { text-align: center; }
.divider { height: 1px; background: #eee; margin: 20px 0; }
.pill {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #ead9b7;
  border-radius: 999px;
  margin: 6px 8px;
  font-size: 14px;
  background: #fffaf1;
  color: #5b3d14;
}
.back {
  display: inline-block;
  margin-top: 24px;
  text-decoration: none;
  font-weight: 600;
  color: var(--gold-dark);
}
