*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #1A1208; --cream: #F5EDD8; --amber: #E8A020; --orange: #D45A1A;
  --orange-light: #F0D0B8; --olive: #5A6830; --olive-light: #D8E0B8;
  --muted: #4A3820;
}
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--black); line-height: 1.6; font-size: 16px; }

/* NAV */
nav { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 2rem; border-bottom: 2px solid var(--black); background: var(--cream); position: sticky; top: 0; z-index: 100; }
.logo { font-family: 'Fraunces', serif; font-size: 1.2rem; color: var(--black); font-weight: 900; text-decoration: none; }
.logo span { color: var(--orange); font-style: italic; }
.nav-links { list-style: none; display: flex; gap: 2rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--black); font-size: 0.88rem; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }
.nav-cta { background: var(--black) !important; color: var(--cream) !important; padding: 0.5rem 1.25rem; border-radius: 4px; font-size: 0.85rem !important; }
.nav-cta:hover { background: var(--orange) !important; color: var(--cream) !important; }
.nav-toggle { display: none; background: none; border: 2px solid var(--black); border-radius: 4px; padding: 0.35rem 0.6rem; cursor: pointer; font-size: 1rem; font-family: inherit; font-weight: 700; color: var(--black); }

/* BUTTONS */
.btn-primary { background: var(--black); color: var(--cream); border: 2px solid var(--black); padding: 0.875rem 1.75rem; border-radius: 4px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.15s; font-family: inherit; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: var(--orange); border-color: var(--orange); }
.btn-secondary { background: transparent; color: var(--black); border: 2px solid var(--black); padding: 0.875rem 1.75rem; border-radius: 4px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.15s; font-family: inherit; text-decoration: none; display: inline-block; }
.btn-secondary:hover { background: var(--amber); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.88rem; }

/* LABELS */
.label { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); background: var(--amber); padding: 0.3rem 0.75rem; border-radius: 100px; margin-bottom: 1rem; border: 1.5px solid var(--black); }
.label-orange { background: var(--orange); color: var(--cream); border-color: var(--orange-light); }

/* SECTION TITLES */
.section-title { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1rem; font-weight: 900; color: var(--black); }
.section-intro { font-size: 1rem; color: var(--muted); max-width: 640px; line-height: 1.75; margin-bottom: 2rem; }

/* FOOTER */
footer { border-top: 2px solid var(--black); padding: 2rem; text-align: center; font-size: 0.85rem; color: var(--muted); background: var(--cream); }
footer strong { color: var(--black); font-family: 'Fraunces', serif; font-weight: 900; }
footer a { color: var(--orange); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* CITATION */
.citation { font-size: 0.8rem; color: var(--muted); border-left: 3px solid var(--amber); padding-left: 0.75rem; margin: 0.5rem 0 1.25rem; font-style: italic; }
.citation a { color: var(--orange); }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); border-bottom: 2px solid var(--black); padding: 1rem 1.25rem; }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0.6rem 0; border-bottom: 1px solid rgba(26,18,8,0.1); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { font-size: 1rem; }
  .nav-cta { background: none !important; color: var(--black) !important; padding: 0 !important; border-radius: 0 !important; }
  .nav-toggle { display: block; }
}
