/* ============================================================
   Studio Cruda · base.css
   Variables, reset, nav, footer, utilities, reveal
   ============================================================ */

:root {
  --w:   #FBFAF6;
  --w2:  #F4F0E6;
  --w3:  #e4ddd4;
  --g1:  #c2bab2;
  --g2:  #8a8278;
  --g3:  #5C544A;
  --ink: #14120E;
  --pad: clamp(1.5rem, 5vw, 5rem);
  --fd:  'Cormorant Garamond', Georgia, serif;
  --fs:  'Syne', sans-serif;
  --fb:  'Lato', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--w); color: var(--ink); font-family: var(--fb); font-weight: 400; font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* NAV */
nav { position: fixed; inset: 0 0 auto 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 1.8rem var(--pad); background: rgba(251,250,246,0.92); backdrop-filter: blur(8px); }
.nav-logo { font-family: var(--fs); font-size: 0.78rem; font-weight: 300; letter-spacing: 0.44em; text-transform: uppercase; color: var(--ink); text-decoration: none; line-height: 1; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-family: var(--fs); font-size: 0.58rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--g2); text-decoration: none; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

/* FOOTER */
footer { background: var(--ink); padding: 2.5rem var(--pad); display: flex; justify-content: space-between; align-items: center; }
.f-logo { font-family: var(--fs); font-size: 0.68rem; font-weight: 300; letter-spacing: 0.44em; text-transform: uppercase; color: #ffffff; text-decoration: none; transition: color .2s; }
.f-logo:hover { color: var(--g1); }
.f-links { display: flex; gap: 2rem; list-style: none; }
.f-links a { font-family: var(--fs); font-size: 0.54rem; letter-spacing: 0.18em; text-transform: uppercase; color: #ffffff; text-decoration: none; transition: color .2s; }
.f-links a:hover { color: var(--g2); }
.f-copy { font-size: 0.6rem; color: #ffffff; }

/* UTILITIES */
.label { font-family: var(--fs); font-size: 0.56rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--g2); margin-bottom: 1.1rem; display: block; }
.st { font-family: var(--fd); font-size: clamp(2rem, 3.2vw, 3.8rem); font-weight: 300; line-height: 1.1; color: var(--ink); }
.st em { font-style: italic; }

/* SCROLL REVEAL — pages can override with transform */
.reveal { opacity: 0; transition: opacity .7s ease; }
.reveal.visible { opacity: 1; }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
