:root {
  --ink: #0E1A2B;
  --ink-soft: #1E2A3D;
  --ink-mute: #4A5567;
  --paper: #F5F0E6;
  --paper-warm: #EDE5D3;
  --paper-deep: #E5DBC4;
  --line: #C8BBA0;
  --line-soft: #D9CFB8;
  --bordeaux: #7A2C2C;
  --bordeaux-d: #5E1F1F;
  --gold: #B8935A;
  --gold-soft: #D4B17F;
  --green-seal: #2D4A3E;
  --shadow-sm: 0 1px 2px rgba(14,26,43,.06), 0 2px 6px rgba(14,26,43,.04);
  --shadow-md: 0 4px 12px rgba(14,26,43,.08), 0 12px 32px rgba(14,26,43,.06);
  --shadow-lg: 0 12px 32px rgba(14,26,43,.10), 0 32px 80px rgba(14,26,43,.08);
  --radius: 6px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(14,26,43,.012) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(14,26,43,.012) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  mix-blend-mode: multiply;
  opacity: .5;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.container-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 240, 230, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(200, 187, 160, 0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.logo-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  object-fit: contain;
}
.logo-text {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 40;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.logo-text sup {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--bordeaux);
  margin-left: 4px;
  vertical-align: super;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--bordeaux); }
.nav-cta-group { display: flex; align-items: center; gap: 18px; }
.nav-login {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 880px) { .nav-links { display: none; } }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s cubic-bezier(.2,.8,.2,1);
  line-height: 1;
}
.btn-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-primary:hover { background: var(--bordeaux); border-color: var(--bordeaux); }
footer {
  background: var(--ink);
  color: rgba(245, 240, 230, 0.75);
  padding: 80px 0 40px;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.footer-brand h4 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-size: 1.6rem;
  color: var(--paper);
  margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 320px; color: rgba(245, 240, 230, 0.75); }
.footer-col h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(245, 240, 230, 0.7); text-decoration: none; font-size: 14px; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  border-top: 1px solid rgba(245, 240, 230, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(245, 240, 230, 0.5);
}
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom-links a {
  color: rgba(245, 240, 230, 0.7);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-bottom-links a:hover {
  color: var(--paper);
}
