/* State Line Concrete Lifting: main stylesheet */

:root {
  --slate-900: #1a2530;
  --slate-800: #223140;
  --slate-700: #2d4356;
  --slate-600: #3d5a71;
  --slate-100: #f3f5f7;
  --slate-200: #e4e9ed;
  --slate-300: #cbd5df;
  --concrete-50: #fafafa;
  --orange-500: #e8631a;
  --orange-600: #d1550f;
  --orange-050: #fff1e8;
  --white: #ffffff;
  --ink: #182129;
  --ink-soft: #4a5966;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(24, 33, 41, 0.08), 0 1px 2px rgba(24, 33, 41, 0.06);
  --shadow-md: 0 4px 12px rgba(24, 33, 41, 0.10), 0 2px 4px rgba(24, 33, 41, 0.06);
  --shadow-lg: 0 12px 32px rgba(24, 33, 41, 0.14), 0 4px 8px rgba(24, 33, 41, 0.08);
  --max-width: 1200px;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; margin: 0 0 0.5em; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--alt { background: var(--slate-100); }
.section--dark { background: var(--slate-900); color: var(--white); }
.section--dark p { color: var(--slate-300); }
.section--dark h2, .section--dark h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 12px;
}
.section--dark .eyebrow { color: #ff9152; }

.section-head { max-width: 700px; margin: 0 auto 40px; text-align: center; }
.section-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange-500); color: var(--white); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--orange-600); box-shadow: var(--shadow-lg); }
.btn-secondary { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.btn-dark { background: var(--slate-900); color: var(--white); }
.btn-dark:hover { background: var(--slate-800); }
.btn-secondary-alt {
  background: var(--white);
  border-color: var(--slate-300);
  color: var(--ink);
  padding: 10px 20px;
  font-size: 0.9rem;
}
.btn-secondary-alt:hover { background: var(--slate-100); border-color: var(--slate-900); }

.nearby-areas { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--slate-200);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.1;
  flex-shrink: 0;
}
.logo img { height: 42px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.nav-links a:hover { color: var(--orange-600); }

.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a::after { content: " ▾"; font-size: 0.7em; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
  min-width: 220px;
  list-style: none;
  margin: 0;
  z-index: 60;
}
.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  white-space: nowrap;
}
.dropdown-menu li a:hover { background: var(--slate-100); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  text-align: right;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--slate-900);
}
.header-phone small { font-weight: 600; font-size: 0.68rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--slate-900) 0%, var(--slate-700) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,22,29,0.72), rgba(15,22,29,0.86)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 40px);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 88px;
  padding-bottom: 88px;
}
.hero-inner { max-width: 760px; }
.hero h1 { font-size: clamp(2.1rem, 4.8vw, 3.4rem); margin-bottom: 20px; }
.hero-lead { font-size: 1.15rem; color: var(--slate-200); max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.text-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--orange-500);
  border-radius: var(--radius-lg);
  padding: 20px 26px;
  margin-top: 36px;
  box-shadow: var(--shadow-lg);
  max-width: 620px;
}
.text-cta__icon {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  overflow: hidden;
}
.text-cta__icon img { width: 100%; height: 100%; object-fit: cover; }

.cta-icon {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-icon img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-text { display: flex; align-items: center; gap: 18px; }
.text-cta__body { flex: 1; }
.text-cta__body strong { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.text-cta a.phone-link { color: var(--white); text-decoration: underline; font-weight: 800; }
.text-cta__body p { color: rgba(255,255,255,0.92); margin: 4px 0 0; font-size: 0.92rem; }

.license-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.82rem;
  color: var(--slate-300);
}
.license-strip strong { color: var(--white); }

/* Cards / grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--orange-050);
  color: var(--orange-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.card h3 { font-size: 1.15rem; }
.card p { margin-bottom: 0; }

/* Who we serve */
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.audience-grid--four { grid-template-columns: repeat(4, 1fr); }
.audience-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-top: 4px solid var(--orange-500);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.audience-card h3 { font-size: 1.15rem; }
.audience-card ul { margin: 14px 0 0; padding-left: 20px; color: var(--ink-soft); font-size: 0.92rem; }
.audience-card li { margin-bottom: 6px; }
.audience-card p { font-size: 0.92rem; }
.audience-card-cta { margin-top: auto; padding-top: 20px; }

.process-infographic {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: 0 0 40px;
}

/* Repair not replace / comparison */
.compare-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-card { border-radius: var(--radius-lg); padding: 32px; border: 2px solid var(--slate-200); }
.compare-card.is-old { background: var(--slate-100); }
.compare-card.is-new { background: var(--white); border-color: var(--orange-500); box-shadow: var(--shadow-md); position: relative; }
.compare-card h4 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.03em; }
.compare-card.is-old h4 { color: var(--ink-soft); }
.compare-card.is-new h4 { color: var(--orange-600); }
.compare-card ul { list-style: none; margin: 20px 0 0; padding: 0; }
.compare-card li { position: relative; padding-left: 26px; margin-bottom: 12px; color: var(--ink-soft); }
.compare-card li::before { content: "✕"; position: absolute; left: 0; color: #b23b3b; font-weight: 700; }
.compare-card.is-new li::before { content: "✓"; color: var(--orange-600); }

/* Gallery */
.gallery-wide { max-width: 1360px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video gallery (portrait job-site clips) */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 200px));
  justify-content: center;
  gap: 16px;
}
.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--slate-900);
}
.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--slate-900);
}
.video-gallery-loading {
  text-align: center;
  color: var(--ink-soft);
  padding: 24px 0;
}

