:root {
  --bg: #f6f3ee;
  --paper: #ffffff;
  --text: #1f2328;
  --muted: #667085;
  --accent: #c9252d;
  --accent-dark: #9f1d24;
  --line: #e6e0d8;
  --shadow: 0 20px 45px rgba(31, 35, 40, .10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 86px; }
.brand img { width: 210px; height: auto; display: block; }
nav { display: flex; flex-wrap: wrap; gap: 8px 18px; font-weight: 700; }
nav a { text-decoration: none; color: #343a40; }
nav a:hover { color: var(--accent); }
.hero {
  padding: 90px 0 70px;
  background: radial-gradient(circle at top right, rgba(201,37,45,.13), transparent 32%), linear-gradient(135deg, #fff, #f7f0e8);
}
.hero-grid, .split, .contact-grid, .footer-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 48px; align-items: center; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .09em; font-weight: 800; font-size: .84rem; margin: 0 0 12px; }
h1, h2, h3 { line-height: 1.14; margin: 0 0 18px; }
h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); max-width: 860px; }
h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
h3 { font-size: 1.25rem; }
.lead { font-size: 1.18rem; max-width: 720px; color: #404650; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(201,37,45,.24);
}
.button:hover { background: var(--accent-dark); }
.button.ghost { background: #222831; box-shadow: none; }
.button.small { min-height: 42px; padding: 0 18px; font-size: .95rem; }
.quick-card, .card, .route-card, .contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.quick-card { border-top: 6px solid var(--accent); }
.muted, .form-note { color: var(--muted); font-size: .95rem; }
.section { padding: 76px 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 30px; }
.card { box-shadow: none; }
.card h3::before {
  content: "";
  display: block;
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
  margin-bottom: 18px;
}
.split-section { background: #fff; }
.hours { width: 100%; border-collapse: collapse; background: #fff; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); }
.hours th, .hours td { text-align: left; padding: 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours th { width: 38%; }
.contact-grid { align-items: start; }
.contact-form { display: grid; gap: 16px; }
label { display: grid; gap: 7px; font-weight: 800; }
input, textarea {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
}
input:focus, textarea:focus { outline: 3px solid rgba(201,37,45,.18); border-color: var(--accent); }
.map-section iframe { display: block; width: 100%; height: 430px; border: 0; filter: saturate(.9); }
.site-footer { padding: 54px 0; background: #20242a; color: #fff; }
.site-footer a { color: #fff; }
.site-footer .muted { color: #c5cad3; }
.footer-grid { align-items: start; }
@media (max-width: 820px) {
  .nav-wrap { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .brand img { width: 180px; }
  .hero { padding-top: 52px; }
  .hero-grid, .split, .contact-grid, .footer-grid, .cards { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hours th, .hours td { display: block; width: 100%; padding: 12px 16px; }
  .hours th { padding-bottom: 0; }
}
