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

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

:root {
  --bg: #0c0c0c;
  --text-primary: #f0ede8;
  --text-secondary: #a09d98;
  --text-muted: #5a5755;
  --border: rgba(255,255,255,0.1);
  --border-subtle: rgba(255,255,255,0.06);
  --navy-dark: #0d1b2a;
  --navy: #1a2e45;
  --navy-light: #2a4a6b;
  --navy-highlight: #4a7fa5;
}

html, body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  min-height: 100%;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* Fade in on page load */
body { animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Display font */
.font-display {
  font-family: 'Cormorant Garamond', serif;
}

/* Sticky header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border-subtle);
}
.site-header-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.site-header-logo:hover { color: var(--text-secondary); }
.site-header-label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Section header */
.section-header { margin-bottom: 5rem; }
.section-tag {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: block;
}
.section-title-row {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1;
  flex-shrink: 0;
}
.section-title-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin-bottom: 0.5rem;
}

/* Footer nav */
.footer-nav {
  margin-top: 8rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--text-primary); }

/* Nav link underline effect */
.nav-link {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--navy-highlight);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

/* Scrollbar */
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; }
