:root {
  --ink: #0d0c0a;
  --graphite: #2a2823;
  --bone: #faf8f5;
  --paper: #f5f2ec;
  --cream: #ece6da;
  --warmgray: #6b6760;
  --mist: #a7a39a;
  --paint-clay: #b8806a;
  --paint-cobalt: #2f4858;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; color: var(--ink); background: #fff; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1480px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container, .container-wide { padding: 0 3rem; } }

.topnav { position: sticky; top: 0; z-index: 40; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-bottom: 1px solid rgba(250,248,245,0.1); background: var(--graphite); padding: 1.25rem 1.5rem; color: var(--bone); }
@media (min-width: 768px) { .topnav { padding: 1.5rem 3rem; } }
.brand { display: flex; align-items: center; gap: 0.75rem; transition: opacity 0.3s; min-width: 0; }
.brand:hover { opacity: 0.8; }
.brand .dot { display: inline-block; height: 6px; width: 6px; border-radius: 50%; background: var(--bone); flex-shrink: 0; }
.brand .name { font-size: 15px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone); }
@media (min-width: 768px) { .brand .name { font-size: 16px; } }
.navlinks { display: none; align-items: center; gap: 2.5rem; font-size: 11px; text-transform: uppercase; letter-spacing: 0.32em; color: rgba(250,248,245,0.7); }
@media (min-width: 1024px) { .navlinks { display: flex; } }
.navlinks a { transition: color 0.3s; padding: 4px 0; position: relative; }
.navlinks a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%; background: currentColor; transform: scaleX(0); transform-origin: right center; transition: transform 0.5s; }
.navlinks a:hover { color: var(--bone); }
.navlinks a:hover::after { transform: scaleX(1); transform-origin: left center; }
.navcta { flex-shrink: 0; border-radius: 6px; background: var(--bone); padding: 0.5rem 1rem; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink); transition: background 0.5s; }
@media (min-width: 768px) { .navcta { padding: 0.625rem 1.25rem; font-size: 12px; } }
.navcta:hover { background: rgba(250,248,245,0.85); }

.page-hero { background: var(--bone); padding: 5rem 1.5rem 4rem; border-bottom: 1px solid rgba(13,12,10,0.08); }
@media (min-width: 768px) { .page-hero { padding: 7rem 3rem 6rem; } }
.page-hero .container-wide { padding: 0; }
.page-hero .eyebrow { display: flex; align-items: center; gap: 0.75rem; font-size: 11px; text-transform: uppercase; letter-spacing: 0.45em; color: var(--warmgray); margin-bottom: 1.75rem; }
.page-hero .eyebrow::before { content: ""; height: 1px; width: 2rem; background: rgba(107,103,96,0.5); }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); font-weight: 500; line-height: 1.05; letter-spacing: -0.025em; max-width: 22ch; margin: 0; }
.page-hero .sub { margin: 1.5rem 0 0; font-size: 17px; color: var(--warmgray); max-width: 60ch; }

.content { padding: 4rem 1.5rem 5rem; }
@media (min-width: 768px) { .content { padding: 6rem 3rem 7rem; } }
.content .container { max-width: 760px; padding: 0; }
.content h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 500; line-height: 1.2; letter-spacing: -0.015em; margin: 3.5rem 0 1.25rem; color: var(--ink); }
.content h2:first-child { margin-top: 0; }
.content h3 { font-size: 1.15rem; font-weight: 600; margin: 2rem 0 0.75rem; color: var(--ink); }
.content p { color: var(--graphite); margin: 0 0 1rem; font-size: 16px; }
.content ul, .content ol { color: var(--graphite); padding-left: 0; list-style: none; margin: 1rem 0 1.5rem; }
.content ul li, .content ol li { position: relative; padding-left: 1.5rem; margin-bottom: 0.65rem; }
.content ul li::before { content: ""; position: absolute; left: 0; top: 0.7em; height: 1px; width: 0.75rem; background: rgba(107,103,96,0.6); }
.content ol { counter-reset: ord; }
.content ol li { counter-increment: ord; }
.content ol li::before { content: counter(ord) "."; position: absolute; left: 0; top: 0; color: var(--warmgray); font-variant-numeric: tabular-nums; font-size: 14px; }
.content strong { color: var(--ink); font-weight: 600; }
.content a { text-decoration: underline; text-decoration-color: var(--mist); text-underline-offset: 4px; transition: text-decoration-color 0.3s; }
.content a:hover { text-decoration-color: var(--ink); }
.content .updated { font-size: 12px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--warmgray); margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(13,12,10,0.08); }