/* FAQ accordion */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--orange-600); flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-answer { padding: 0 22px 20px; color: var(--ink-soft); }

/* Reviews */
.review-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.review-tab {
  border: 1px solid var(--slate-300);
  background: var(--white);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink-soft);
}
.review-tab.is-active { background: var(--slate-900); color: var(--white); border-color: var(--slate-900); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.review-stars { color: #f2a63c; letter-spacing: 2px; margin-bottom: 10px; font-size: 0.95rem; }
.review-card p { color: var(--ink); font-size: 0.94rem; }
.review-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; font-size: 0.82rem; color: var(--ink-soft); }
.review-tag { display: inline-block; background: var(--orange-050); color: var(--orange-600); font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.03em; padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  margin: 0 auto 36px;
}
.google-badge strong { font-family: var(--font-head); font-size: 1.1rem; color: var(--ink); }
.google-badge span { display: block; font-size: 0.78rem; color: var(--ink-soft); }
.google-badge-wrap { text-align: center; }

/* CTA banner */
.cta-banner {
  background: var(--orange-500);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.92); margin: 0; }

/* Liability / commercial page specifics */
.liability-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.liability-list { list-style: none; margin: 0; padding: 0; }
.liability-list li { display: flex; gap: 14px; margin-bottom: 20px; }
.liability-list .ico { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--orange-050); color: var(--orange-600); display: flex; align-items: center; justify-content: center; font-weight: 800; }

.logo-strip { display: flex; flex-wrap: wrap; gap: 16px; }
.logo-chip {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
  flex: 1 1 200px;
  text-align: center;
}
.logo-chip small { display: block; font-weight: 600; color: var(--ink-soft); font-size: 0.75rem; margin-top: 4px; }

/* Footer */
.site-footer { background: var(--slate-900); color: var(--slate-300); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { color: var(--white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid a { text-decoration: none; color: var(--slate-300); }
.footer-grid a:hover { color: var(--white); }
.footer-service-areas {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--slate-300);
}
.footer-service-areas strong { color: var(--white); }

.footer-social { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; font-size: 0.85rem; }
.footer-social a { color: var(--slate-300); text-decoration: none; font-weight: 600; }
.footer-social a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--slate-300);
}
.footer-bottom a { color: var(--slate-300); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* Contact page */
.contact-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--slate-300);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--concrete-50);
}
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--orange-500); outline-offset: 1px; }
.form-field textarea { resize: vertical; min-height: 120px; }

.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 6px; }
.form-status { margin-top: 16px; font-weight: 700; font-size: 0.9rem; }
.form-status.is-success { color: #1c7d4a; }
.form-status.is-error { color: #b23b3b; }

.contact-info-card { background: var(--slate-100); border-radius: var(--radius-lg); padding: 32px; }
.contact-info-card h3 { font-size: 1.1rem; }
.info-row { display: flex; gap: 14px; margin-bottom: 20px; }
.info-row .ico { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--white); border: 1px solid var(--slate-200); display: flex; align-items: center; justify-content: center; }
.info-row strong { display: block; font-size: 0.95rem; }
.info-row span, .info-row a { font-size: 0.9rem; color: var(--ink-soft); text-decoration: none; }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--orange-500);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: 1fr; }
  .audience-grid, .compare-wrap, .liability-grid, .contact-wrap { grid-template-columns: 1fr; }
  .audience-grid--four { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { padding: 0 16px; }
  .nav-links { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .site-header .container { height: 64px; }
  .logo img { height: 32px; }
  .hero .container { padding-top: 40px; padding-bottom: 40px; }
  .section { padding: 40px 0; }
  .section--tight { padding: 32px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid--four { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 60px; }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .card, .audience-card, .compare-card, .form-card, .contact-info-card, .liability-list li { padding: 20px; }
  .liability-list li { padding: 0; }
  .card-icon { margin-bottom: 14px; }
  .section-head { margin-bottom: 28px; }
  .text-cta { padding: 16px; }
  .logo-strip { gap: 10px; }
  .logo-chip { padding: 14px; flex: 1 1 45%; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .text-cta { flex-direction: column; align-items: flex-start; }
}

/* Mobile nav drawer */
.nav-links.is-open {
  display: flex;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  flex-direction: column;
  gap: 0;
  padding: 8px 16px 20px;
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-md);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.nav-links.is-open a { display: block; padding: 12px 0; border-bottom: 1px solid var(--slate-200); text-align: center; }
.nav-links.is-open .nav-item-dropdown > a { display: none; }
.nav-links.is-open .dropdown-menu {
  display: block;
  position: static;
  transform: none;
  box-shadow: none;
  border: none;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.nav-links.is-open .dropdown-menu li a { padding: 10px 0; border-bottom: 1px solid var(--slate-200); font-weight: 500; font-size: 0.9rem; }
