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

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

:root {
  --black: #0a0a0a;
  --white: #fafaf8;
  --off: #f0ede8;
  --accent: #7ba7a0;
  --nav-h: 64px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--black);
  font-family: 'Playfair Display', Georgia, serif;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── NAV ── */
nav#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(250,250,248,0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  height: var(--nav-h);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  color: var(--black);
  text-transform: uppercase;
}

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

.nav-links a {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.nav-links a:hover, .nav-links a.active { opacity: 0.45; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
}

/* ── PAGE WRAPPER ── */
.page-wrap {
  padding-top: var(--nav-h);
  min-height: 100vh;
  position: relative;
}

/* ── PAGE FOOTER ── */
.page-foot {
  padding: 28px 60px 40px;
}

.home-link {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.home-link:hover { opacity: 0.45; }

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #ccc, transparent);
}

/* ── CLIPART ── */
.clipart-item img {
  display: block;
  max-width: 100%;
  pointer-events: none;
}

.clipart-item { cursor: default; }
a.clipart-item { cursor: pointer; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav#main-nav { padding: 0 20px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #eee;
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid #eee; }
  .nav-links a { display: block; padding: 14px 24px; }
  .page-foot { padding: 24px; }
}
