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

/* ── VARIABLES ── */
:root {
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, sans-serif;
  --black: #0a0a0a;
  --white: #ffffff;
  --gray:  #888888;
  --nav-h: 56px;
  --pad:   30px;
}

/* ── BODY ── */
body { font-family: var(--sans); color: var(--black); background: var(--white); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: calc(var(--nav-h) + 16px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad) 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  z-index: 100;
}
.logo { text-decoration: none; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links li a { font-family: var(--sans); font-size: clamp(14px,1.71vw,24px); font-weight: 400; color: var(--black); text-decoration: none; transition: opacity 0.15s; }
.nav-links li a:hover, .nav-links li a.active { text-decoration: underline; text-underline-offset: 4px; }

/* ── PAGE WRAPPER ── */
.page { padding: 0 var(--pad); padding-top: calc(var(--nav-h) + 16px); }

/* ── REVEAL ── */
.reveal { opacity: 0; filter: brightness(0.2) blur(2px); transform: translateY(12px); transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), filter 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1); }
.reveal.in-view { opacity: 1; filter: brightness(1) blur(0); transform: translateY(0); }

/* ── FOOTER ── */
footer { background: var(--black); color: var(--white); padding: 32px var(--pad) 28px; }
.footer-inner { display: flex; justify-content: space-between; align-items: stretch; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav li a { font-family: var(--sans); font-size: 14px; color: var(--white); text-decoration: none; transition: opacity 0.2s; }
.footer-nav li a:hover { opacity: 0.45; }
.footer-socials { display: flex; gap: 18px; align-items: center; align-self: flex-end; }
.footer-socials a { color: var(--white); display: flex; align-items: center; opacity: 0.82; transition: opacity 0.2s; }
.footer-socials a:hover { opacity: 1; }
.social-icon { width: 20px; height: 20px; fill: currentColor; }
.footer-copy { text-align: center; font-size: 11.5px; color: rgba(255,255,255,0.35); margin-top: 36px; }
