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

:root {
  --bg:        #0b0b0e;
  --bg2:       #111116;
  --bg3:       #17171e;
  --border:    #1f1f28;
  --border2:   #2a2a36;
  --purple:    #9b72cf;
  --purple-dim:#9b72cf22;
  --purple-border: #9b72cf44;
  --text:      #ede9e2;
  --text2:     #888;
  --text3:     #444;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Outfit', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Nav ──────────────────────────────────────────────── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text);
}

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

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text3);
  transition: color 0.2s;
}

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

/* ── Section label ────────────────────────────────────── */
.section-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  font-family: var(--sans);
  font-weight: 500;
}

/* ── Tags / pills ─────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--purple);
  border: 1px solid var(--purple-border);
  background: var(--purple-dim);
  border-radius: 3px;
  padding: 3px 10px;
  font-family: var(--sans);
}

/* ── Image placeholder (used until real images added) ─── */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  font-family: var(--sans);
}

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

.footer-copy {
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--purple); }

/* ── Animations ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.05s; }
.fade-up:nth-child(2) { animation-delay: 0.15s; }
.fade-up:nth-child(3) { animation-delay: 0.25s; }
.fade-up:nth-child(4) { animation-delay: 0.35s; }
.fade-up:nth-child(5) { animation-delay: 0.45s; }
.fade-up:nth-child(6) { animation-delay: 0.55s; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  footer { padding: 20px 24px; flex-direction: column; gap: 16px; text-align: center; }
}

.cover-main img, .cover-thumb img,
.img-full img, .img-half img, .img-third img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}