@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Barlow:wght@300;400;500&family=Barlow+Condensed:wght@300;400;500&display=swap');

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

:root {
  --black: #0a0a0a;
  --surface: #111111;
  --surface2: #181818;
  --border: rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.14);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.55);
  --faint: rgba(255,255,255,0.28);
  --accent: #d4b483;
  --accent2: #9a5530;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Barlow', sans-serif;
  --ff-label: 'Barlow Condensed', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.75;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, transparent 100%);
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.7; }

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

.nav-links a {
  font-family: var(--ff-label);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--accent); }

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

.page-header .eyebrow {
  font-family: var(--ff-label);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.page-header h1 {
  font-family: var(--ff-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
}

/* ── SECTIONS ── */
.section {
  padding: 72px 48px;
  border-bottom: 0.5px solid var(--border);
}

.section-label {
  font-family: var(--ff-label);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 40px;
}

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

.footer-name {
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-family: var(--ff-label);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--faint);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--muted); }

/* ── UTILITIES ── */
.divider {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 40px 0;
}

@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .nav-links { gap: 20px; }
  .page-header { padding: 120px 24px 48px; }
  .section { padding: 48px 24px; }
  footer { padding: 32px 24px; flex-direction: column; gap: 20px; text-align: center; }
}
