/* Commercial Wraps Winnipeg — Charcoal & Amber design system
   Single locked dark theme. Industrial/workshop language: charcoal surfaces,
   amber signal accent, Space Grotesk display + IBM Plex Sans body. */

:root {
  --charcoal-950: #0a0a0b;
  --charcoal-900: #111113;
  --charcoal-850: #17171a;
  --charcoal-800: #1e1e22;
  --charcoal-700: #2a2a2f;
  --charcoal-600: #3a3a41;
  --line: #2a2a2f;
  --line-soft: #232327;
  --ink: #f2f0ec;
  --ink-muted: #a9a7a2;
  --ink-faint: #706e6a;
  --amber-500: #e8940a;
  --amber-400: #f5ab2e;
  --amber-600: #c97b06;
  --amber-tint: rgba(232, 148, 10, 0.12);
  --amber-tint-strong: rgba(232, 148, 10, 0.22);
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --container: 1240px;
  --radius: 4px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--charcoal-900);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-bottom: 4.5rem;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
p { margin: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

section[id] { scroll-margin-top: 4.5rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Eyebrow — used sparingly (max once per three sections) */
.eyebrow {
  color: var(--amber-500);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 0.75rem;
  display: inline-block;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 1.25rem;
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) { .site-header { padding: 0 2.5rem; } }

.site-logo img { height: 34px; width: auto; }

.primary-nav { display: none; align-items: center; gap: 2.25rem; }
.primary-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 0.2s var(--ease);
}
.primary-nav a:hover { color: var(--ink); }

.header-actions { display: none; align-items: center; gap: 0.75rem; }

@media (min-width: 1024px) {
  .primary-nav { display: flex; }
  .header-actions { display: flex; }
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--ink);
  padding: 0.4rem;
  cursor: pointer;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--charcoal-950);
  padding: 5.5rem 1.5rem 2rem;
}
.mobile-menu.is-hidden { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0; }
.mobile-menu nav a {
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu nav a.btn { border: none; margin-top: 1.25rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3rem;
  padding: 0 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.98); }

.btn-amber { background: var(--amber-500); color: var(--charcoal-950); }
.btn-amber:hover { background: var(--amber-400); }

.btn-outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--amber-500); color: var(--amber-500); }

.btn-ghost-dark { background: var(--charcoal-950); color: var(--ink); }
.btn-ghost-dark:hover { background: #000; }

.btn-lg { height: 3.5rem; padding: 0 2.25rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 3rem 0 4rem;
  overflow: hidden;
  background: var(--charcoal-950);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(10, 10, 11, 0.94) 30%, rgba(10, 10, 11, 0.82)), url("/assets/img/hero-bg-winnipeg.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -8%;
  width: 46%;
  height: 140%;
  background: var(--amber-500);
  opacity: 0.06;
  transform: skewX(-12deg);
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.15fr 0.85fr; } }

.lede { color: var(--ink-muted); font-size: 1.1rem; line-height: 1.65; max-width: 34rem; }

.hero-copy { display: flex; flex-direction: column; gap: 1.5rem; }
.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.04;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--amber-500);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.5rem; }

.quote-panel {
  background: var(--charcoal-850);
  border: 1px solid var(--line);
  border-top: 3px solid var(--amber-500);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) { .quote-panel { padding: 2.25rem; } }
.quote-panel h2 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.quote-panel .sub { color: var(--ink-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

.field-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .field-row.two { grid-template-columns: 1fr 1fr; } }

.field {
  width: 100%;
  background: var(--charcoal-950);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease);
}
.field::placeholder { color: var(--ink-faint); }
.field:focus { outline: none; border-color: var(--amber-500); }
select.field { appearance: none; color: var(--ink-muted); }
textarea.field { resize: vertical; min-height: 5rem; }
.quote-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.25rem; }

