
:root {
  --bg: #050816;
  --bg2: #07101d;
  --panel: rgba(8, 15, 28, 0.92);
  --panel-solid: #0b1322;
  --line: rgba(148, 163, 184, 0.22);
  --line2: rgba(56, 189, 248, 0.32);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --muted2: #94a3b8;
  --blue: #159be8;
  --blue2: #38bdf8;
  --orange: #f97316;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(21, 155, 232, 0.18), transparent 32%),
    radial-gradient(circle at 92% 10%, rgba(249, 115, 22, 0.10), transparent 28%),
    linear-gradient(180deg, #050816 0%, #07101d 48%, #050816 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(5, 8, 22, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 270px;
}
.brand img {
  width: 155px;
  height: auto;
}
.brand span {
  color: #ffffff;
  font-weight: 950;
  letter-spacing: -0.035em;
  font-size: 1.15rem;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-call {
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(21, 155, 232, 0.16);
  border: 1px solid var(--line2);
  color: #e0f2fe !important;
  font-weight: 900;
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 28px;
  left: -18px;
  min-width: 270px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(5, 8, 22, 0.98);
  border: 1px solid var(--line);
  box-shadow: 0 22px 80px rgba(0,0,0,.38);
}
.dropdown:hover .dropdown-menu {
  display: grid;
  gap: 4px;
}
.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
}
.dropdown-menu a:hover {
  background: rgba(21, 155, 232, 0.12);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7dd3fc;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--blue);
  display: inline-block;
}
h1 {
  margin: 0 0 22px;
  font-size: clamp(2.55rem, 5.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}
h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1;
  letter-spacing: -0.05em;
}
h3 { margin: 0 0 9px; font-size: 1.16rem; }
p { color: var(--muted); line-height: 1.68; font-size: 1.05rem; }
.lead { font-size: clamp(1.1rem, 2vw, 1.27rem); max-width: 780px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #00111f;
  font-weight: 950;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 48px rgba(21, 155, 232, 0.24);
}
.btn.secondary {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.42);
  box-shadow: none;
}

.hero, .page-hero {
  position: relative;
  isolation: isolate;
}
.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
  padding: 92px 0;
}
.hero::before, .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 8, 22, 0.98), rgba(5, 8, 22, 0.80), rgba(5, 8, 22, 0.96)),
    var(--hero-image, url("/assets/crane-night.webp")) center/cover no-repeat;
  opacity: 0.92;
}
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 170px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, #050816);
}
.page-hero {
  padding: 105px 0 76px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}
.hero-card {
  border-radius: 32px;
  background: rgba(8, 15, 28, 0.84);
  border: 1px solid var(--line);
  box-shadow: 0 34px 100px rgba(0,0,0,.42);
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.hero-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}
.hero-card-body { padding: 26px; }
.hero-card-body strong {
  display: block;
  font-size: 1.55rem;
  letter-spacing: -.035em;
  margin-bottom: 8px;
}
.line-list { display: grid; gap: 0; margin-top: 18px; border-top: 1px solid rgba(148,163,184,.14); }
.line-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(148,163,184,.14);
}
.line-item b { color: var(--white); }
.line-item span { color: var(--muted2); text-align: right; }

.section { padding: 78px 0; }
.section.alt {
  background: rgba(8, 15, 28, 0.64);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head { max-width: 870px; margin-bottom: 34px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card {
  background: rgba(8,15,28,.92);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}
.card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: #111827;
}
.card-body { padding: 22px; }
.card-body p { margin-bottom: 0; font-size: .99rem; }
.card a.more { display: inline-block; color: #7dd3fc; font-weight: 850; margin-top: 14px; }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: center;
}
.cap-list { display: grid; gap: 12px; margin-top: 26px; }
.cap {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(8,15,28,.86);
  border: 1px solid var(--line);
  font-weight: 850;
}
.cap span { color: var(--muted2); font-weight: 500; text-align: right; }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.photo-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 70px rgba(0,0,0,.25);
  background: #111827;
}
.photo-grid img.wide { grid-column: span 2; height: 310px; }

