:root {
  --blue: #003B7A;
  --orange: #FF8614;
  --yellow: #FFE500;
  --ink: #1D2430;
  --soft: #EEF3F8;
  --paper: #FFFFFF;
  --line: #D9E4EF;
}

/*
Design audit typography tokens:
h1 36-48px / 800
h2 26-34px / 800
h3 20-24px / 700
body 16-17px / 400
small 13px / 500.
h1 48-64px / 800
h2 30-38px / 700
h3 22-26px / 700
body 16-18px / 400
small 13-14px / 600.
Montserrat; Inter; strong retail headings and practical readable body text.
sans-serif; sturdy retail and signage feel.
sans-serif; readable for lists
contact details
and news snippets.
*/

html { background: var(--soft); }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
  background: var(--soft);
}

a { color: var(--blue); }
a:hover { color: var(--orange); }

.container { width: min(1180px, 92%); }

.top-strip {
  background: var(--blue);
  color: #fff;
  font-size: .86rem;
}
.top-strip__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.top-strip a { color: #fff; font-weight: 600; }

.site-nav {
  background: #fff;
  color: var(--ink);
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}
.nav-content { min-height: 76px; position: relative; }
.site-logo {
  display: flex !important;
  align-items: center;
  gap: .65rem;
  color: var(--blue) !important;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}
.logo-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--blue);
  border: 3px solid var(--orange);
}
.logo-text { font-size: 1.35rem; }
.site-menu a {
  color: var(--blue) !important;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .82rem;
}
.site-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 760px;
}
.site-menu > li {
  position: relative;
}
.site-submenu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(0, 59, 122, .16);
  z-index: 30;
}
.site-menu > li:hover .site-submenu { display: block; }
.site-submenu li { float: none; }
.site-submenu a {
  display: block;
  line-height: 1.25;
  padding: .8rem 1rem;
  text-transform: none;
}

.catalog-band {
  background: var(--yellow);
  border-bottom: 4px solid var(--orange);
}
.catalog-band__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: .85rem;
  overflow-x: auto;
}
.catalog-band a {
  color: var(--blue);
  white-space: nowrap;
  font-weight: 800;
  font-size: .86rem;
}

.home-hero, .article-hero, .listing-hero {
  background: linear-gradient(135deg, var(--blue), #0759A8);
  color: #fff;
}
.home-hero { padding: 4.8rem 0 3.6rem; }
.article-hero, .listing-hero { padding: 3.6rem 0 3rem; }
.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  margin: 0 0 .65rem;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .82rem;
}
h1, h2, h3, .footer-title {
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
}
h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  line-height: 1;
  font-weight: 800;
}
.article-hero h1,
.listing-hero h1 {
  max-width: 1040px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.12;
}
.hero-copy {
  max-width: 620px;
  font-size: 1.14rem;
  line-height: 1.7;
}
.store-card {
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  padding: 1.5rem;
  border: 4px solid var(--yellow);
  box-shadow: 0 18px 42px rgba(0, 59, 122, .22);
}
.store-card h2 { color: var(--blue); font-size: 1.55rem; margin-top: .2rem; }
.store-card__label { color: var(--orange); font-weight: 900; text-transform: uppercase; }

.page-band { padding: 2.6rem 0 3.6rem; }
.layout-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1.5rem;
  align-items: start;
}
.content-panel, .site-sidebar, .offer-card, .category-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.content-panel { padding: 1.6rem; }
.site-prose h2 { color: var(--blue); font-size: 2rem; }
.site-prose p, .site-prose li {
  font-size: 1rem;
  line-height: 1.72;
}
.site-prose img { max-width: 100%; border-radius: 8px; border: 1px solid var(--line); }

.site-sidebar { padding: 1rem; }
.site-sidebar h2 {
  color: var(--blue);
  font-size: 1.25rem;
  margin: 0 0 .8rem;
}
.site-sidebar a {
  display: block;
  padding: .62rem .4rem;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.offer-grid, .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}
.offer-card, .category-card {
  display: block;
  min-height: 112px;
  padding: 1rem;
  color: var(--ink);
  font-weight: 800;
  border-top: 5px solid var(--orange);
}
.offer-card img, .category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: .8rem;
}
.news-row {
  padding: .95rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.empty-state { min-height: 220px; display: grid; align-content: center; }

.site-breadcrumbs {
  display: flex;
  gap: .45rem;
  margin-bottom: 1.2rem;
  font-size: .9rem;
}
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 2.2rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .8fr);
  gap: 1.5rem;
}
.footer-title { color: var(--yellow); font-size: 1.45rem; margin: 0 0 .4rem; }
.footer-copy { color: #D8E0EA; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1rem;
}
.footer-links a { color: #fff; font-weight: 700; }

@media (max-width: 800px) {
  .home-hero__grid, .layout-with-sidebar, .footer-grid { grid-template-columns: 1fr; }
  .site-logo { left: 0; transform: none; }
  .logo-text { font-size: 1.05rem; }
  .site-menu { display: none; }
  .catalog-band__inner { width: 94%; }
  .content-panel { padding: 1.1rem; }
}
