/* ===== Slab City St. Louis — shared styles ===== */
:root {
  --navy: #0A1F44;
  --navy-2: #0D2758;
  --navy-light: #12305F;
  --red: #C41E3A;
  --red-dark: #96162C;
  --blue: #4FA8DA;
  --ink: #1B2430;
  --grey: #5B6474;
  --bg: #F6F8FC;
  --card-border: #E2E8F3;
  --white: #FFFFFF;
  --radius: 12px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  color: var(--red);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
h1, h2, h3 { color: var(--navy); line-height: 1.15; margin: 0 0 12px; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 14px; color: var(--grey); }
.section { padding: 64px 0; }
.section.tight { padding: 40px 0; }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 8px 20px rgba(196,30,58,0.28); }
.btn-primary:hover { box-shadow: 0 12px 26px rgba(196,30,58,0.36); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-outline:hover { border-color: #fff; }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Header / Nav */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  border-bottom: 3px solid var(--red);
}
header.site .bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 48px; height: 48px; border-radius: 50%; box-shadow: 0 0 0 2px var(--red); }
.brand .name { color: var(--white); font-weight: 800; font-size: 1.05rem; letter-spacing: 0.3px; }
.brand .name small { display: block; color: var(--blue); font-weight: 700; font-size: 0.65rem; letter-spacing: 1.5px; }

nav.mainnav { display: flex; align-items: center; gap: 28px; }
nav.mainnav a {
  color: #DCE6F6; font-weight: 600; font-size: 0.92rem;
  padding: 6px 2px; border-bottom: 2px solid transparent;
}
nav.mainnav a:hover, nav.mainnav a.active { color: var(--white); border-bottom-color: var(--red); }
.navcta { display: flex; align-items: center; gap: 14px; }
.navcta a.phone { color: var(--blue); font-weight: 700; font-size: 0.9rem; }

.navtoggle { display: none; background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; }

@media (max-width: 860px) {
  nav.mainnav { display: none; }
  .navcta .phone { display: none; }
  .navtoggle { display: block; }
  header.site.open nav.mainnav {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-2); padding: 14px 24px 20px; border-bottom: 3px solid var(--red);
  }
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 82% 6%, rgba(79,168,218,0.28) 0%, rgba(79,168,218,0) 45%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy) 100%);
  color: var(--white);
  padding: 72px 0 84px;
}
.hero .wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.hero h1 { color: var(--white); }
.hero h1 span { color: var(--red); }
.hero p.lead { color: #D7E2F2; font-size: 1.08rem; max-width: 560px; }
.hero .logo-wrap { display: flex; justify-content: center; }
.hero .logo-wrap img { width: 260px; height: 260px; border-radius: 50%; box-shadow: 0 0 0 6px var(--red), 0 20px 44px rgba(0,0,0,0.4); background: var(--white); padding: 6px; }
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero .btn-row { justify-content: center; }
  .hero .logo-wrap img { width: 190px; height: 190px; }
}

/* Announcement bar */
.announce {
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 18px;
}
.announce span.dot { color: #FFD9DF; margin: 0 8px; }

/* Cards / grids */
.grid { display: grid; gap: 20px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 2px 10px rgba(10,31,68,0.04);
}
.card h3 { margin-bottom: 6px; }
.card p:last-child { margin-bottom: 0; }
.card .icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; margin-bottom: 14px;
}

.dark-section {
  background: var(--navy);
  color: var(--white);
}
.dark-section h2, .dark-section h3 { color: var(--white); }
.dark-section p { color: #D7E2F2; }
.dark-card {
  background: var(--navy-light);
  border: 1px solid rgba(79,168,218,0.35);
  border-radius: var(--radius);
  padding: 22px;
}
.dark-card .icon { background: var(--red); }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: rgba(79,168,218,0.14);
  border: 1px solid var(--blue);
  color: var(--navy);
  font-size: 0.82rem; font-weight: 700;
  padding: 7px 14px; border-radius: 999px;
}
.dark-section .chip { color: #DDEEFA; }

/* Tables */
table.rates { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 10px rgba(10,31,68,0.04); }
table.rates th, table.rates td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--card-border); }
table.rates th { background: var(--navy); color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
table.rates tr:last-child td { border-bottom: none; }
table.rates td.big { font-weight: 800; color: var(--red); font-size: 1.1rem; }

/* Pricing box */
.pricing-box {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px 32px;
  display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center;
  box-shadow: 0 14px 30px rgba(150,22,44,0.3);
}
.pricing-box .amt { font-size: 2.4rem; font-weight: 800; }
.pricing-box .amt span { font-size: 1rem; font-weight: 600; }
.pricing-box .label { text-transform: uppercase; letter-spacing: 1px; font-weight: 700; font-size: 0.85rem; margin-bottom: 4px; }
.pricing-box .note { font-size: 0.92rem; color: #FFE9EC; }
@media (max-width: 700px) { .pricing-box { grid-template-columns: 1fr; text-align: left; } }

/* Numbered steps */
.step { display: flex; gap: 16px; align-items: flex-start; }
.step .num {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%;
  background: var(--red); color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* Info list (contact/hours) */
.infolist dt { font-weight: 700; color: var(--navy); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 16px; }
.infolist dd { margin: 4px 0 0; color: var(--grey); }
.infolist dt:first-child { margin-top: 0; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid var(--card-border); color: var(--grey); }
.hours-table td:first-child { font-weight: 700; color: var(--navy); }
.hours-table td:last-child { text-align: right; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: #D7E2F2; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Map */
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--card-border); }
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }

/* Footer */
footer.site {
  background: var(--navy);
  color: #B9C6DD;
  padding: 48px 0 24px;
  margin-top: 40px;
}
footer.site .grid { grid-template-columns: 1.3fr 1fr 1fr; margin-bottom: 32px; }
footer.site h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 14px; }
footer.site a { color: #B9C6DD; display: block; margin-bottom: 8px; font-size: 0.92rem; }
footer.site a:hover { color: var(--white); }
footer.site .brand .name { color: var(--white); }
footer.site .bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 8px; padding-top: 20px;
  font-size: 0.8rem; color: #8CA0C2;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
@media (max-width: 700px) { footer.site .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { footer.site .grid { grid-template-columns: 1fr; } }

.social-row { display: flex; gap: 10px; margin-top: 6px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800; color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
}
.social-row a:hover { background: var(--red); border-color: var(--red); }