.service-hero-card {
  border-radius: 32px;
  overflow: hidden;
  background: rgba(8,15,28,.92);
  border: 1px solid var(--line);
  box-shadow: 0 34px 100px rgba(0,0,0,.36);
}
.service-hero-card img { width: 100%; height: 430px; object-fit: cover; }
.bullet-list {
  display: grid;
  gap: 12px;
  padding-left: 0;
  list-style: none;
  margin: 24px 0 0;
}
.bullet-list li {
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(8,15,28,.86);
  border: 1px solid var(--line);
  color: var(--muted);
}
.bullet-list li strong { color: var(--white); }

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
}
.contact-panel, .form-panel, .info-panel {
  padding: 28px;
  border-radius: 30px;
  background: rgba(8,15,28,.92);
  border: 1px solid var(--line);
  box-shadow: 0 20px 70px rgba(0,0,0,.20);
}
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 22px; }
.contact-box {
  padding: 17px;
  border-radius: 20px;
  background: rgba(2,6,23,.55);
  border: 1px solid rgba(148,163,184,.18);
}
.contact-box span { display: block; color: var(--muted2); font-size: .9rem; margin-bottom: 7px; }
.contact-box strong, .contact-box a {
  color: var(--white);
  overflow-wrap: anywhere;
  font-size: clamp(.96rem, 1.2vw, 1.07rem);
}
.contact-box.email a { font-size: clamp(.88rem, 1.1vw, 1rem); line-height: 1.35; }
.form { display: grid; gap: 12px; margin-top: 20px; }
.input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--text);
  background: rgba(2,6,23,.62);
  border: 1px solid rgba(148,163,184,.25);
  outline: none;
  font: inherit;
}
textarea.input { min-height: 136px; resize: vertical; }

.placeholder {
  min-height: 330px;
  border-radius: 28px;
  border: 1px dashed rgba(148,163,184,.42);
  background: linear-gradient(135deg, rgba(21,155,232,.14), rgba(2,6,23,.75)), rgba(2,6,23,.62);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  color: var(--muted);
}
.placeholder strong { color: var(--white); display: block; font-size: 1.3rem; margin-bottom: 8px; }

.job-card .job-meta {
  color: #7dd3fc;
  font-weight: 850;
  margin-bottom: 10px;
}
.job-card ul {
  color: var(--muted);
  line-height: 1.6;
  padding-left: 20px;
}

.seo-note {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(56,189,248,.26);
  background: rgba(21,155,232,.08);
  color: var(--muted);
}

