/* ==========================================================================
   Mixologya Guide — shared stylesheet for corporate/legal pages
   Drop this file alongside about-us.html, contact-us.html,
   company-information.html, terms-of-service.html and privacy-policy.html
   ========================================================================== */

:root {
  --bg: #14120f;
  --bg-panel: #1c1a16;
  --bg-panel-alt: #221f1a;
  --border: #322d24;
  --text: #f2ece0;
  --text-muted: #b8ae9c;
  --accent: #cf9b3d;
  --accent-soft: #e6c789;
  --max-width: 780px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent-soft);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ---------- Header ---------- */

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

.brand span {
  color: var(--accent);
}

nav.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}

nav.site-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 0;
}

nav.site-nav a:hover,
nav.site-nav a.active {
  color: var(--accent-soft);
  text-decoration: none;
}

/* ---------- Main content ---------- */

main {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 56px 24px 80px;
  flex: 1 0 auto;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0 0 10px;
}

h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.3rem;
  line-height: 1.2;
  margin: 0 0 8px;
}

.page-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 0 40px;
}

h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  margin: 40px 0 14px;
  color: var(--text);
}

h3 {
  font-size: 1.05rem;
  margin: 24px 0 8px;
  color: var(--accent-soft);
}

p {
  color: var(--text);
  margin: 0 0 16px;
}

p.muted,
li.muted {
  color: var(--text-muted);
}

ul, ol {
  padding-left: 22px;
  margin: 0 0 16px;
}

li {
  margin-bottom: 8px;
}

.updated {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 32px;
}

/* ---------- Cards / panels ---------- */

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 0 0 20px;
}

.card + .card {
  margin-top: 16px;
}

.info-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 10px 18px;
  font-size: 0.97rem;
}

.info-grid dt {
  color: var(--text-muted);
  font-weight: 500;
}

.info-grid dd {
  margin: 0;
  color: var(--text);
}

@media (max-width: 520px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
  .info-grid dt {
    margin-top: 10px;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  background: var(--accent);
  color: #1a1509;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.btn:hover {
  background: var(--accent-soft);
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 11px 21px;
  border-radius: 8px;
  font-size: 0.95rem;
  margin-left: 10px;
}

.btn-secondary:hover {
  border-color: var(--accent);
  text-decoration: none;
}

/* ---------- Footer ---------- */

footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px 40px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

footer.site-footer .footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

footer.site-footer nav a {
  color: var(--text-muted);
}

footer.site-footer nav a:hover {
  color: var(--accent-soft);
}
