@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Outfit:wght@600;700&display=swap');
:root {
  --bg: #f7f1e8;
  --surface: #ffffff;
  --text: #2c2520;
  --muted: #7a7067;
  --accent: #4b5e3c;
  --accent-dark: #35452b;
  --accent-soft: #e8f0e0;
  --warm: #8a4f32;
  --border: #e8e5d8;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: var(--accent-dark); }
a:hover { color: var(--accent); }
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(247,241,232,.94);
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  z-index: 10;
}
.nav {
  max-width: 1040px;
  margin: 0 auto;
  min-height: 82px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { display: block; width: 176px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: .9rem; font-weight: 700; }
main { max-width: 1040px; margin: 0 auto; padding: 64px 24px 88px; }
.hero { display: grid; grid-template-columns: minmax(0,1fr) minmax(260px,380px); align-items: center; gap: 56px; min-height: 500px; padding: 28px 0 54px; }
.hero-copy { max-width: 650px; }
.hero-mascot { width: 100%; max-width: 360px; justify-self: center; filter: drop-shadow(0 16px 18px rgba(44,37,32,.08)); }
.eyebrow { color: var(--warm); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3 { font-family: "Outfit", "Manrope", sans-serif; color: var(--accent); }
h1 { font-size: clamp(2.7rem, 6vw, 4.8rem); line-height: 1.03; margin: 12px 0 20px; }
h2 { margin-top: 42px; font-size: 1.45rem; letter-spacing: -0.02em; }
h3 { margin-top: 28px; }
p, li { font-size: 1rem; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 650px; }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 700;
}
.button:hover { background: var(--accent-dark); color: white; }
.button.secondary { background: transparent; color: var(--accent-dark); border: 1px solid var(--border); }
.card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin-top: 22px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 22px; }
.card h2, .card h3 { margin-top: 0; }
.content { max-width: 760px; }
.content h1 { font-size: clamp(2.2rem,5vw,3.7rem); }
.content::before { content: ""; display: block; width: 92px; height: 92px; margin-bottom: 20px; background: url('/assets/beavie-mascot.svg') center / contain no-repeat; }
.meta { color: var(--muted); font-size: .92rem; margin-bottom: 30px; }
.notice { background: var(--accent-soft); border: 1px solid #dce8d6; border-radius: 14px; padding: 16px 18px; }
footer { border-top: 1px solid var(--border); background: var(--surface); }
.footer-inner { max-width: 960px; margin: 0 auto; padding: 28px 24px 40px; color: var(--muted); font-size: .9rem; }
ul, ol { padding-left: 1.3rem; }
@media (max-width: 640px) {
  .nav { align-items: flex-start; flex-direction: column; }
  .brand-logo { width: 148px; }
  main { padding-top: 38px; }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 20px; padding-top: 12px; }
  .hero-mascot { grid-row: 1; max-width: 230px; }
  .card-grid { grid-template-columns: 1fr; }
}
