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

:root {
  --ink: #0f0a05;
  --parchment: #1f1812;
  --parchment-dark: #e8d9b8;
  --parchment-mid: #2a2118;
  --surface: #2a2118;
  --surface-alt: #342a1f;
  --text: #ece4d0;
  --text-muted: #b8ad94;
  --gold: #c9962a;
  --gold-light: #e8b84b;
  --gold-dark: #a07a1f;
  --crimson: #8b1a1a;
  --crimson-light: #c0392b;
  --steel: #b8ad94;
  --steel-light: #8a8170;
  --shadow: rgba(26, 18, 9, 0.18);
  --shadow-soft: 0 4px 20px rgba(26, 18, 9, 0.08), 0 1px 3px rgba(26, 18, 9, 0.05);
  --shadow-md: 0 10px 30px rgba(26, 18, 9, 0.12), 0 2px 6px rgba(26, 18, 9, 0.06);
  --shadow-lg: 0 20px 60px rgba(26, 18, 9, 0.18), 0 4px 12px rgba(26, 18, 9, 0.08);
  --shadow-glow: 0 0 40px rgba(201, 150, 42, 0.18);
  --border: rgba(201, 150, 42, 0.35);
  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-height: 68px;
  --font-display: 'Cormorant SC', 'Marcellus', Georgia, serif;
  --font-head: 'Marcellus', 'Cormorant SC', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--parchment);
  color: var(--text);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.6;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(201,150,42,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(139,26,26,0.08) 0%, transparent 55%);
  min-height: 100vh;
}

a { color: var(--gold-dark); text-decoration: none; }
a:hover { color: var(--crimson); }

/* ─── NAV ─────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(15, 10, 5, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(201, 150, 42, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
}
.nav-logo img {
  height: 22px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

.nav-links a.active {
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); margin: 5px 0;
  transition: transform 0.25s, opacity 0.25s;
}

/* ─── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--parchment-dark);
  padding: 3rem 2.5rem 2rem;
  margin-top: 5rem;
  border-top: 2px solid var(--gold);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.footer-tagline { font-size: 0.9rem; color: var(--steel-light); }

.footer-links {
  display: flex; flex-direction: column; gap: 0.5rem;
  list-style: none; text-align: right;
}
.footer-links a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--parchment-dark);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(201,150,42,0.2);
  padding-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--steel-light);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ─── DECORATIVE DIVIDER ──────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 2.5rem 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.divider-icon { color: var(--gold); font-size: 1.1rem; }

/* ─── HERO SHARED ─────────────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding: 4rem 2.5rem 3.5rem;
  text-align: center;
  border-bottom: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(201,150,42,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--parchment-dark);
  max-width: 540px;
  margin: 0 auto;
  font-style: italic;
}

/* ─── SECTION LAYOUT ──────────────────────────────────── */
.section { padding: 4rem 2.5rem; max-width: 1100px; margin: 0 auto; }
.section-sm { max-width: 780px; }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .site-nav { padding: 0 1.2rem; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--ink);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(201,150,42,0.25);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    gap: 1.2rem;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  .nav-links a { padding: 0.4rem 0; font-size: 0.9rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .site-footer { grid-template-columns: 1fr; padding: 2.5rem 1.5rem 1.5rem; }
  .footer-links { text-align: left; }
  .footer-bottom { flex-direction: column; }
  .section { padding: 2.5rem 1.2rem; }
  .page-hero { padding: 2.5rem 1.2rem 2rem; }
  .hero-title { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .hero-subtitle { font-size: 1rem; }
}

@media (max-width: 420px) {
  body { font-size: 17px; }
  .section { padding: 2rem 1rem; }
  .page-hero { padding: 2rem 1rem 1.6rem; }
}
