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

:root {
  --navy:    #1a2744;
  --claret:  #8b0000;
  --gold:    #c9a55a;
  --cream:   #f5f2eb;
  --offwhite:#faf8f4;
  --dark:    #1c1c1c;
  --mid:     #555;
  --light:   #999;
  --rule:    #d4cfc4;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  background: var(--offwhite);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.7;
}

/* ── NAV ─────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 64px;
  border-bottom: 2px solid var(--gold);
}

.nav-brand {
  font-family: 'Cormorant SC', serif;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: #fff;
  text-decoration: none;
}

.nav-brand span {
  color: var(--gold);
  font-size: 17px;
}

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

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 32px 60px;
  font-size: 11px;
  letter-spacing: 0.1em;
  border-top: 2px solid var(--gold);
  line-height: 1.9;
}

footer a { color: rgba(255,255,255,0.45); text-decoration: none; }

/* ── UTILS ────────────────────────────────────────────────────────── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px;
}

.rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 48px 0;
}

.rule-double {
  border: none;
  height: 5px;
  border-top: 2.5px solid var(--navy);
  border-bottom: 0.75px solid var(--navy);
  margin-bottom: 48px;
}

.serif { font-family: 'Cormorant Garamond', serif; }
.sc    { font-family: 'Cormorant SC', serif; }

/* ── IMAGE PLACEHOLDER ────────────────────────────────────────────── */
.img-placeholder {
  background: var(--cream);
  border: 2px dashed var(--rule);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  gap: 10px;
}

.img-placeholder svg {
  opacity: 0.35;
}

/* ── FADE IN ──────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s ease forwards;
}
.fade-in:nth-child(2) { animation-delay: 0.1s; }
.fade-in:nth-child(3) { animation-delay: 0.2s; }
.fade-in:nth-child(4) { animation-delay: 0.3s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