.footer {
  padding: 30px 0;
  background: #030712;
  border-top: 1px solid var(--line);
  color: var(--muted2);
  font-size: .95rem;
}
.footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 1080px) {
  .hero-grid, .split, .contact { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .nav-inner { flex-direction: column; align-items: flex-start; padding: 18px 0; }
  .brand { min-width: 0; }
  .brand img { width: 145px; }
  .brand span { font-size: 1rem; }
  .nav-links { white-space: normal; flex-wrap: wrap; justify-content: flex-start; }
  .dropdown-menu {
    position: static;
    display: none;
    min-width: 100%;
    margin-top: 8px;
  }
  .dropdown:hover .dropdown-menu { display: grid; }
  .line-item, .cap { grid-template-columns: 1fr; }
  .line-item span, .cap span { text-align: left; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid img, .photo-grid img.wide { height: 260px; grid-column: span 1; }
  .service-hero-card img { height: 310px; }
  .btn { width: 100%; }
  h1 { font-size: clamp(2.35rem, 12vw, 4.1rem); }
}


/* Company asset update */
.brand img {
  object-fit: contain;
}

/* Make service cards clickable instead of using separate cheap text links */
.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.card-link:hover,
.card-link:focus {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.46);
  box-shadow: 0 30px 90px rgba(21, 155, 232, 0.16);
  background: rgba(12, 22, 39, 0.96);
  outline: none;
}

.card-link .card-body::after {
  content: "View service";
  display: inline-flex;
  margin-top: 16px;
  color: #7dd3fc;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.card-link:hover .card-body::after,
.card-link:focus .card-body::after {
  color: #ffffff;
}

.company-strip {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
  align-items: stretch;
}

.company-photo {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(8, 15, 28, 0.92);
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}

.company-photo img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.company-photo.small img {
  min-height: 250px;
}

.truck-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.truck-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: #111827;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}

.contact-box.owner-email strong {
  display: block;
  color: #ffffff;
  margin-bottom: 4px;
}

.contact-box.owner-email a {
  display: block;
  margin-bottom: 8px;
}

/* Real mobile menu fix, final override */
.mobile-menu-button {
  display: none;
}

@media (max-width: 880px), (hover: none) {
  .nav {
    position: relative !important;
  }

  .nav-inner {
    min-height: auto !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 14px !important;
    padding: 16px 0 !important;
    align-items: center !important;
  }

  .brand {
    width: auto !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: 112px 1fr !important;
    gap: 12px !important;
    align-items: center !important;
  }

  .brand img {
    width: 112px !important;
    max-width: 112px !important;
    height: auto !important;
  }

  .brand span {
    font-size: 1rem !important;
    line-height: 1.15 !important;
    letter-spacing: -0.035em !important;
    white-space: normal !important;
  }

  .mobile-menu-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
    padding: 10px 16px !important;
    border-radius: 999px !important;
    background: rgba(21,155,232,0.14) !important;
    border: 1px solid rgba(56,189,248,0.32) !important;
    color: #e0f2fe !important;
    font: inherit !important;
    font-weight: 900 !important;
  }

  .nav-links {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    display: none !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding-top: 8px !important;
    white-space: normal !important;
  }

  .nav.mobile-open .nav-links {
    display: grid !important;
  }

  .nav-links > a,
  .dropdown > a {
    width: 100% !important;
    min-height: 46px !important;
    padding: 12px 14px !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,0.035) !important;
    border: 1px solid rgba(148,163,184,0.18) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 1rem !important;
    color: #e2e8f0 !important;
  }

  .dropdown {
    width: 100% !important;
    padding: 0 !important;
    display: block !important;
  }

  .dropdown-menu {
    display: none !important;
    position: static !important;
    width: 100% !important;
    min-width: 100% !important;
    margin-top: 10px !important;
    padding: 10px !important;
    border-radius: 18px !important;
    background: rgba(2,6,23,0.96) !important;
    border: 1px solid rgba(148,163,184,0.20) !important;
    box-shadow: none !important;
  }

  .dropdown.open .dropdown-menu {
    display: grid !important;
    gap: 8px !important;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: none !important;
  }

  .dropdown.open:hover .dropdown-menu,
  .dropdown.open:focus-within .dropdown-menu {
    display: grid !important;
  }

  .dropdown-menu a {
    min-height: 44px !important;
    padding: 11px 12px !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,0.035) !important;
    border: 1px solid rgba(148,163,184,0.12) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .nav-call {
    width: 100% !important;
    min-height: 50px !important;
    font-size: 1.02rem !important;
    letter-spacing: 0.08em !important;
  }

  .hero {
    min-height: auto !important;
    padding: 52px 0 64px !important;
  }

  .page-hero {
    padding: 52px 0 64px !important;
  }

  .hero-grid {
    gap: 28px !important;
  }

  h1 {
    font-size: clamp(2.15rem, 9.4vw, 3.35rem) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.052em !important;
  }

  h2 {
    font-size: clamp(1.85rem, 7.5vw, 2.75rem) !important;
    line-height: 1.05 !important;
  }

  .lead {
    font-size: 1.02rem !important;
    line-height: 1.58 !important;
  }

  .eyebrow {
    font-size: 0.66rem !important;
    letter-spacing: 0.11em !important;
    line-height: 1.4 !important;
  }

  .eyebrow::before {
    width: 28px !important;
  }

  .section {
    padding: 56px 0 !important;
  }

  .company-strip,
  .truck-gallery {
    grid-template-columns: 1fr !important;
  }

  .company-photo img,
  .company-photo.small img,
  .truck-gallery img {
    min-height: auto !important;
    height: 230px !important;
  }
}