.cta-banner { background: var(--paper); padding: 4rem 1.5rem; }
@media (min-width: 768px) { .cta-banner { padding: 6rem 3rem; } }
.cta-banner .inner { max-width: 760px; margin: 0 auto; text-align: center; }
.cta-banner .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.45em; color: var(--warmgray); margin-bottom: 1.5rem; }
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 500; line-height: 1.15; letter-spacing: -0.02em; margin: 0; }
.cta-banner .actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn-primary, .btn-secondary { display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.95rem 1.75rem; font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em; border-radius: 6px; transition: all 0.5s; }
.btn-primary { background: var(--graphite); color: var(--bone); }
.btn-primary:hover { background: var(--ink); }
.btn-secondary { border: 1px solid rgba(13,12,10,0.15); color: var(--ink); }
.btn-secondary:hover { background: var(--graphite); color: var(--bone); }

.site-footer { background: var(--ink); color: var(--bone); padding: 5rem 1.5rem 3rem; }
@media (min-width: 768px) { .site-footer { padding: 6rem 3rem 3rem; } }
.site-footer .grid { display: grid; gap: 2.5rem; max-width: 1480px; margin: 0 auto; }
@media (min-width: 768px) { .site-footer .grid { grid-template-columns: 5fr 3fr 4fr; } }
.site-footer h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.35em; color: rgba(250,248,245,0.4); margin: 0 0 1.25rem; font-weight: 400; }
.site-footer .brandblock { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.site-footer .brandblock .dot { display: inline-block; height: 8px; width: 8px; border-radius: 50%; background: var(--paint-clay); }
.site-footer .brandblock .name { font-size: 17px; font-weight: 500; letter-spacing: 0.005em; }
.site-footer p { color: rgba(250,248,245,0.6); font-size: 14px; max-width: 32ch; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.6rem; font-size: 14px; }
.site-footer ul li a { color: var(--bone); position: relative; padding-bottom: 2px; }
.site-footer ul li a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: currentColor; transform: scaleX(0); transform-origin: right center; transition: transform 0.4s; }
.site-footer ul li a:hover::after { transform: scaleX(1); transform-origin: left center; }
.site-footer .phone { display: block; margin: 1.25rem 0 0.5rem; font-size: clamp(1.6rem, 2.4vw, 2rem); letter-spacing: -0.01em; color: var(--bone); }
.site-footer .phone:hover { color: var(--paint-clay); }
.site-footer .hours { font-size: 13px; color: rgba(250,248,245,0.6); }
.site-footer .location { margin-top: 1rem; font-size: 13px; color: rgba(250,248,245,0.6); }
.site-footer .meta-row { margin-top: 5rem; padding-top: 2rem; border-top: 1px solid rgba(250,248,245,0.1); display: flex; flex-direction: column; gap: 1rem; max-width: 1480px; margin-left: auto; margin-right: auto; align-items: center; justify-content: space-between; font-size: 11px; text-transform: uppercase; letter-spacing: 0.3em; color: rgba(250,248,245,0.4); }
@media (min-width: 768px) { .site-footer .meta-row { flex-direction: row; } }
.site-footer .meta-row .legal { display: flex; gap: 1.5rem; }
.site-footer .meta-row .legal a { color: rgba(250,248,245,0.55); transition: color 0.3s; }
.site-footer .meta-row .legal a:hover { color: var(--bone); }

.faq-item { border-top: 1px solid rgba(13,12,10,0.08); padding: 1.5rem 0; }
.faq-item:last-child { border-bottom: 1px solid rgba(13,12,10,0.08); }
.faq-item h3 { font-size: 1.05rem; font-weight: 600; margin: 0 0 0.75rem; }
.faq-item p { margin: 0 0 0.5rem; }
