/* shared.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --text-dim: #888888;
  --gold: hsl(40, 98%, 50%);
  --nav-h: 56px;
}

html { background: var(--bg); color: var(--text); }
body { font-family: Arial, sans-serif; font-weight: 400; background: var(--bg); min-height: 100vh; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #efefef;
}

.nav-logo {
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 32px; list-style: none; }

.nav-links a {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1px; background: var(--text); transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── PAGE WRAPPER ── */
.page-content {
  padding-top: var(--nav-h);
}

/* ── H1 headings ── */
h1 {
  font-family: Arial, sans-serif;
  color: var(--gold);
  font-weight: 700;
}

/* ── FOOTER ── */
footer {
  padding: 32px 36px;
  text-align: center;
  border-top: 1px solid #efefef;
  margin-top: 60px;
}
footer p {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
}
footer a { color: var(--text-dim); text-decoration: none; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