/* ---------- Stat strip ---------- */
.stat-strip {
  background: var(--charcoal-950);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0;
}
.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}
@media (min-width: 768px) { .stat-strip .container { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.stat { text-align: center; position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -0.75rem;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: var(--line);
  display: none;
}
@media (min-width: 768px) { .stat + .stat::before { display: block; } }
.stat .num {
  font-family: var(--font-display);
  color: var(--amber-500);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.stat .label {
  color: var(--ink-faint);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.35rem;
}

/* ---------- Section rhythm ---------- */
.section { padding: 5rem 0; }
.section-alt { background: var(--charcoal-850); }
.section-deep { background: var(--charcoal-950); }
.section-head { max-width: 40rem; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); line-height: 1.08; }
.section-head p { color: var(--ink-muted); margin-top: 1rem; font-size: 1.05rem; line-height: 1.6; }

/* ---------- Services bento ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--charcoal-800);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.service-card:hover { border-color: var(--amber-500); transform: translateY(-2px); }
.service-card--featured {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .service-card--featured { grid-column: span 3; flex-direction: row; }
}
.service-card--featured .service-media { min-height: 220px; }
@media (min-width: 768px) { .service-card--featured .service-media { flex: 0 0 46%; } }

.service-media {
  background-size: cover;
  background-position: center;
  aspect-ratio: 16 / 9;
}
.service-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; gap: 0.75rem; }
.service-card--featured .service-body { padding: 2rem; justify-content: center; }
.service-body h3 { font-size: 1.25rem; }
.service-card--featured .service-body h3 { font-size: 1.6rem; }
.service-body p { color: var(--ink-muted); font-size: 0.95rem; line-height: 1.6; flex: 1; }
.service-body .footnote { font-size: 0.85rem; color: var(--ink-faint); }
.service-body .footnote strong { color: var(--ink); }
.service-icon { color: var(--amber-500); font-size: 2.25rem; }

/* ---------- Why choose us: divide-y rows, no boxed cards ---------- */
.why-list { border-top: 1px solid var(--line); }
.why-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) { .why-row { grid-template-columns: 0.8fr 1.2fr 1.6fr; align-items: start; gap: 2.5rem; } }
.why-row .why-num {
  font-family: var(--font-display);
  color: var(--amber-500);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1;
}
.why-row h3 { font-size: 1.3rem; }
.why-row p { color: var(--ink-muted); line-height: 1.7; }

/* ---------- Industries ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) { .industries-grid { grid-template-columns: 1fr 1fr; column-gap: 3rem; } }
.industry-item { border-top: 1px solid var(--line); padding: 1.5rem 0; }
.industry-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.industry-item p { color: var(--ink-muted); line-height: 1.65; font-size: 0.95rem; }

/* ---------- Process ---------- */
.process-list { display: flex; flex-direction: column; gap: 0; width: 100%; }
.process-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 900px) { .process-item { grid-template-columns: 4.5rem 1fr; gap: 2rem; } }
.process-item:last-child { border-bottom: 1px solid var(--line); }
.process-item .step-num {
  font-family: var(--font-display);
  color: var(--amber-500);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
}
.process-item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.process-item p { color: var(--ink-muted); line-height: 1.7; max-width: 60ch; }

/* ---------- Cost / SEO content ---------- */
.cost-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0 3rem;
}
@media (min-width: 640px) { .cost-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cost-grid { grid-template-columns: repeat(4, 1fr); } }
.cost-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--charcoal-850);
}
.cost-card--featured {
  background: var(--amber-500);
  border-color: var(--amber-500);
  color: var(--charcoal-950);
}
.cost-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.cost-card--featured h3 { color: var(--charcoal-950); }
.cost-card .price {
  font-family: var(--font-display);
  color: var(--amber-500);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}
.cost-card--featured .price { color: var(--charcoal-950); }
.cost-card p { color: var(--ink-muted); font-size: 0.9rem; }
.cost-grid .cost-card--featured p { color: rgba(10, 10, 11, 0.8); font-weight: 500; }

