:root {
  --primary-bg: #121212;
  --secondary-bg: rgba(19, 2, 20, 0.88);
  --accent: #c59d5f;
  --text-light: #ffffff;
  --text-muted: #d7c9db;
  --border: rgba(197, 157, 95, 0.25);
  --max-width: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Viaoda Libre', serif;
  color: var(--text-light);
  line-height: 1.6;
  background-color: rgb(5, 0, 5);
  background-image: linear-gradient(180deg, rgba(15, 5, 25, 0.52) 0%, rgba(8, 3, 15, 0.88) 100%), url('/violet_cheesecake_1.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

button, input, select, textarea, .btn, a {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.page-shell { min-height: 100vh; display: flex; flex-direction: column; }
.wrap { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1rem; }
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(0, 0, 0, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: 0.85rem; padding-bottom: 0.85rem;
}
.brand-link {
  color: var(--text-light); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.55rem; white-space: nowrap;
}
.brand-link img { width: auto; height: 44px; }
.brand-link span { font-family: 'Viaoda Libre', serif; font-size: 1.15rem; color: var(--accent); }
.site-nav ul {
  list-style: none; display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; justify-content: flex-end;
}
.site-nav a {
  color: var(--text-light); text-decoration: none; font-size: 0.95rem;
  border-bottom: 1px solid transparent; transition: color 0.2s ease, border-color 0.2s ease; white-space: nowrap;
}
.site-nav a:hover, .site-nav a:focus { color: var(--accent); border-color: var(--accent); outline: none; }
main { width: 100%; flex: 1; padding: 2.25rem 0 3rem; }
.hero {
  border: 1px solid var(--border); border-radius: 16px;
  background: linear-gradient(150deg, rgba(197, 157, 95, 0.13), rgba(56, 14, 43, 0.52));
  padding: clamp(1.25rem, 3vw, 2rem); margin-bottom: 1.25rem;
}
.hero h1 { color: var(--accent); font-size: clamp(1.95rem, 4vw, 2.8rem); line-height: 1.18; margin-bottom: 0.75rem; }
.hero p { color: var(--text-muted); font-size: 1.02rem; max-width: 72ch; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.1rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem;
  border-radius: 999px; border: 1px solid var(--accent); color: var(--accent);
  text-decoration: none; font-weight: 600; padding: 0.6rem 1.15rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover, .btn:focus { transform: translateY(-1px); background: var(--accent); color: var(--primary-bg); outline: none; }
.btn-primary { background: var(--accent); color: var(--primary-bg); }
.btn-primary:hover, .btn-primary:focus { background: #d4ad73; }
.desktop-primary { box-shadow: 0 8px 20px rgba(197, 157, 95, 0.3); }
.content-grid { display: grid; gap: 1rem; grid-template-columns: repeat(12, minmax(0, 1fr)); }
.card { border: 1px solid var(--border); border-radius: 14px; background: var(--secondary-bg); padding: 1rem; }
.card h2, .card h3 { color: var(--accent); margin-bottom: 0.55rem; }
.card p, .card li { color: var(--text-muted); }
.card ul, .card ol { margin-left: 1.2rem; }
.card li { margin-bottom: 0.35rem; }
.section-links { display: flex; flex-wrap: wrap; gap: 0.5rem 0.75rem; margin-top: 0.7rem; }
.section-links a { color: var(--accent); }
.span-8 { grid-column: span 8; }
.span-4 { grid-column: span 4; }
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.1rem 0 1.5rem;
  background: rgba(0, 0, 0, 0.82);
}
.site-footer p { color: var(--text-muted); font-size: 0.92rem; }
.footer-links { margin-top: 0.5rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-links a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; }
.footer-links a:hover, .footer-links a:focus { border-color: var(--accent); outline: none; }

@media (max-width: 1024px) {
  .span-8, .span-4 { grid-column: span 12; }
}
@media (max-width: 720px) {
  .site-header .wrap { flex-direction: column; align-items: flex-start; }
  .site-nav ul { justify-content: flex-start; }
}
