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

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

:root {
  --cream: #F6F3ED;
  --ink: #18160F;
  --mid: #7B7265;
  --accent: #B8895A;
  --accent-light: rgba(184,137,90,0.12);
  --rule: rgba(24,22,15,0.1);
  --rule-light: rgba(24,22,15,0.06);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  cursor: none;
  overflow-x: hidden;
}

/* ── Cursor ── */
.cursor {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s, background .25s;
}
.cursor.big {
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--accent);
}

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 52px;
  background: rgba(246,243,237,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s;
}
nav.scrolled { border-color: var(--rule); }

.nav-logo {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: .08em;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); font-style: italic; }

.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .3s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }

/* ── Page wrapper ── */
.page-wrap { padding-top: 90px; min-height: 100vh; }

/* ── Section base ── */
section { padding: 100px 52px; }

.section-eyebrow {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}
.section-eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Typography ── */
.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -.02em;
}

.body-copy {
  font-size: 15px;
  line-height: 1.9;
  color: var(--mid);
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s ease, transform .85s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--rule);
  padding: 28px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .06em;
  color: var(--ink);
  text-decoration: none;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color .3s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 11px; color: var(--mid); }
.footer-wit {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: .04em;
  opacity: .7;
}

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 16px 0;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(246,243,237,.55);
  padding: 0 44px;
}
.marquee-dot { color: var(--accent); opacity: 1 !important; padding: 0 12px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Floating art words ── */
.art-word {
  position: fixed;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.8vw, 44px);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  animation: artWordFloat 5s ease forwards;
  line-height: 1;
}
@keyframes artWordFloat {
  0%   { opacity: 0; transform: translateY(0); }
  15%  { opacity: .09; }
  75%  { opacity: .09; }
  100% { opacity: 0; transform: translateY(-52px); }
}

/* ── Buttons / links ── */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  transition: gap .3s, color .3s;
}
.text-link:hover { gap: 18px; color: var(--accent); }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 28px;
  text-decoration: none;
  transition: background .3s, gap .3s;
}
.btn-dark:hover { background: var(--accent); gap: 16px; }

/* ── Mobile ── */
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .nav-links { gap: 20px; }
  section { padding: 72px 24px; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; }
}