.prose { width: 100%; }
.prose h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); margin-bottom: 1.5rem; max-width: 40rem; }
.prose h3 { font-size: 1.4rem; margin: 2.5rem 0 0.9rem; max-width: 40rem; }
.prose p { color: var(--ink-muted); line-height: 1.75; margin-bottom: 1rem; font-size: 1.02rem; max-width: 66ch; }
.prose p:last-child { margin-bottom: 0; }
.prose > p:first-of-type { font-size: 1.1rem; color: var(--ink-muted); }

/* ---------- Mid CTA — diagonal amber band ---------- */
.mid-cta {
  position: relative;
  background: var(--amber-500);
  padding: 4rem 0;
  overflow: hidden;
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}
.mid-cta .container { max-width: 46rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.mid-cta h2 { color: var(--charcoal-950); font-size: clamp(1.8rem, 3vw, 2.5rem); }
.mid-cta p { color: rgba(10, 10, 11, 0.78); font-size: 1.05rem; }

/* ---------- Reviews: asymmetric bento ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 900px) { .reviews-grid { grid-template-columns: 1.2fr 1fr; grid-template-rows: auto auto; } }
.review-card {
  background: var(--charcoal-800);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card--featured { border-top: 3px solid var(--amber-500); }
@media (min-width: 900px) { .review-card--featured { grid-row: span 2; padding: 2.25rem; justify-content: center; } }
.stars { display: flex; gap: 0.15rem; }
.stars svg { fill: var(--amber-500); }
.review-card blockquote {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}
.review-card--featured blockquote { font-size: 1.2rem; }
.review-card cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.review-card cite .name { color: var(--ink); font-weight: 600; }
.review-card cite .role { color: var(--ink-faint); font-size: 0.85rem; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; width: 100%; }
.faq-item {
  background: var(--charcoal-850);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { color: var(--amber-500); transition: transform 0.2s var(--ease); flex-shrink: 0; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item p { color: var(--ink-muted); margin-top: 1rem; line-height: 1.7; max-width: 66ch; }

/* ---------- Service area ---------- */
.service-area { text-align: center; }
.service-area .container { max-width: 48rem; }
.service-area p.list { color: var(--ink-muted); line-height: 1.9; margin-top: 1rem; }

/* ---------- Final CTA — split, asymmetric ---------- */
.final-cta { background: var(--charcoal-950); }
.final-cta .container {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) { .final-cta .container { grid-template-columns: 1.4fr 1fr; } }
.final-cta h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); margin-bottom: 1rem; }
.final-cta p { color: var(--ink-muted); font-size: 1.05rem; max-width: 34rem; }
.final-cta-ctas { display: flex; flex-direction: column; gap: 0.85rem; }
@media (min-width: 900px) { .final-cta-ctas { align-items: flex-end; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal-950); border-top: 1px solid var(--line); padding: 4rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-col { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.footer-col a, .footer-col span, .footer-col p { color: var(--ink-faint); font-size: 0.9rem; }
.footer-col a:hover { color: var(--amber-500); }
.footer-contact { display: flex; align-items: center; gap: 0.5rem; color: var(--ink-faint); }
.footer-contact .material-symbols-outlined { color: var(--amber-500); font-size: 1.1rem; }
.footer-hours-row { display: flex; justify-content: space-between; font-size: 0.9rem; border-bottom: 1px solid var(--line-soft); padding-bottom: 0.5rem; }
.footer-hours-row span:first-child { color: var(--ink-faint); }
.footer-hours-row span:last-child { color: var(--ink); }
.footer-hours-row .closed { color: var(--amber-500); }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p, .footer-bottom a { color: var(--ink-faint); font-size: 0.75rem; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  border-top: 1px solid var(--line);
  background: var(--charcoal-950);
}
@media (min-width: 768px) { .mobile-cta-bar { display: none; } }
.mobile-cta-bar a {
  flex: 1;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-family: var(--font-display);
}
.mobile-cta-bar a.call { border-right: 1px solid var(--line); color: var(--ink); }
.mobile-cta-bar a.quote { background: var(--amber-500); color: var(--charcoal-950); }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
