/* Toledo Popcorn Removal — "Glass City industrial" design system
   Cool glass-blue + steel-grey on bright white, one warm brick-red accent.
   Crisp bordered cards, geometric sans display — a nod to glass panes. */

:root {
  --white: #ffffff;
  --panel: #f5f8fa;
  --glass: #19608c;
  --glass-deep: #0e4568;
  --glass-tint: #e9f1f7;
  --steel: #333d46;
  --steel-mid: #5b6a76;
  --line: #c7d3dc;
  --line-soft: #dde6ec;
  --brick: #b23a2a;
  --brick-deep: #922c1e;
  --display: "Avenir Next", Avenir, Futura, "Century Gothic", "Trebuchet MS", "Segoe UI", sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--steel);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--glass); }
a:hover { color: var(--glass-deep); }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--steel);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin: 0.4rem 0 0.9rem; }
h2 { font-size: clamp(1.45rem, 3vw, 1.9rem); margin: 2.4rem 0 0.8rem; }
h3 { font-size: 1.15rem; margin: 1.2rem 0 0.4rem; }
h4 { font-size: 1rem; margin: 0 0 0.6rem; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.center { text-align: center; }
main { padding-bottom: 3rem; }

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 3px double var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--steel);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.15;
}
.brand svg { flex: none; }
.brand-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-mid);
}
.nav-toggle {
  display: none;
  font: inherit;
  font-weight: 600;
  color: var(--steel);
  background: var(--white);
  border: 2px solid var(--line);
  padding: 0.35rem 0.8rem;
  cursor: pointer;
}
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 0.2rem; align-items: center; }
.site-nav { display: flex; align-items: center; gap: 0.75rem; }
.site-nav a {
  display: block;
  padding: 0.45rem 0.65rem;
  text-decoration: none;
  color: var(--steel);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.93rem;
}
.site-nav a:hover { color: var(--glass); }
.nav-drop { position: relative; }
.nav-drop > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 2px solid var(--line);
  border-top: 3px solid var(--glass);
  padding: 0.3rem 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.nav-drop:hover > ul, .nav-drop:focus-within > ul { display: flex; }
.nav-call {
  background: var(--brick);
  color: var(--white) !important;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.93rem;
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border: 2px solid var(--brick-deep);
  white-space: nowrap;
}
.nav-call:hover { background: var(--brick-deep); }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 2px solid var(--line); padding: 0.75rem 1.25rem 1rem; flex-direction: column; align-items: stretch; }
  .site-nav.open { display: flex; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-drop > ul { display: flex; position: static; border: none; border-left: 3px solid var(--line); margin-left: 0.75rem; padding: 0; }
  .nav-call { text-align: center; margin-top: 0.5rem; }
}

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
    repeating-linear-gradient(0deg, var(--line-soft) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(90deg, var(--line-soft) 0 1px, transparent 1px 64px),
    var(--white);
  border-bottom: 1px solid var(--line);
  padding: 2.75rem 0 3rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }
.kicker {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brick);
  border-bottom: 2px solid var(--brick);
  padding-bottom: 0.2rem;
}
.lead { font-size: 1.15rem; color: var(--steel-mid); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.4rem 0 1rem; }
.hero-points { list-style: none; margin: 1.2rem 0 0; padding: 0; }
.hero-points li { display: flex; align-items: flex-start; gap: 0.55rem; margin-bottom: 0.5rem; font-size: 0.98rem; }
.hero-points svg { flex: none; margin-top: 0.3rem; }
.hero-art img { border: 2px solid var(--line); box-shadow: 8px 8px 0 var(--glass-tint); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.75rem 1.35rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}
.btn-call { background: var(--brick); color: var(--white); border-color: var(--brick-deep); }
.btn-call:hover { background: var(--brick-deep); color: var(--white); }
.btn-quote { background: var(--white); color: var(--glass); border-color: var(--glass); }
.btn-quote:hover { background: var(--glass-tint); color: var(--glass-deep); }
.btn-glass { background: var(--glass); color: var(--white); border-color: var(--glass-deep); }
.btn-glass:hover { background: var(--glass-deep); color: var(--white); }

/* ---------- Cards (glass panes) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
  margin: 1.4rem 0;
}
.card {
  background: var(--white);
  border: 2px solid var(--line);
  border-top: 4px solid var(--glass);
  padding: 1.1rem 1.2rem;
}
.card h3 { margin-top: 0; }
.card p { margin-bottom: 0; font-size: 0.98rem; }

/* ---------- Steps ---------- */
.steps { list-style: none; counter-reset: step; margin: 1.4rem 0; padding: 0; }
.steps > li {
  counter-increment: step;
  position: relative;
  padding: 0 0 1.3rem 3.3rem;
  border-left: 2px solid var(--line);
  margin-left: 1.1rem;
}
.steps > li:last-child { border-left-color: transparent; }
.steps > li::before {
  content: counter(step);
  position: absolute;
  left: -1.2rem;
  top: 0;
  width: 2.3rem;
  height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  border: 2px solid var(--glass-deep);
}
.steps h3 { margin: 0 0 0.3rem; }
.steps p { margin: 0; }