/* FINAL CLEAN NAV, LOGO, DROPDOWN, MOBILE MENU OVERRIDE */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 165px !important;
  max-width: 165px !important;
  height: auto !important;
  object-fit: contain !important;
  background: transparent !important;
}

.brand span {
  color: #ffffff;
  font-weight: 950;
  letter-spacing: -0.035em;
  font-size: 1.15rem;
  white-space: nowrap;
}

.dropdown {
  position: relative !important;
  padding: 0 !important;
}

.dropdown > a {
  display: inline-flex !important;
  align-items: center !important;
}

.dropdown-menu {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: -18px !important;
  min-width: 285px !important;
  margin-top: 0 !important;
  padding: 10px !important;
  border-radius: 18px !important;
  background: rgba(5, 8, 22, 0.99) !important;
  border: 1px solid rgba(148, 163, 184, 0.22) !important;
  box-shadow: 0 22px 80px rgba(0,0,0,.38) !important;
  z-index: 99999 !important;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: grid !important;
  gap: 4px !important;
}

.dropdown::after {
  content: "";
  position: absolute;
  left: -24px;
  right: -24px;
  top: 100%;
  height: 14px;
}

.dropdown-menu a {
  padding: 10px 12px !important;
  border-radius: 12px !important;
  color: #cbd5e1 !important;
  background: transparent !important;
  border: 0 !important;
  text-align: left !important;
  justify-content: flex-start !important;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: rgba(21, 155, 232, 0.12) !important;
  color: #ffffff !important;
}

.mobile-menu-button {
  display: none;
}

/* Final mobile layout. Desktop nav does not wrap into giant blocks anymore. */
@media (max-width: 880px), (hover: none) {
  .nav {
    position: relative !important;
  }

  .nav-inner {
    min-height: auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 14px !important;
    padding: 14px 0 !important;
    align-items: center !important;
  }

  .brand {
    min-width: 0 !important;
    width: auto !important;
    display: grid !important;
    grid-template-columns: 112px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: center !important;
  }

  .brand img {
    width: 112px !important;
    max-width: 112px !important;
    height: auto !important;
  }

  .brand span {
    font-size: 1rem !important;
    line-height: 1.12 !important;
    white-space: normal !important;
  }

  .mobile-menu-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    padding: 10px 16px !important;
    border-radius: 999px !important;
    background: rgba(21,155,232,0.14) !important;
    border: 1px solid rgba(56,189,248,0.32) !important;
    color: #e0f2fe !important;
    font: inherit !important;
    font-weight: 900 !important;
    cursor: pointer !important;
  }

  .nav-links {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    display: none !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding-top: 8px !important;
    white-space: normal !important;
  }

  .nav.mobile-open .nav-links {
    display: grid !important;
  }

  .nav-links > a,
  .dropdown > a {
    width: 100% !important;
    min-height: 46px !important;
    padding: 12px 14px !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,0.035) !important;
    border: 1px solid rgba(148,163,184,0.18) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 1rem !important;
    color: #e2e8f0 !important;
  }

  .dropdown {
    width: 100% !important;
    padding: 0 !important;
    display: block !important;
  }

  .dropdown::after {
    display: none !important;
  }

  .dropdown-menu {
    display: none !important;
    position: static !important;
    width: 100% !important;
    min-width: 100% !important;
    margin-top: 10px !important;
    padding: 10px !important;
    border-radius: 18px !important;
    background: rgba(2,6,23,0.96) !important;
    border: 1px solid rgba(148,163,184,0.20) !important;
    box-shadow: none !important;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: none !important;
  }

  .dropdown.open .dropdown-menu,
  .dropdown.open:hover .dropdown-menu,
  .dropdown.open:focus-within .dropdown-menu {
    display: grid !important;
    gap: 8px !important;
  }

  .dropdown-menu a {
    min-height: 44px !important;
    padding: 11px 12px !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,0.035) !important;
    border: 1px solid rgba(148,163,184,0.12) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .nav-call {
    width: 100% !important;
    min-height: 50px !important;
    font-size: 1.02rem !important;
    letter-spacing: 0.08em !important;
  }

  .hero {
    min-height: auto !important;
    padding: 52px 0 64px !important;
  }

  .page-hero {
    padding: 52px 0 64px !important;
  }

  h1 {
    font-size: clamp(2.15rem, 9.4vw, 3.35rem) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.052em !important;
  }

  h2 {
    font-size: clamp(1.85rem, 7.5vw, 2.75rem) !important;
    line-height: 1.05 !important;
  }
}

