@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

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

:root {
  --bg:        #0C0A09;
  --surface:   #1C1917;
  --surface2:  #292524;
  --border:    rgba(255,255,255,0.08);
  --muted:     #78716C;
  --text:      #FAFAF9;
  --text-soft: #D6D3D1;
  --gold:      #CA8A04;
  --gold-light:#FDE68A;
  --serif:     'Bodoni Moda', Georgia, serif;
  --sans:      'Jost', system-ui, sans-serif;
}

html { background: var(--bg); color: var(--text); font-family: var(--sans); font-size: 16px; line-height: 1.6; scroll-behavior: smooth; }
body { min-height: 100vh; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 80px 0; }

.kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; border: 1px solid transparent; cursor: pointer; text-decoration: none; transition: all 0.3s ease; }
.btn-primary { background: var(--gold); color: #0C0A09; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-ghost { background: rgba(255,255,255,0.05); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.18); }
.btn-sm { padding: 9px 18px; font-size: 11px; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(12,10,9,0.88); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.brand-name { font-family: var(--serif); font-size: 18px; color: var(--text); font-style: italic; }
.brand-tag { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 12px; font-weight: 400; color: var(--muted); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.25s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }

/* FOOTER */
footer { padding: 48px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-brand { font-family: var(--serif); font-size: 16px; font-style: italic; color: var(--text-soft); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 12px; color: var(--muted); text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 11px; color: var(--muted); }

/* BADGE */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; background: rgba(202,138,4,0.1); border: 1px solid rgba(202,138,4,0.25); border-radius: 2px; font-size: 11px; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }

/* PAGE HEADER (inner pages) */
.page-header { padding: 120px 0 60px; border-bottom: 1px solid var(--border); }
.page-header h1 { font-family: var(--serif); font-size: clamp(36px,5vw,64px); font-weight: 400; font-style: italic; line-height: 1.1; margin-top: 8px; }
.page-header p { color: var(--muted); font-size: 15px; max-width: 58ch; margin-top: 16px; font-weight: 300; line-height: 1.7; }

@media (max-width: 768px) {
  .brand-tag { display: none; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 11px; }
}
