:root{
  --bg:#0b0f14;
  --card:#121a24;
  --muted:#9fb0c3;
  --text:#e8eef6;
  --accent:#7dd3fc;
  --accent2:#a7f3d0;
  --border:rgba(255,255,255,.08);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(900px 500px at 20% 0%, rgba(125,211,252,.18), transparent 55%),
              radial-gradient(900px 500px at 80% 0%, rgba(167,243,208,.12), transparent 55%),
              var(--bg);
  color:var(--text);
}

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

.container{max-width:980px; margin:0 auto; padding:18px}

.nav{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,.72);
  border-bottom:1px solid var(--border);
}
.navInner{display:flex; align-items:center; justify-content:space-between; gap:12px}
.brand{display:flex; align-items:center; gap:10px; font-weight:700}
.brandDot{width:10px; height:10px; border-radius:999px; background:linear-gradient(135deg,var(--accent),var(--accent2))}
.navLinks{display:flex; gap:10px; flex-wrap:wrap}
.navLinks a{padding:8px 10px; border-radius:10px; color:var(--muted)}
.navLinks a.active{background:rgba(255,255,255,.06); color:var(--text)}

.hero{
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.heroGrid{display:grid; grid-template-columns: 1.1fr .9fr}
@media (max-width: 840px){
  .heroGrid{grid-template-columns: 1fr}
}
.heroImg{min-height:320px; background:#0f1722; display:flex; align-items:center; justify-content:center}
.heroImg img{width:100%; height:100%; object-fit:cover; display:block}
.heroContent{padding:18px 18px 22px}
.heroTitle{font-size:34px; line-height:1.1; margin:6px 0 10px}
.heroP{color:var(--muted); margin:0 0 16px; line-height:1.55}

.btnRow{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
}
.btn.primary{background: linear-gradient(135deg, rgba(125,211,252,.18), rgba(167,243,208,.14)); border-color: rgba(125,211,252,.25)}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}

.sectionTitle{font-size:22px; margin:22px 0 10px}
.muted{color:var(--muted)}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 900px){
  .grid{grid-template-columns: repeat(2, 1fr)}
}
@media (max-width: 560px){
  .grid{grid-template-columns: 1fr}
}

.card{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius:16px;
  overflow:hidden;
  box-shadow: 0 16px 50px rgba(0,0,0,.28);
}
.cardImg{height:170px; background:#0f1722}
.cardImg img{width:100%; height:100%; object-fit:cover; display:block}
.cardBody{padding:12px}
.cardTitle{font-size:18px; margin:0 0 6px}
.cardMeta{display:flex; gap:10px; flex-wrap:wrap; color:var(--muted); font-size:13px}
.badge{
  display:inline-flex; align-items:center;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.12);
}

.detail{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.detailHeader{padding:14px 14px 10px; border-bottom:1px solid var(--border)}
.detailTitle{font-size:26px; margin:0 0 6px}
.detailMeta{display:flex; gap:10px; flex-wrap:wrap; color:var(--muted)}
.detailContent{padding:14px}
.prose{color:var(--text)}
.prose :where(p,ul,ol){color:var(--text); line-height:1.65}
.prose :where(h1,h2,h3){margin:18px 0 10px}

.photoStack{display:flex; flex-direction:column; gap:12px; margin-top:10px}
.photoStack img{width:100%; border-radius:14px; border:1px solid var(--border); background:#0f1722}

.footer{color:var(--muted); font-size:13px; padding:30px 0 10px}

/* Auto contact note shown on rabbit detail pages */
.contactNote{
  margin-top:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px dashed var(--border);
  background: rgba(125,211,252,.08);
  color: var(--muted);
}
.contactNote .contactLink{
  color: var(--text);
  text-decoration: underline;
}


/* About page */
.aboutGallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 900px){
  .aboutGallery{grid-template-columns: repeat(2, 1fr)}
}
@media (max-width: 560px){
  .aboutGallery{grid-template-columns: 1fr}
}
.aboutPhoto{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius:16px;
  overflow:hidden;
  box-shadow: 0 16px 50px rgba(0,0,0,.20);
}
.aboutPhoto img{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
  background:#0f1722;
}
.aboutCaption{padding:10px 12px}

.aboutSection{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius:16px;
  padding:12px 14px 14px;
  box-shadow: 0 16px 50px rgba(0,0,0,.20);
  margin-top:12px;
}
.aboutSectionTitle{
  margin:0;
  font-size:18px;
}
