:root {
--red: #8c1c13;
--red-deep: #641009;
--amber: #e8962e;
--cream: #fdf8f0;
--ink: #2c2420;
--ink-soft: #5a4f47;
--line: #e8ddcf;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Georgia, "Times New Roman", serif; color: var(--ink); background: var(--cream); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
.wrap { max-width: 56rem; margin-inline: auto; padding-inline: 1.2rem; }
.site-head { background: #fff; border-bottom: 4px solid var(--red); padding: 1.1rem 0; }
.head-row { display: flex; justify-content: center; }
.logo { width: 190px; height: auto; }
.hero { padding: 2.6rem 0 1.4rem; text-align: center; }
.hero h1 { margin: 0 0 1rem; color: var(--red); font-size: clamp(1.6rem, 3.6vw, 2.3rem); }
.hero p { margin: 0 auto 1rem; max-width: 44rem; color: var(--ink-soft); font-size: 1.06rem; }
.band { padding: 1.6rem 0 3rem; }
.store-grid { display: grid; gap: 1.6rem; }
@media (min-width: 720px) { .store-grid { grid-template-columns: 1fr 1fr; } }
.store-card { background: #fff; border: 1px solid var(--line); border-top: 5px solid var(--amber); border-radius: 10px; padding: 1.6rem 1.7rem; }
.store-card h2 { margin: 0 0 .8rem; color: var(--red); font-size: 1.35rem; }
.store-card h3 { margin: 1.1rem 0 .4rem; font-size: 1.02rem; color: var(--ink); }
.store-facts, .store-hours { margin: 0; padding: 0; list-style: none; color: var(--ink-soft); }
.store-facts li, .store-hours li { margin: 0 0 .35rem; }
.store-facts a { color: var(--red); }
.store-facts .note { font-style: italic; font-size: .95rem; }
.site-foot { background: var(--red-deep); color: #f3e2d8; padding: 1.2rem 0; text-align: center; }
.site-foot p { margin: 0; font-size: .95rem; }
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}