:root {
  --club-red: #B00000;
  --bright-red: #E00000;
  --pale-green: #A9CFAE;
  --wine: #6E0010;
  --white: #FFFFFF;
  --ink: #111111;
  --soft-gray: #EFEFEF;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--pale-green);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.6;
}
a { color: var(--club-red); }
.container { max-width: 960px; margin: 0 auto; }

.qs-header { background: var(--white); padding-top: 18px; }
.qs-topbar { background: var(--white); }
.qs-topbar-inner {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.qs-brand,
.qs-footer-brand,
.qs-logo-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--wine);
  font-weight: 700;
}
.qs-brand-text { font-size: 2rem; }
.qs-mark { display: inline-flex; }
.qs-mark span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: .95rem;
}
.qs-mark span:first-child { background: var(--wine); color: var(--white); }
.qs-mark span:last-child { margin-left: -6px; background: var(--club-red); color: var(--white); }
.qs-phone { color: var(--ink); }

.qs-nav { background: var(--white); box-shadow: none; }
.qs-nav .nav-wrapper {
  background: var(--club-red);
  max-width: 960px;
  margin: 0 auto;
}
.qs-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0 44px;
}
.qs-menu li { list-style: none; position: relative; }
.qs-menu a {
  display: block;
  color: var(--white);
  text-decoration: none;
  padding: 12px 10px;
  font-weight: 700;
  font-size: .95rem;
}
.qs-menu a:hover,
.qs-menu li:first-child > a {
  background: var(--bright-red);
  color: var(--white);
}
.qs-submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 40;
  min-width: 260px;
  margin: 0;
  padding: 6px 0;
  background: var(--wine);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .2);
}
.qs-menu li:hover > .qs-submenu,
.qs-menu li:focus-within > .qs-submenu {
  display: block;
}
.qs-submenu a {
  font-size: .88rem;
  padding: 10px 14px;
  white-space: normal;
}

.qs-hero { background: var(--soft-gray); padding: 36px 0; }
.qs-hero h1 { color: var(--wine); font-size: 2.4rem; line-height: 1.1; }
.qs-lead { font-size: 1.15rem; }
.qs-cta,
.qs-footer-cta {
  display: inline-block;
  background: var(--bright-red);
  color: var(--white);
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 700;
}
.qs-main-section { background: var(--white); padding: 32px 24px 58px; }
.qs-page-title { background: var(--soft-gray); border-bottom: 5px solid var(--club-red); padding: 28px 0; }
.qs-page-title h1,
.qs-article h1,
.qs-article h2,
.qs-card h3,
.qs-category-card h2 { color: var(--wine); }
.qs-content-panel,
.qs-article,
.qs-sidebar,
.qs-card,
.qs-product-card,
.qs-category-card {
  background: var(--soft-gray);
  border: 1px solid #ddd;
}
.qs-content-panel,
.qs-article,
.qs-sidebar { padding: 24px; }
.qs-product-card {
  min-height: 110px;
  display: flex;
  align-items: end;
  padding: 16px;
  margin-bottom: 16px;
  background: var(--club-red);
  border-bottom: 6px solid var(--bright-red);
  text-decoration: none;
}
.qs-product-card span { color: var(--white); font-size: 1.25rem; font-weight: 700; }
.qs-listing-grid { display: grid; gap: 14px; }
.qs-card {
  display: grid;
  grid-template-columns: minmax(0, 180px) 1fr;
  gap: 16px;
  padding: 16px;
  margin-bottom: 16px;
}
.qs-card img,
.qs-figure img { max-width: 100%; height: auto; display: block; }
.qs-figure { margin: 22px 0; }
.qs-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }
.qs-sidebar { background: var(--soft-gray); border-left: 6px solid var(--club-red); }
.qs-breadcrumbs { margin-bottom: 12px; }
.toc { background: var(--soft-gray); padding: 18px; margin: 24px 0; }
.qs-footer { background: var(--wine); color: var(--white); padding: 36px 0; border-top: 8px solid var(--club-red); }
.qs-footer h3,
.qs-footer a { color: var(--white); }
.inline-image { max-width: 120px; }
.qs-table-wrap { overflow: auto; }
blockquote { border-left: 5px solid var(--club-red); color: #333; }

@media (max-width: 760px) {
  .qs-topbar-inner { min-height: 100px; }
  .qs-brand-text { font-size: 1.35rem; }
  .qs-menu { display: block; padding: 0; }
  .qs-submenu {
    position: static;
    box-shadow: none;
  }
  .qs-menu li:hover > .qs-submenu,
  .qs-menu li:focus-within > .qs-submenu {
    display: block;
  }
  .qs-card { grid-template-columns: 1fr; }
  .qs-hero h1 { font-size: 1.8rem; }
}
