/* shared design tokens — imported by all pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0e0e0e;
  --ink-muted: #5a5a5a;
  --bg: #f5f2ed;
  --accent: #c0562a;
  --accent-light: #f0e8e1;
  --border: rgba(0,0,0,0.1);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(245,242,237,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-name { font-family: var(--serif); font-size: 1.75rem; color: #fff; }
.footer-sub { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 0.2rem; }
.footer-social { display: flex; gap: 1.5rem; }
.footer-social a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--accent); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: #a3451f; transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-secondary:hover { border-color: #fff; transform: translateY(-2px); }

/* ── FADE ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .site-footer { padding: 3rem 1.5rem; flex-direction: column; align-items: flex-start; }
}