/* Quick mobile contact formatting fix */
.contact-box.owner-email {
  display: grid !important;
  gap: 4px !important;
}

.contact-box.owner-email strong {
  display: block !important;
  margin-top: 8px !important;
  margin-bottom: 2px !important;
  font-size: 1rem !important;
  line-height: 1.2 !important;
}

.contact-box.owner-email strong:first-of-type {
  margin-top: 0 !important;
}

.contact-box.owner-email a {
  display: block !important;
  font-size: clamp(0.78rem, 3.35vw, 0.94rem) !important;
  line-height: 1.25 !important;
  letter-spacing: -0.035em !important;
  white-space: nowrap !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  color: #e0f2fe !important;
}

@media (max-width: 480px) {
  .contact-panel,
  .form-panel {
    padding: 22px !important;
  }

  .contact-box {
    padding: 18px 20px !important;
  }

  .contact-box.owner-email a {
    font-size: 0.82rem !important;
  }
}

/* Streamline 2026 homepage updates */
.site-header .brand img,
header .brand img,
.brand img,
.logo img,
.site-logo,
.brand-logo {
  max-height: 104px !important;
  height: 104px !important;
  width: auto !important;
  object-fit: contain !important;
}

.site-header .brand,
header .brand,
.brand {
  align-items: center !important;
  overflow: visible !important;
}

.site-header,
header {
  overflow: visible !important;
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
}

.check-list {
  display: grid;
  gap: .75rem;
  margin: 1.5rem 0;
  padding-left: 1.25rem;
}

.check-list li {
  line-height: 1.55;
}

@media (max-width: 760px) {
  .site-header .brand img,
  header .brand img,
  .brand img,
  .logo img,
  .site-logo,
  .brand-logo {
    max-height: 76px !important;
    height: 76px !important;
  }
}

/* Final Streamline service page polish */
.site-header .brand img,
header .brand img,
.brand img,
.logo img,
.site-logo,
.brand-logo {
  max-height: 84px !important;
  height: 84px !important;
  width: auto !important;
  object-fit: contain !important;
}

.site-header,
header {
  overflow: visible !important;
}

.site-header .brand,
header .brand,
.brand {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  overflow: visible !important;
}

.dryice-hero {
  min-height: 620px;
}

.dryice-hero h1 {
  max-width: 980px;
}

.dryice-hero p {
  max-width: 1100px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 2rem;
  align-items: start;
}

