:root {
  --brand-red: #8b1e21;
  --brand-black: #111111;
  --brand-cream: #efe7dd;
  --brand-sand: #f6f1e9;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif; background: var(--brand-cream); color: var(--brand-black); }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1100px, 92%); margin: 0 auto; }
.topbar { background: var(--brand-cream); border-bottom: 4px solid var(--brand-red); position: sticky; top: 0; z-index: 10; }
.topbar-inner { display: flex; align-items: center; gap: 16px; padding: 10px 0; }
.logo { width: 72px; height: auto; }
.nav { display: none; gap: 18px; margin-left: auto; }
.nav a { color: var(--brand-black); text-decoration: none; font-weight: 600; }
.cta { background: var(--brand-red); color: #fff; padding: 10px 14px; border-radius: 8px; text-decoration: none; font-weight: 800; }
@media (min-width: 800px) {
  .nav { display: flex; }
}
.hero { background: var(--brand-sand); padding: 72px 0; border-bottom: 8px solid var(--brand-red); }
.hero h1 { font-size: clamp(28px, 4vw, 48px); margin: 0 0 12px; }
.hero p { font-size: 18px; margin: 0 0 20px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.badges { display: flex; gap: 10px; padding: 0; margin-top: 18px; list-style: none; flex-wrap: wrap; }
.badges li { background: #fff; border: 2px solid var(--brand-red); border-radius: 999px; padding: 8px 12px; font-weight: 600; }
.btn { display: inline-block; padding: 12px 18px; border-radius: 10px; text-decoration: none; font-weight: 800; }
.btn.primary { background: var(--brand-red); color: #fff; }
.btn.outline { border: 2px solid var(--brand-red); color: var(--brand-black); background: transparent; }
.section { padding: 56px 0; }
.section.alt { background: #fff; border-top: 1px solid #e7dfd4; border-bottom: 1px solid #e7dfd4; }
h2 { font-size: clamp(22px, 3vw, 32px); margin-top: 0; }
.grid.three { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .grid.three { grid-template-columns: repeat(3, 1fr); } }
.card { background: #fff; padding: 20px; border-radius: 14px; border: 1px solid #eadfce; }
.gallery { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.ba { background: #fff; border: 1px solid #eadfce; border-radius: 12px; overflow: hidden; }
.ba figcaption { background: var(--brand-red); color: #fff; text-align: center; padding: 6px 8px; font-weight: 700; }
.split { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 1000px) { .split { grid-template-columns: 1.2fr 1fr; } }
.quick-form label { display: grid; gap: 6px; margin-bottom: 12px; }
.quick-form input, .quick-form textarea { padding: 12px; border: 2px solid #d6cab7; border-radius: 10px; background: #fff; font: inherit; }
.quick-form button { width: 100%; }
.form-note { font-size: 12px; opacity: 0.8; }
.footer { padding: 24px 0; background: var(--brand-black); color: #fff; text-align: center; }
.footer a { color: #fff; }
/* Accessibility tweaks */
a:focus, button:focus, input:focus, textarea:focus { outline: 3px solid var(--brand-red); outline-offset: 2px; }
