*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: #8a7d6b;
  --accent-dark: #3a3228;
  --accent-light: #b5a99a;
  --accent-pale: #ddd6cc;
  --accent-mist: #f0ece6;
  --text: #1c1814;
  --text-muted: #6b6057;
  --bg: #f5f2ee;
  --bg-subtle: #ece8e2;
  --border: #d8d2c8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 242, 238, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0 auto;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-dark);
  background: var(--accent-pale);
}
.nav-icons {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
}
.nav-icons a {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.nav-icons a:hover { color: var(--accent); }

/* ── FOOTER ── */
.site-footer {
  background: #1c1814;
  padding: 72px 0 0;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: #faf6f4;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--accent-light);
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.footer-desc {
  font-size: 13px;
  color: rgba(250,246,244,0.4);
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,246,244,0.45);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(250,246,244,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--accent-light); }
.footer-icons { display: flex; gap: 10px; margin-top: 4px; }
.footer-icons a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(250,246,244,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,246,244,0.45);
  transition: background 0.2s, color 0.2s;
}
.footer-icons a:hover { background: var(--accent); color: #fff; }
.footer-bottom {
  max-width: 1140px;
  margin: 56px auto 0;
  padding: 20px 48px;
  border-top: 1px solid rgba(250,246,244,0.08);
  font-size: 12px;
  color: rgba(250,246,244,0.25);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 148px 48px 80px;
  text-align: center;
  background: linear-gradient(160deg, #ddd6cc 0%, #ece8e2 50%, #f5f2ee 100%);
  border-bottom: 1px solid var(--border);
}
.page-header .section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 700;
  font-style: italic;
  color: var(--accent-dark);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  line-height: 1.1;
}
.page-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* shared nav SVG icons for all pages */
.gh-icon path { fill: currentColor; }

@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 0 24px; gap: 36px; }
  .footer-bottom { padding: 20px 24px; }
  .page-header { padding: 110px 24px 60px; }
}
