/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --near-black: #111111;
  --surface: #161616;
  --border: rgba(255,255,255,0.08);
  --text: #e8e4dc;
  --muted: rgba(232,228,220,0.4);
  --faint: rgba(232,228,220,0.15);
  --accent: #c8a96e;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.97), transparent);
  border-bottom: 0.5px solid transparent;
  transition: border-color 0.3s;
}

nav.scrolled { border-bottom-color: var(--border); background: rgba(10,10,10,0.97); }

.nav-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* ── PAGE HEADER (non-hero pages) ── */
.page-header {
  padding: 140px 48px 72px;
  border-bottom: 0.5px solid var(--border);
}

.page-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.page-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  color: var(--text);
}

.page-title em { font-style: italic; color: var(--accent); }

/* -- HERO PAGES -- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 0.8s ease;
}
/* ── SECTIONS ── */
.section {
  padding: 72px 48px;
  border-bottom: 0.5px solid var(--border);
}

.section:last-child { border-bottom: none; }

.section-header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 40px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.section-line {
  flex: 1;
  height: 0.5px;
  background: var(--border);
}

/* ── FOOTER ── */
footer {
  border-top: 0.5px solid var(--border);
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer span {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--faint);
}

footer a {
  color: var(--faint);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover { color: var(--muted); }

/* ── CREDITS TABLE ── */
.credits-table {
  width: 100%;
  border-collapse: collapse;
}

.credits-table th {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  text-align: left;
  padding: 0 16px 16px 0;
  border-bottom: 0.5px solid var(--border);
  font-weight: 400;
}

.credits-table td {
  padding: 13px 16px 13px 0;
  border-bottom: 0.5px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  vertical-align: middle;
}

.credits-table tr:hover td { color: var(--text); transition: color 0.2s; }

.credit-title { color: var(--text) !important; }

.credit-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 0.5px solid rgba(200,169,110,0.3);
  padding: 2px 8px;
  margin-left: 10px;
  vertical-align: middle;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .page-header { padding: 100px 24px 48px; }
  .section { padding: 48px 24px; }
  footer { padding: 20px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .credits-table th:nth-child(3),
  .credits-table td:nth-child(3) { display: none; }
}