.callout-card {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.check-list {
  display: grid;
  gap: .75rem;
  margin: 1.5rem 0;
  padding-left: 1.25rem;
}

.check-list li {
  line-height: 1.55;
}

@media (max-width: 760px) {
  .site-header .brand img,
  header .brand img,
  .brand img,
  .logo img,
  .site-logo,
  .brand-logo {
    max-height: 68px !important;
    height: 68px !important;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .dryice-hero {
    min-height: auto;
  }
}

/* Dry Ice Services page polish */
.check-list {
  display: grid;
  gap: .75rem;
  margin: 1.5rem 0;
  padding-left: 1.25rem;
}

.check-list li {
  line-height: 1.55;
}

.highlight-card {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 2rem;
  align-items: start;
}

@media (max-width: 760px) {
  .split {
    grid-template-columns: 1fr;
  }
}

/* Streamline design patch: hero watermark and expanded service cards */
.hero.hero-watermark {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero.hero-watermark .wrap {
  position: relative;
  z-index: 2;
}

.hero-bg-logo {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 52%;
  width: min(760px, 72vw);
  max-height: 70%;
  transform: translate(-50%, -50%);
  opacity: 0.075;
  filter: grayscale(1) brightness(1.6);
  pointer-events: none;
  user-select: none;
}

.hero-card {
  position: relative;
  z-index: 3;
}

.card img,
.hero-card img {
  object-fit: cover;
}

@media (max-width: 760px) {
  .hero-bg-logo {
    width: 92vw;
    opacity: 0.055;
    top: 44%;
  }
}

/* Streamline global hero watermark, stronger pass */
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: url("/assets/streamline-logo-transparent.png");
  background-repeat: no-repeat;
  background-position: center 48%;
  background-size: min(900px, 76vw) auto;
  opacity: 0.20;
  filter: grayscale(1) brightness(1.9) contrast(1.1);
  pointer-events: none;
  user-select: none;
}

.hero > .wrap,
.page-hero > .wrap,
.hero-grid,
.hero-copy,
.hero-card {
  position: relative;
  z-index: 3;
}

.hero-bg-logo {
  opacity: 0.16 !important;
  width: min(900px, 76vw) !important;
  filter: grayscale(1) brightness(1.9) contrast(1.1) !important;
}

@media (max-width: 760px) {
  .hero::after,
  .page-hero::after {
    background-size: 92vw auto;
    opacity: 0.13;
    background-position: center 42%;
  }

  .hero-bg-logo {
    opacity: 0.11 !important;
    width: 92vw !important;
  }
}

/* Watermark cleanup: use one single logo layer only */
.hero-bg-logo {
  display: none !important;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: url("/assets/streamline-logo-transparent.png");
  background-repeat: no-repeat !important;
  background-position: center 46% !important;
  background-size: min(860px, 70vw) auto !important;
  opacity: 0.25 !important;
  filter: grayscale(1) brightness(1.85) contrast(1.15) !important;
  pointer-events: none;
  user-select: none;
}

.hero > .wrap,
.page-hero > .wrap,
.hero-grid,
.hero-copy,
.hero-card {
  position: relative;
  z-index: 3;
}

@media (max-width: 760px) {
  .hero::after,
  .page-hero::after {
    background-size: 88vw auto !important;
    background-position: center 40% !important;
    opacity: 0.18 !important;
  }
}

/* FINAL watermark position fix: one lower stronger logo only */
.hero-bg-logo {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.hero,
.page-hero {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.hero::before,
.page-hero::before {
  display: none !important;
  content: none !important;
}

.hero::after,
.page-hero::after {
  content: "" !important;
  position: absolute !important;
  z-index: 1 !important;
  inset: 0 !important;

  background-image: url("/assets/streamline-logo-transparent.png") !important;
  background-repeat: no-repeat !important;

  /* Lower it so the logo is not cut off by the top/nav area */
  background-position: center 62% !important;

  /* Slightly smaller so one whole mark reads cleaner */
  background-size: min(720px, 58vw) auto !important;

  /* About 25 percent stronger than 0.25 */
  opacity: 0.31 !important;

  filter: grayscale(1) brightness(1.75) contrast(1.2) !important;
  pointer-events: none !important;
  user-select: none !important;
}

.hero > .wrap,
.page-hero > .wrap,
.hero-grid,
.hero-copy,
.hero-card,
.page-hero .wrap {
  position: relative !important;
  z-index: 3 !important;
}

@media (max-width: 760px) {
  .hero::after,
  .page-hero::after {
    background-position: center 56% !important;
    background-size: 78vw auto !important;
    opacity: 0.22 !important;
  }
}
