@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Josefin+Sans:wght@100;300;400&family=Courier+Prime:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --black: #0a0908;
  --off-white: #f2ede4;
  --warm-white: #faf7f2;
  --red: #c0392b;
  --red-dark: #922b21;
  --gold: #b8860b;
  --gray: #6b6560;
  --light-gray: #c4bdb5;
  --border: #ddd8d0;
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--off-white);
  color: var(--black);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: var(--black);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 900; letter-spacing: 0.06em;
  color: var(--off-white); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; }

.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(242,237,228,0.55); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--off-white); }
.nav-links a.active { border-bottom: 1px solid var(--red); padding-bottom: 1px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1px; background: var(--off-white); transition: 0.3s; }

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

/* ── SECTION HEADER ── */
.section-header {
  padding: 64px 40px 48px;
  border-bottom: 1px solid var(--border);
  max-width: 1080px; margin: 0 auto 48px;
}
.section-eyebrow {
  font-family: 'Courier Prime', monospace;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 900; line-height: 1; letter-spacing: -0.01em;
}
.section-sub {
  margin-top: 14px; font-size: 14px; font-weight: 300;
  letter-spacing: 0.08em; color: var(--gray);
  max-width: 520px; line-height: 1.8;
}

.page-inner { max-width: 1080px; margin: 0 auto; padding: 0 40px 80px; }

/* ── FOOTER ── */
footer {
  background: var(--black); color: rgba(242,237,228,0.4);
  padding: 28px 40px;
  display: flex; align-items: center; justify-content: space-between;
}
footer .f-logo {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 900;
  color: rgba(242,237,228,0.7);
}
footer p { font-family: 'Courier Prime', monospace; font-size: 10px; letter-spacing: 0.12em; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase;
  padding: 12px 24px; background: var(--black); color: var(--off-white);
  border: none; cursor: pointer; text-decoration: none; transition: background 0.2s;
}
.btn:hover { background: var(--red); }
.btn-ghost {
  background: none; color: var(--black); border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--black); color: var(--off-white); border-color: var(--black); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 20px; right: 28px; z-index: 500;
  background: var(--black); color: var(--off-white); border-left: 3px solid var(--red);
  font-family: 'Courier Prime', monospace; font-size: 11px; letter-spacing: 0.1em;
  padding: 12px 18px; opacity: 0; transform: translateY(6px);
  transition: all 0.3s; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 14px;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--black); padding: 24px 20px;
    border-top: 1px solid #1a1a1a;
  }
  .hamburger { display: flex; }
  .section-header, .page-inner, footer { padding-left: 20px; padding-right: 20px; }
}
