:root {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color-scheme: dark;
  background: #18211d;
  color: #f7edcd;
}
* { box-sizing: border-box; }
html { min-height: 100%; background: #18211d; }
body {
  min-height: 100vh; margin: 0; background: #23362d; color: #f7edcd;
  letter-spacing: 0;
}
a { color: inherit; }
.site-header {
  border-bottom: 1px solid rgba(241,218,143,.24); background: #111b17;
}
.header-inner {
  display: flex; width: min(100% - 32px, 920px); min-height: 76px; margin: auto;
  align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { display: block; width: min(240px, 48vw); height: auto; }
.site-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px 16px; }
.site-nav a {
  color: #a9c2b6; font-size: 12px; font-weight: 800; text-decoration: none;
  text-transform: uppercase;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #f1c453; }
main { width: min(100% - 32px, 760px); margin: 0 auto; padding: 64px 0 72px; }
.eyebrow {
  margin: 0 0 10px; color: #f1c453; font-size: 11px; font-weight: 900;
  letter-spacing: 1.3px; text-transform: uppercase;
}
h1 {
  margin: 0; color: #ef4d5f; font-size: clamp(38px, 8vw, 66px); line-height: .98;
  letter-spacing: 0; text-shadow: 0 3px 0 #641d28;
}
.lead { max-width: 680px; margin: 18px 0 34px; color: #e2d8b8; font-size: clamp(17px, 3vw, 21px); line-height: 1.55; }
.content-section { padding: 24px 0; border-top: 1px solid rgba(241,218,143,.18); }
.content-section h2 { margin: 0 0 8px; color: #f1c453; font-size: 15px; text-transform: uppercase; }
.content-section p, .content-section li { color: #c6d7ce; font-size: 14px; line-height: 1.68; }
.content-section p { margin: 0; }
.content-section ul { margin: 8px 0 0; padding-left: 21px; }
.content-section li + li { margin-top: 8px; }
.contact-button {
  display: inline-block; margin-top: 24px; padding: 12px 19px; border-radius: 6px;
  background: #f1c453; box-shadow: 0 5px 0 #9b7322; color: #272c24;
  font-size: 14px; font-weight: 900; text-decoration: none;
}
.contact-button:hover { background: #ffe181; transform: translateY(-1px); }
.site-footer { border-top: 1px solid rgba(241,218,143,.18); background: #111b17; }
.footer-inner {
  display: flex; width: min(100% - 32px, 920px); min-height: 72px; margin: auto;
  align-items: center; justify-content: space-between; gap: 16px;
  color: #809a8e; font-size: 11px;
}
.footer-links { display: flex; gap: 14px; }
.footer-links a { color: #9db7aa; text-underline-offset: 3px; }
.footer-links a:hover { color: #f1c453; }
@media (max-width: 620px) {
  .header-inner, .footer-inner { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .site-nav { justify-content: flex-start; }
  main { padding-top: 42px; }
}