/* ---------- Sections, notices, tables ---------- */
.section-alt {
  background: var(--glass-tint);
  border: 2px solid var(--line);
  padding: 1.5rem 1.75rem 1.75rem;
  margin: 2.2rem 0;
}
.section-alt h2:first-child { margin-top: 0.3rem; }
.notice {
  border: 2px solid var(--line);
  border-left: 5px solid var(--glass);
  background: var(--panel);
  padding: 0.9rem 1.1rem;
  margin: 1.3rem 0;
  font-size: 0.98rem;
}
.notice.brick { border-left-color: var(--brick); }
.notice p { margin: 0; }
.table-wrap { overflow-x: auto; margin: 1.3rem 0; }
table.data {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.97rem;
  background: var(--white);
}
table.data th, table.data td { border: 1px solid var(--line); padding: 0.6rem 0.8rem; text-align: left; }
table.data th { background: var(--glass); color: var(--white); font-family: var(--display); font-weight: 600; }
table.data tbody tr:nth-child(even) { background: var(--panel); }

/* ---------- Images ---------- */
.img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 1.8rem 0;
  align-items: start;
}
@media (max-width: 700px) { .img-pair { grid-template-columns: 1fr; } }
.shot { margin: 0; }
.shot img { border: 2px solid var(--line); width: 100%; object-fit: cover; }
.shot figcaption { font-size: 0.88rem; color: var(--steel-mid); padding: 0.5rem 0.2rem 0; }
.shot-wide { margin: 1.8rem 0; }
.shot-wide img { border: 2px solid var(--line); width: 100%; max-height: 460px; object-fit: cover; }
.shot-wide figcaption { font-size: 0.88rem; color: var(--steel-mid); padding: 0.5rem 0.2rem 0; }

/* ---------- FAQ ---------- */
.faq details {
  border: 2px solid var(--line);
  background: var(--white);
  margin-bottom: 0.7rem;
}
.faq summary {
  cursor: pointer;
  font-family: var(--display);
  font-weight: 600;
  padding: 0.85rem 1.1rem;
  list-style: none;
  position: relative;
  padding-right: 2.4rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brick);
  font-weight: 700;
  font-size: 1.25rem;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details[open] summary { border-bottom: 1px solid var(--line-soft); }
.faq-body { padding: 0.8rem 1.1rem 1rem; }
.faq-body p { margin: 0 0 0.6rem; }
.faq-body p:last-child { margin-bottom: 0; }

/* ---------- Quote form ---------- */
.form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.6rem 0 2.2rem;
  align-items: start;
}
@media (max-width: 820px) { .form-split { grid-template-columns: 1fr; } }
.quote-form {
  background: var(--panel);
  border: 2px solid var(--line);
  border-top: 5px solid var(--brick);
  padding: 1.4rem 1.5rem 1.6rem;
}
.quote-form h3 { margin-top: 0; }
.quote-form label {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0.9rem 0 0.25rem;
}
.quote-form input[type="text"],
.quote-form input[type="tel"],
.quote-form select,
.quote-form textarea {
  width: 100%;
  font: inherit;
  padding: 0.6rem 0.7rem;
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--steel);
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: none;
  border-color: var(--glass);
}
.quote-form button { width: 100%; margin-top: 1.1rem; }
.form-note { font-size: 0.85rem; color: var(--steel-mid); margin: 0.7rem 0 0; }
.hidden { display: none; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--glass);
  border: 2px solid var(--glass-deep);
  color: var(--white);
  padding: 2rem 1.75rem 2.2rem;
  margin: 2.5rem 0 1rem;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-top: 0; }
.cta-band p { color: var(--glass-tint); max-width: 640px; margin: 0.5rem auto 0; }
.cta-band .hero-ctas { justify-content: center; }
.cta-band .btn-quote { border-color: var(--white); color: var(--white); background: transparent; }
.cta-band .btn-quote:hover { background: rgba(255,255,255,0.12); }

/* ---------- Breadcrumb ---------- */
.page-meta { font-size: 0.88rem; color: var(--steel-mid); margin: 1.4rem 0 0; }
.page-meta a { color: var(--steel-mid); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--steel);
  color: #cdd6dd;
  border-top: 5px solid var(--brick);
  padding: 2.5rem 0 5.5rem;
  margin-top: 2rem;
  font-size: 0.95rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.6rem;
}
.site-footer h4 {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.82rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.35rem; }
.site-footer a { color: #cdd6dd; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-phone { font-family: var(--display); font-weight: 700; font-size: 1.1rem; color: var(--white) !important; }
.footer-disclosure {
  border-top: 1px solid #4a565f;
  margin-top: 2rem;
  padding-top: 1.2rem;
  font-size: 0.85rem;
  color: #a9b6bf;
}
.footer-disclosure p { margin: 0 0 0.5rem; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  border-top: 2px solid var(--steel);
}
.mobile-call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 0.5rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
}
.bar-call { background: var(--brick); color: var(--white); }
.bar-quote { background: var(--glass); color: var(--white); }
@media (max-width: 820px) {
  .mobile-call-bar { display: flex; }
  .site-footer { padding-bottom: 6.5rem; }
}

/* auto: unset CTAs hidden until configured */
.phone-cta { display: none !important; }
