:root {
  --ink: #06192a;
  --muted: #526170;
  --paper: #f2f4f5;
  --white: #ffffff;
  --line: #d6dde2;
  --navy: #06192a;
  --navy-2: #0b2d47;
  --blue: #00a6d6;
  --blue-2: #0088b8;
  --green: #58a84d;
  --green-2: #6fbd5d;
  --yellow: #f7941d;
  --steel: #102b42;
  --rust: #c85118;
  --shadow: 0 24px 60px rgba(6, 25, 42, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #eef2f4 0%, #ffffff 34%, #eef2f4 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: stretch;
  min-height: 66px;
  color: var(--white);
  background: linear-gradient(90deg, rgba(3, 16, 28, 0.96), rgba(10, 41, 65, 0.94));
  box-shadow: 0 12px 32px rgba(6, 25, 42, 0.24);
  backdrop-filter: blur(14px);
}

.site-header.light {
  color: var(--white);
  background: linear-gradient(90deg, rgba(3, 16, 28, 0.98), rgba(10, 41, 65, 0.96));
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.light .brand {
  border-right-color: rgba(255, 255, 255, 0.18);
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 40px;
  place-items: center;
  color: var(--blue);
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.62),
    0 3px 10px rgba(0, 166, 214, 0.28);
}

.brand-logo {
  width: clamp(132px, 13vw, 190px);
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.26));
}

.brand strong {
  color: var(--yellow);
  text-transform: uppercase;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  font-size: 0.74rem;
  opacity: 0.72;
}

.main-nav {
  display: flex;
  flex: 1;
  align-items: stretch;
  justify-content: flex-start;
  min-width: 0;
  overflow-x: auto;
  white-space: nowrap;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.light .main-nav a {
  border-right-color: rgba(255, 255, 255, 0.14);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: linear-gradient(180deg, var(--blue), var(--blue-2));
}

.account-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 0 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.account-menu-name {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.account-actions {
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 5px 0;
}

.account-gear {
  display: grid;
  width: 34px;
  height: 34px;
  min-height: 34px;
  place-items: center;
  padding: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.account-gear svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.main-nav .account-logout {
  display: inline;
  min-width: 0;
  padding: 0;
  border-right: 0;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav .account-logout:hover {
  color: var(--white);
  background: transparent;
  text-decoration: underline;
}

.account-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
}

.account-modal[hidden] {
  display: none;
}

.account-modal-scrim {
  position: absolute;
  inset: 0;
  background: rgba(6, 25, 42, 0.52);
}

.account-modal-panel {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(780px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  margin: 24px auto;
  overflow: auto;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(6, 25, 42, 0.28);
}

.account-modal-panel h2,
.account-settings-section h3 {
  margin: 0;
  color: var(--navy);
}

.account-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-modal-actions button,
.admin-add-form button,
.admin-account-row button {
  width: auto;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
}

.account-settings-section,
.admin-add-form {
  display: grid;
  gap: 12px;
}

.admin-add-form {
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  align-items: end;
}

.admin-account-list {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-account-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.admin-account-row:last-child {
  border-bottom: 0;
}

.admin-account-row span,
.admin-account-row small {
  display: block;
}

.admin-account-row small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 700;
}

.admin-account-row em {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--white);
  background: #111827;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(12, 20, 26, 0.58), rgba(12, 20, 26, 0.72)),
    url("assets/home-hero-1.jpg") center / cover no-repeat,
    var(--navy);
}

.hero-slideshow,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slideshow {
  overflow: hidden;
}

.hero-image {
  object-fit: cover;
}

.hero-slide {
  opacity: 0;
  animation: heroFade 28s infinite;
  animation-timing-function: ease-in-out;
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  animation-delay: -21s;
}

.hero-slide:nth-child(3) {
  animation-delay: -14s;
}

.hero-slide:nth-child(4) {
  animation-delay: -7s;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(12, 20, 26, 0.58) 0%, rgba(12, 20, 26, 0.24) 42%, rgba(12, 20, 26, 0.72) 100%),
    linear-gradient(90deg, rgba(12, 20, 26, 0.4), rgba(12, 20, 26, 0.16));
}

@keyframes heroFade {
  0%,
  27% {
    opacity: 1;
  }

  34%,
  92% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}

.choice-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(980px, calc(100% - 36px));
  padding-top: 66px;
  text-align: center;
}

.floating-contact-widget {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 120;
  display: grid;
  gap: 0;
  justify-items: start;
}

.floating-contact-kicker {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 0 -3px 14px;
  color: var(--white);
  font-family: "Trebuchet MS", "Comic Sans MS", "Segoe Print", cursive;
  font-size: clamp(1.5rem, 3.8vw, 2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow:
    -1px -1px 0 #2c333a,
    1px -1px 0 #2c333a,
    -1px 1px 0 #2c333a,
    1px 1px 0 #2c333a,
    0 3px 7px rgba(0, 0, 0, 0.46),
    0 0 16px rgba(255, 255, 255, 0.24);
  transform: rotate(-8deg);
  pointer-events: none;
}

.floating-contact-button {
  position: relative;
  z-index: 1;
  min-height: 62px;
  min-width: 138px;
  padding: 11px 18px;
  border: 3px solid #3a4148;
  border-radius: 999px;
  cursor: pointer;
  color: #ffe760;
  background:
    radial-gradient(circle at 24% 16%, rgba(255, 255, 255, 0.42), transparent 34%),
    linear-gradient(180deg, #9ca3ad 0%, #6f7781 48%, #454d56 100%);
  box-shadow:
    0 12px 26px rgba(3, 17, 30, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  font-family: inherit;
  font-size: clamp(0.98rem, 2.4vw, 1.18rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    -1px -1px 0 #2c333a,
    1px -1px 0 #2c333a,
    -1px 1px 0 #2c333a,
    1px 1px 0 #2c333a,
    0 2px 0 rgba(0, 0, 0, 0.22);
  transform: translateY(0);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-contact-button:hover,
.floating-contact-button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 16px 32px rgba(3, 17, 30, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.floating-contact-menu {
  display: flex;
  gap: 7px;
  padding-left: 8px;
}

.floating-contact-menu[hidden] {
  display: none;
}

.floating-contact-menu a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 6px 13px;
  border: 2px solid #062033;
  border-radius: 999px;
  color: #062033;
  background: #ffe760;
  box-shadow: 0 9px 20px rgba(3, 17, 30, 0.22);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.floating-contact-menu a:hover,
.floating-contact-menu a:focus-visible {
  background: #fff2a0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.18;
}

.choice-content h1 {
  color: var(--white);
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.42);
}

.typewriter-heading {
  display: inline-block;
  min-height: 2.82em;
}

.typewriter-heading.is-typing::after,
.typewriter-heading.is-complete::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.82em;
  margin-left: 0.08em;
  background: currentColor;
  vertical-align: -0.04em;
  animation: typewriterCursor 820ms steps(1) infinite;
}

@keyframes typewriterCursor {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

.choice-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 320px));
  gap: 18px;
  width: min(680px, 100%);
}

.choice-button {
  display: grid;
  min-height: 100px;
  place-items: center;
  padding: 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
  font-family: inherit;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  font-weight: 800;
  transition: transform 160ms ease;
}

.choice-button:hover {
  transform: translateY(-3px);
}

.choice-button.is-active {
  outline: 3px solid rgba(255, 255, 255, 0.74);
  outline-offset: 4px;
}

.choice-button.temporary {
  color: var(--white);
  background: linear-gradient(180deg, var(--blue), var(--blue-2));
}

.choice-button.permanent {
  color: var(--white);
  background: linear-gradient(180deg, var(--green-2), var(--green));
}

.home-service-panel {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 88px) 0;
}

.home-service-panel[hidden] {
  display: none;
}

.home-option-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 28px 0 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(6, 25, 42, 0.08);
}

.home-option-band h3,
.home-option-band p {
  margin-bottom: 0;
}

.home-option-band h3 {
  color: var(--navy);
  font-size: 1.35rem;
}

.home-option-band p:not(.eyebrow) {
  margin-top: 6px;
  color: var(--muted);
}

.home-container-grid {
  margin-bottom: 34px;
}

.home-temporary-search {
  max-width: none;
  margin: 0 0 22px;
  border-color: var(--line);
  background: var(--white);
}

.home-temporary-search label {
  color: var(--navy);
}

.home-temporary-search .pricing-status {
  color: var(--muted);
}

.page {
  min-height: 100vh;
  padding-top: 66px;
}

.page-hero,
.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.page-hero {
  position: relative;
  width: 100%;
  margin: 0;
  min-height: 620px;
  padding: clamp(54px, 8vw, 92px) max(18px, calc((100vw - 1180px) / 2)) clamp(30px, 4vw, 48px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 34%, rgba(0, 166, 214, 0.16), transparent 30%),
    linear-gradient(180deg, var(--navy), var(--navy-2));
}

.page-hero > :not(.hero-rolloff-photo) {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--white);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

.hero-rolloff-photo {
  position: absolute;
  z-index: 1;
  top: 66px;
  right: 0;
  bottom: 0;
  width: min(58vw, 920px);
  margin: 0;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
}

.hero-rolloff-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 25, 42, 0.18) 0%, rgba(6, 25, 42, 0.04) 42%, rgba(6, 25, 42, 0) 76%),
    linear-gradient(180deg, rgba(0, 166, 214, 0.04), rgba(6, 25, 42, 0.04));
}

.hero-rolloff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: brightness(1.06) contrast(1.08) saturate(1.04);
}

.hero-frontload-photo img {
  object-position: 45% center;
  filter: brightness(1.08) contrast(1.08) saturate(1.06);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button,
form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.button.primary,
form button {
  color: var(--white);
  background: linear-gradient(180deg, var(--green-2), var(--green));
}

.section {
  padding: clamp(48px, 8vw, 96px) 0;
}

.page-hero + .section {
  padding-top: 16px;
}

.policy-section {
  padding-top: clamp(42px, 6vw, 72px);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.policy-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--green-2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 251, 0.96)),
    var(--white);
  box-shadow: 0 18px 42px rgba(6, 25, 42, 0.08);
}

.policy-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.08rem;
}

.policy-card p {
  color: var(--muted);
}

.privacy-hero {
  min-height: 440px;
}

.privacy-content {
  width: min(920px, 100%);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-top: 6px solid var(--green-2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(6, 25, 42, 0.08);
}

.privacy-content h2 {
  margin: 28px 0 10px;
  color: var(--navy);
  font-size: 1.28rem;
}

.privacy-content h2:first-of-type {
  margin-top: 0;
}

.privacy-content p {
  color: var(--muted);
}

.privacy-content a {
  color: var(--blue);
  font-weight: 800;
}

.privacy-updated {
  margin-bottom: 24px;
  color: var(--navy);
  font-weight: 800;
}

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

.container-pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.service-card {
  min-width: 0;
  min-height: 250px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(6, 25, 42, 0.08);
}

.service-card .icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  font-weight: 800;
}

.container-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid #c9d4dc;
  border-radius: 8px;
  background: #f7f9fa;
}

.container-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.price-card[data-size="15 yd"] .container-photo img {
  transform: scale(0.93);
}

.price-card[data-size="40 yd"] .container-photo img {
  transform: scale(1.08);
}

.service-card p,
.size-list span,
.split p,
.areas p {
  color: var(--muted);
}

.pricing-search {
  display: grid;
  max-width: 760px;
  gap: 10px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(4, 20, 34, 0.82);
  box-shadow: var(--shadow);
}

.pricing-search label {
  color: var(--white);
}

.pricing-search div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.pricing-search input {
  background: #fbfdff;
}

.pricing-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.frontload-rate-callout {
  display: grid;
  max-width: 620px;
  gap: 4px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 6px solid var(--green-2);
  border-radius: 8px;
  color: var(--white);
  background: rgba(4, 20, 34, 0.82);
  box-shadow: var(--shadow);
}

.frontload-rate-callout span {
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.frontload-rate-callout strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.frontload-rate-callout small {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 700;
}

.price-card {
  display: grid;
  align-content: start;
}

.frontload-card {
  border-top-color: var(--green);
}

.frontload-container-photo img {
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.frontload-service-grid .price-lines dd {
  color: var(--green);
}

.price-card .price-lines div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
}

.price-card .price-lines dt,
.price-card .price-lines dd {
  flex: none;
  width: 100%;
  text-align: left;
}

.price-card .price-lines dd {
  font-size: 1.05rem;
}

.price-card .price-lines .price-line-primary {
  align-items: stretch;
}

.price-card .price-lines dd small {
  font-size: 0.52rem;
}

.frontload-container-photo img[src*="frontload-2-yard-professional"] {
  transform: scale(0.72);
}

.frontload-container-photo img[src*="frontload-4-yard-professional"] {
  transform: scale(0.84);
}

.frontload-container-photo img[src*="frontload-6-yard-professional"] {
  transform: scale(0.94);
}

.frontload-container-photo img[src*="frontload-8-yard-professional"] {
  transform: scale(1);
}

.frontload-info-band {
  padding-top: 16px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin-bottom: 12px;
  color: var(--navy);
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.temporary-frontload-section {
  padding-top: 24px;
}

.temporary-frontload-section .pricing-search {
  max-width: none;
  margin: 0 0 22px;
  border-color: var(--line);
  background: var(--white);
}

.temporary-frontload-section .pricing-search label {
  color: var(--navy);
}

.temporary-frontload-section .pricing-status {
  color: var(--muted);
}

.price-lines {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 18px 0;
}

.price-lines div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.price-lines dt {
  flex: 0 0 42%;
  min-width: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-lines dd {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: var(--blue-2);
  font-size: 1.15rem;
  font-weight: 800;
  text-align: right;
}

.price-lines .price-line-primary {
  align-items: flex-start;
  padding: 12px;
  border: 1px solid rgba(0, 166, 214, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(0, 166, 214, 0.08), rgba(76, 175, 80, 0.06));
}

.price-lines .price-line-primary dd {
  color: var(--green);
  font-size: 1.32rem;
}

.price-lines dd small {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: clip;
  text-transform: none;
  white-space: nowrap;
}

.price-lines .price-subline {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
}

.price-lines .price-line-total {
  margin-top: 4px;
  border-top: 2px solid var(--navy);
}

.price-lines .price-line-total dt {
  color: var(--navy);
}

.price-lines .price-line-total dd {
  color: var(--navy);
}

.card-button {
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  color: var(--white);
  background: linear-gradient(180deg, var(--green-2), var(--green));
}

.pricing-details {
  margin-top: 18px;
  padding: clamp(20px, 4vw, 30px);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--steel));
}

.pricing-details h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.pricing-details p {
  color: rgba(255, 255, 255, 0.78);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.detail-grid div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.detail-grid strong,
.detail-grid span {
  display: block;
}

.detail-grid strong {
  color: var(--green-2);
  font-size: 1.2rem;
}

.detail-grid span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.split,
.areas {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 7vw, 84px);
  align-items: start;
}

.size-list {
  display: grid;
  gap: 12px;
}

.size-list article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 86px;
  padding: 18px;
  border-left: 7px solid var(--green-2);
  border-radius: 8px;
  background: var(--white);
}

.size-list strong {
  font-size: 1.18rem;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.area-list li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.customer-logo-section {
  display: grid;
  gap: 22px;
  width: 100%;
  padding: clamp(34px, 5vw, 56px) 0;
  overflow: hidden;
  background: var(--white);
}

.customer-logo-head {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.customer-logo-head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.customer-logo-marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, #f8fafb, #ffffff);
}

.customer-logo-marquee::before,
.customer-logo-marquee::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(120px, 18vw);
  content: "";
  pointer-events: none;
}

.customer-logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.customer-logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.customer-logo-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 10px 12px;
  animation: customerLogoScroll 34s linear infinite;
}

.customer-logo-marquee:hover .customer-logo-track {
  animation-play-state: paused;
}

.customer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  min-width: 104px;
  height: 60px;
  padding: 8px 12px;
  border: 1px solid #d6e1e8;
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6, 25, 42, 0.08);
  font-size: 1.12rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.customer-logo-image img {
  width: 100%;
  max-width: 80px;
  max-height: 42px;
  object-fit: contain;
}

@keyframes customerLogoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.service-area-map-section {
  display: grid;
  gap: 22px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 78px) 0;
}

.service-area-map-copy {
  max-width: 760px;
}

.service-area-map-copy h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.service-area-map-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.public-service-map {
  height: min(68vh, 720px);
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 6px solid var(--green);
  border-radius: 8px;
  background: #dfe8ec;
  box-shadow: 0 20px 50px rgba(6, 25, 42, 0.12);
}

.county-link-panel,
.zip-service-section {
  display: grid;
  gap: 22px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px) 0 clamp(52px, 7vw, 86px);
}

.county-link-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.2fr);
  align-items: center;
  border-top: 1px solid var(--line);
}

.county-link-panel h2,
.zip-service-section h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.05;
}

.county-link-panel p:last-child,
.zip-service-section p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.county-button-grid,
.county-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.county-service-button,
.county-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(80, 174, 80, 0.78);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #238b45, var(--green) 58%, #86d36f);
  box-shadow: 0 10px 24px rgba(35, 139, 69, 0.28);
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.county-service-button:hover,
.county-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(6, 25, 42, 0.24);
}

.county-service-hero {
  min-height: 440px;
}

.county-button-row {
  max-width: 900px;
  margin-top: 24px;
}

.zip-service-section {
  padding-top: clamp(38px, 6vw, 74px);
}

.zip-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zip-service-list li {
  min-height: 58px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(6, 25, 42, 0.08);
}

.zip-service-list a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 16px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.town-service-hero {
  min-height: 470px;
}

.town-service-section {
  display: grid;
  gap: 26px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 76px) 0 clamp(60px, 8vw, 94px);
}

.town-service-intro {
  max-width: 880px;
}

.town-service-intro h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.town-service-intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.town-price-block {
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 6px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(6, 25, 42, 0.1);
}

.town-price-block h3 {
  margin: 0;
  padding: 18px 20px;
  color: var(--navy);
  font-size: 1.25rem;
}

.town-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.town-price-table th,
.town-price-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.town-price-table th {
  color: var(--navy);
  background: #f3f8f5;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.town-price-table td:first-child,
.town-price-table td:nth-child(2) {
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.town-price-table a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #238b45);
  font-weight: 900;
  text-decoration: none;
}

.band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  background: var(--steel);
}

.stat {
  min-height: 190px;
  padding: clamp(30px, 5vw, 54px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.stat strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  line-height: 0.9;
}

.stat span {
  display: block;
  max-width: 220px;
  margin-top: 12px;
  font-weight: 700;
}

.quote {
  padding-top: clamp(72px, 11vw, 132px);
}

.quote-panel {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(26px, 6vw, 70px);
  padding: clamp(24px, 5vw, 56px);
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.quote-panel .eyebrow {
  color: var(--yellow);
}

.phone-line {
  margin-top: 24px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.employment-application-panel {
  align-items: start;
}

.employment-form fieldset {
  display: grid;
  gap: 14px;
  padding: 0 0 16px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.employment-form legend {
  margin-bottom: 2px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.employment-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  text-transform: none;
}

.employment-consent input {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  outline: none;
}

textarea {
  min-height: 124px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(241, 186, 67, 0.2);
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.rental-terms {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
}

.rental-terms li {
  padding-left: 14px;
  border-left: 3px solid var(--yellow);
}

.portal-grid,
.admin-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-layout {
  grid-template-columns: 320px 1fr;
  align-items: start;
}

.admin-layout.heatmap-only {
  grid-template-columns: 1fr;
}

.narrow {
  max-width: 760px;
}

.portal-card {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.portal-card h1,
.portal-card h2 {
  margin-bottom: 4px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.portal-card label {
  color: var(--muted);
}

.portal-card input,
.portal-card select {
  background: #fbfaf6;
}

.portal-card button {
  width: 100%;
}

.admin-hub {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 28px;
}

.admin-hub-card {
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-top: 6px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(6, 25, 42, 0.08);
  color: var(--navy);
  text-decoration: none;
}

.admin-hub-card span {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-hub-card strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.admin-hub-card small {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.embedded-admin-tool {
  display: grid;
  gap: 18px;
  scroll-margin-top: 96px;
}

.embedded-tool-heading {
  display: grid;
  gap: 6px;
  max-width: 980px;
}

.embedded-tool-heading h2,
.embedded-tool-heading p {
  margin: 0;
}

.embedded-tool-heading h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.embedded-tool-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-weight: 700;
}

.embedded-admin-tool iframe {
  width: 100%;
  height: 920px;
  min-height: 920px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #eef2f5;
  box-shadow: 0 18px 42px rgba(6, 25, 42, 0.12);
}

.admin-orders-shell {
  display: grid;
  gap: 20px;
}

.orders-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(6, 25, 42, 0.06);
}

.orders-toolbar h2,
.orders-toolbar p {
  margin: 0;
}

.orders-toolbar h2 {
  color: var(--navy);
}

.orders-toolbar p {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.orders-toolbar button {
  width: auto;
  min-width: 140px;
}

.orders-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.parked-orders-board {
  grid-template-columns: 1fr;
}

.orders-column {
  display: grid;
  gap: 14px;
}

.orders-column-wide {
  max-width: none;
}

.orders-column-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--steel));
}

.orders-column-head h2 {
  margin: 0;
  font-size: 1rem;
}

.orders-column-head span {
  display: grid;
  min-width: 34px;
  min-height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  font-weight: 900;
}

.orders-list {
  display: grid;
  gap: 14px;
}

.directory-shell {
  display: grid;
  gap: 18px;
}

.directory-toolbar {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 18px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(6, 25, 42, 0.06);
}

.directory-toolbar h2,
.directory-toolbar p {
  margin: 0;
}

.directory-toolbar p {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.directory-toolbar label {
  color: var(--muted);
}

.inbox-toolbar-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 10px;
  align-items: end;
}

.inbox-toolbar-fields label {
  display: grid;
  gap: 6px;
}

.inbox-toolbar-fields button {
  min-height: 46px;
  border-radius: 999px;
}

.directory-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.directory-tabs button {
  width: auto;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-weight: 900;
}

.directory-tabs button.active {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.directory-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.directory-stats article {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: var(--white);
}

.directory-stats strong {
  color: var(--navy);
  font-size: 1.3rem;
  line-height: 1;
}

.directory-stats span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.directory-table-wrap {
  max-height: 72vh;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(6, 25, 42, 0.08);
}

.directory-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.directory-table th,
.directory-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e5ebef;
  text-align: left;
  vertical-align: top;
}

.directory-table th {
  position: sticky;
  z-index: 1;
  top: 0;
  color: var(--white);
  background: var(--navy);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.directory-table tr:nth-child(even) td {
  background: #f8fafb;
}

.inbox-shell {
  display: grid;
  gap: 18px;
}

.inbox-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.inbox-list,
.inbox-detail {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(6, 25, 42, 0.06);
}

.inbox-list {
  display: grid;
  max-height: 72vh;
  overflow: auto;
}

.inbox-row {
  display: grid;
  gap: 6px;
  width: 100%;
  min-height: 0;
  padding: 14px;
  border: 0;
  border-bottom: 1px solid #e5ebef;
  border-radius: 0;
  color: var(--navy);
  background: var(--white);
  text-align: left;
}

.inbox-row.active {
  background: #edf9fc;
  box-shadow: inset 4px 0 0 var(--blue);
}

.inbox-row strong,
.inbox-row small,
.inbox-row span:last-child {
  display: block;
}

.inbox-row small,
.inbox-row span:last-child,
.inbox-detail p {
  color: var(--muted);
  font-weight: 700;
}

.inbox-detail {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 26px);
}

.inbox-detail-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.inbox-detail h2,
.inbox-detail p {
  margin: 0;
}

.inbox-detail h2 {
  margin-top: 8px;
  color: var(--navy);
}

.inbox-detail select {
  width: min(220px, 100%);
}

.inbox-detail textarea {
  min-height: 120px;
}

.inquiry-print-area {
  display: grid;
  gap: 16px;
}

.inbox-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inbox-actions button {
  width: auto;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
}

.inbox-actions [data-complete-inbox] {
  color: var(--white);
  background: #111827;
}

.customer-portal-shell,
.customer-panel,
.customer-panel > div {
  display: grid;
  gap: 16px;
}

.customer-portal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.customer-panel {
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(6, 25, 42, 0.06);
}

.customer-panel h2,
.customer-activity-card h3,
.customer-activity-card p {
  margin: 0;
}

.customer-panel h2 {
  color: var(--navy);
}

.customer-activity-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid #e5ebef;
  border-radius: 8px;
  background: #fbfdff;
}

.customer-activity-card h3 {
  margin-top: 8px;
  color: var(--navy);
}

.customer-activity-card p {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.settings-shell {
  display: grid;
  gap: 18px;
}

.settings-status {
  padding: 14px 16px;
  border: 1px solid rgba(0, 166, 214, 0.28);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  color: var(--navy);
  background: #edf9fc;
  font-weight: 800;
}

.settings-card {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(6, 25, 42, 0.06);
}

.settings-card h2,
.settings-card p {
  margin: 0;
}

.settings-card p {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.settings-add-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(100px, 160px) auto;
  gap: 10px;
}

.settings-add-row.compact {
  grid-template-columns: minmax(0, 1fr) auto;
}

.settings-add-row input,
.settings-add-row button {
  min-height: 44px;
}

.settings-add-row button {
  width: auto;
}

.settings-list {
  display: grid;
  gap: 8px;
}

.settings-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #e3eaee;
  border-radius: 8px;
  background: #fbfdff;
}

.settings-list-row strong,
.settings-list-row span {
  display: block;
}

.settings-list-row span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.settings-list-row button {
  width: auto;
  min-height: 34px;
  padding: 0 12px;
  color: var(--white);
  background: #ef4444;
  font-size: 0.78rem;
}

.order-card,
.orders-empty {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(6, 25, 42, 0.06);
}

.orders-empty {
  padding: 22px;
  color: var(--muted);
  font-weight: 800;
}

.order-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.order-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.order-card h3,
.order-card p {
  margin: 0;
}

.order-card h3 {
  color: var(--navy);
  font-size: 1.2rem;
}

.order-card-top p {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.order-card-top span {
  flex: 0 0 auto;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--navy);
  background: #eaf7ed;
  font-size: 0.75rem;
  font-weight: 900;
}

.parked-order-card .order-card-top span {
  background: #fff4d7;
}

.order-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.order-meta div {
  min-width: 0;
  padding-left: 10px;
  border-left: 3px solid var(--yellow);
}

.order-meta dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-meta dd {
  margin: 2px 0 0;
  color: var(--navy);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.order-note {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--navy);
  background: #f7f9fb;
  line-height: 1.45;
}

.order-card button {
  width: 100%;
}

.order-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.order-card .danger-button {
  color: var(--white);
  background: #ef4444;
}

.form-action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-action-row:has([hidden]) {
  grid-template-columns: 1fr;
}

.repeat-customer-toggle {
  margin-bottom: 14px;
}

.switch-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 12px;
  border: 1px solid #d6e0e5;
  border-radius: 999px;
  background: #f7fafc;
  color: var(--navy);
  font-weight: 900;
}

.switch-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.button.secondary,
form button.secondary,
.order-card button.secondary {
  color: var(--navy);
  background: linear-gradient(135deg, #eef3f6, #cfd9df);
  box-shadow: 0 8px 18px rgba(6, 25, 42, 0.12);
}

.button.secondary:hover,
form button.secondary:hover,
.order-card button.secondary:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #f7fafc, #d8e1e7);
}

.dispatch-app {
  min-height: 100vh;
  padding-top: 66px;
  background: #eef4f1;
}

.dispatch-filters {
  position: sticky;
  top: 66px;
  z-index: 30;
  display: grid;
  grid-template-columns: 150px 160px minmax(220px, 1fr) 190px 180px 170px 96px;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid #d9e1dd;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 18px rgba(6, 25, 42, 0.08);
}

.dispatch-filters label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dispatch-filters input,
.dispatch-filters select {
  height: 38px;
  margin-top: 5px;
  border: 0;
  border-bottom: 1px solid #cbd6de;
  border-radius: 0;
  background: transparent;
}

.dispatch-filters button {
  align-self: end;
  height: 38px;
  padding: 0 12px;
}

.dispatch-shell {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  height: calc(100vh - 160px);
  min-height: 620px;
}

.dispatch-sidebar {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto 1fr;
  overflow: auto;
  border-right: 1px solid #d9e1dd;
  background: #f7faf8;
}

.dispatch-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: #6f7c89;
}

.dispatch-sidebar-head h1 {
  margin: 0;
  font-size: 0.92rem;
}

.dispatch-sidebar-head button {
  width: auto;
  min-height: 30px;
  padding: 0 10px;
  font-size: 0.75rem;
}

.ticket-log-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--navy);
  background: #fee768;
}

.ticket-log {
  display: grid;
  border-bottom: 1px solid #d9e1dd;
}

.ticket-log-head span {
  display: grid;
  min-width: 42px;
  min-height: 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  font-weight: 900;
}

.ticket-log-tools {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.dispatch-ticket-list,
.route-ticket-list {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 8px;
}

.dispatch-ticket {
  display: grid;
  gap: 5px;
  padding: 8px 9px;
  border: 1px solid #e2e8ec;
  border-left: 4px solid var(--blue);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(6, 25, 42, 0.06);
  cursor: grab;
}

.dispatch-ticket.is-flagged {
  border-left-color: #ef4444;
}

.dispatch-ticket.is-dragging {
  opacity: 0.55;
}

.dispatch-ticket-top,
.dispatch-ticket-actions,
.dispatch-ticket-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dispatch-ticket-top strong {
  color: #3568c9;
  font-size: 0.78rem;
}

.dispatch-job-link {
  width: auto;
  min-height: 0;
  padding: 0;
  color: #3568c9;
  background: transparent;
  box-shadow: none;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dispatch-status-badge,
.dispatch-ticket-top span {
  padding: 3px 6px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-size: 0.62rem;
  font-weight: 900;
}

.dispatch-status-badge.is-completed {
  background: #111827;
}

.dispatch-status-badge.is-cancelled {
  background: #ef4444;
}

.dispatch-status-badge.is-paused {
  background: #f7941d;
}

.dispatch-status-badge.is-started {
  background: #facc15;
  color: #111827;
}

.dispatch-status-badge.is-open {
  background: var(--green);
}

.dispatch-ticket h3,
.dispatch-ticket p {
  margin: 0;
}

.dispatch-ticket h3 {
  color: var(--navy);
  font-size: 0.8rem;
  line-height: 1.1;
}

.dispatch-ticket h3 span {
  color: var(--muted);
  font-size: 0.68rem;
}

.dispatch-ticket p,
.dispatch-ticket-meta,
.dispatch-site-select {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.2;
}

.dispatch-ticket p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dispatch-ticket-actions button {
  min-height: 26px;
  padding: 0 8px;
  font-size: 0.68rem;
}

.dispatch-ticket-controls {
  display: grid;
  grid-template-columns: 64px 34px 1fr;
  gap: 6px;
  align-items: end;
}

.dispatch-flag-toggle {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dispatch-flag-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.dispatch-flag-toggle span {
  display: grid;
  min-height: 28px;
  place-items: center;
  border: 1px solid #cbd6de;
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}

.dispatch-flag-toggle input:checked + span {
  color: var(--white);
  border-color: #ef4444;
  background: #ef4444;
}

.dispatch-icon-button {
  display: grid;
  width: 34px;
  min-height: 28px;
  place-items: center;
  padding: 0;
  border: 1px solid #cbd6de;
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
}

.dispatch-icon-button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.dispatch-pin-button.has-site {
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.35);
  background: #ecfdf3;
}

.dispatch-icon-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dispatch-site-select select {
  height: 34px;
  margin-top: 4px;
  font-size: 0.78rem;
}

.driver-roster {
  display: grid;
  align-content: start;
  border-top: 1px solid #d9e1dd;
}

.driver-dispatch-group {
  display: grid;
  border-bottom: 1px solid #d9e1dd;
  background: #e9edf1;
}

.driver-dispatch-head {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 13px 18px;
  background: #e1e6eb;
}

.driver-dispatch-head span {
  display: grid;
  min-height: 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  font-weight: 900;
}

.driver-dispatch-head small {
  color: var(--muted);
  font-weight: 900;
}

.driver-ticket-dropzone {
  min-height: 58px;
  padding: 8px 12px 12px;
}

.dispatch-main {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 0;
}

.dispatch-map-panel {
  position: relative;
  min-height: 0;
}

#dispatchMap {
  position: absolute;
  inset: 0;
}

.dispatch-map-key {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 500;
  display: flex;
  padding: 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 22px rgba(6, 25, 42, 0.16);
}

.dispatch-map-site-toggle {
  display: flex;
  align-items: center;
  width: auto;
  min-width: 0;
  min-height: 34px;
  gap: 8px;
  padding: 0 10px;
  font-size: 0.82rem;
}

.dispatch-map-site-toggle[aria-pressed="false"] {
  color: #8a959d;
  background: #e6ece9;
  box-shadow: none;
}

.route-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  gap: 14px;
  padding: 14px;
  overflow-x: auto;
  background: #f6f8f7;
}

.route-column {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 320px;
  border: 1px solid #d9e1dd;
  border-radius: 8px;
  background: #edf3f1;
}

.route-column-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--steel));
  border-radius: 8px 8px 0 0;
}

.route-column-head h2 {
  margin: 0;
  font-size: 0.95rem;
}

.route-column-head span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
}

.route-column-head strong {
  display: grid;
  min-width: 34px;
  min-height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
}

.dispatch-totals {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border-top: 1px solid #d9e1dd;
  background: #d9e1dd;
}

.dispatch-totals div {
  padding: 12px;
  text-align: center;
  background: var(--white);
}

.dispatch-totals strong,
.dispatch-totals span {
  display: block;
}

.dispatch-totals strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.dispatch-totals span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-detail-drawer {
  position: fixed;
  inset: 66px 0 0 auto;
  z-index: 1000;
  width: min(960px, 92vw);
  overflow: auto;
  background: #f3f7f5;
  box-shadow: -24px 0 48px rgba(6, 25, 42, 0.22);
}

.dispatch-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 24px;
}

.dispatch-modal[hidden] {
  display: none;
}

.dispatch-modal-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.dispatch-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  width: min(980px, 92vw);
  padding: clamp(22px, 4vw, 34px);
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.site-modal-panel {
  gap: 22px;
}

.modal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  min-width: 34px;
  min-height: 34px;
  padding: 0;
  color: var(--navy);
  background: transparent;
  font-size: 1.4rem;
}

.dispatch-modal-panel h2 {
  margin: 0;
  color: #5c6268;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

.dispatch-modal-panel label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.dispatch-modal-panel select {
  height: 44px;
  margin-top: 8px;
  border: 0;
  border-bottom: 2px solid #cbd6de;
  border-radius: 0;
  background: transparent;
  font-size: 1rem;
}

.dispatch-modal-panel p {
  margin: 0;
  color: #767d83;
  font-size: 1.2rem;
}

.dispatch-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.dispatch-modal-actions button {
  width: auto;
  min-width: 86px;
}

.dispatch-modal-actions [data-close-reassign] {
  color: var(--navy);
  background: transparent;
}

.associated-site-row {
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #e2e8ec;
  background: #fbfdff;
}

.associated-site-row strong {
  color: #3568c9;
  font-size: 0.9rem;
}

.associated-site-row strong span,
.associated-site-row small {
  color: var(--muted);
  font-weight: 800;
}

.associated-site-row small {
  grid-column: 1 / -1;
}

.site-remove-button {
  width: 30px;
  min-width: 30px;
  min-height: 30px;
  padding: 0;
  color: #ef4444;
  background: transparent;
  font-size: 1.1rem;
}

.site-add-button {
  background: #98e2af;
}

.dispatch-map-ticket-label {
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  pointer-events: auto;
}

.dispatch-map-ticket-label strong {
  display: grid;
  min-width: 42px;
  min-height: 26px;
  place-items: center;
  padding: 3px 6px;
  border-radius: 5px;
  background: #20b86a;
  box-shadow: 0 2px 8px rgba(6, 25, 42, 0.35);
  font-size: 0.72rem;
  line-height: 1;
}

.dispatch-map-ticket-label span {
  margin-top: 2px;
  padding: 1px 4px;
  border-radius: 4px;
  background: rgba(6, 25, 42, 0.8);
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1.2;
}

.dispatch-map-ticket-label span:empty {
  display: none;
}

.dispatch-map-ticket-label.is-completed strong {
  background: #111827;
}

.dispatch-map-ticket-label.is-cancelled strong {
  background: #ef4444;
}

.dispatch-map-ticket-label.is-paused strong {
  background: #f7941d;
}

.dispatch-map-ticket-label.is-started strong {
  color: #111827;
  background: #facc15;
}

.dispatch-map-ticket-label.is-open strong {
  background: #20b86a;
}

.dispatch-map-ticket-label.is-unmapped strong {
  border: 2px solid #f97316;
}

.ticket-detail-panel {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.ticket-detail-head,
.ticket-detail-actions,
.ticket-detail-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ticket-detail-head h2 {
  margin: 0;
  color: var(--navy);
}

.ticket-detail-head span {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.ticket-detail-head .dispatch-status-badge.is-completed {
  background: #111827;
}

.ticket-detail-head .dispatch-status-badge.is-cancelled {
  background: #ef4444;
}

.ticket-detail-head .dispatch-status-badge.is-paused {
  background: #f7941d;
}

.ticket-detail-head .dispatch-status-badge.is-started {
  background: #facc15;
  color: #111827;
}

.ticket-detail-head .dispatch-status-badge.is-open {
  background: var(--green);
}

.ticket-detail-head button,
.ticket-detail-actions button {
  width: auto;
}

.ticket-detail-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.ticket-detail-actions button {
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 18px rgba(6, 25, 42, 0.14);
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.ticket-detail-actions button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(6, 25, 42, 0.18);
}

.ticket-detail-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
  box-shadow: none;
}

.ticket-detail-actions [data-cancel-ticket] {
  background: #ef4444;
}

.ticket-detail-actions .is-start-action {
  background: #facc15;
  color: #111827;
}

.ticket-detail-actions .is-pause-action {
  background: #f7941d;
}

.ticket-detail-actions [data-reopen-ticket] {
  background: var(--green);
  color: var(--white);
}

.ticket-detail-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.ticket-detail-strip strong,
.ticket-detail-strip span {
  display: block;
}

.ticket-detail-strip span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-detail-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 16px;
}

.ticket-detail-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(6, 25, 42, 0.06);
}

.ticket-detail-card h3,
.ticket-detail-card p {
  margin: 0;
}

.ticket-detail-card h3 {
  color: var(--muted);
  font-size: 1rem;
}

.dispatch-suggestion {
  padding: 10px 12px;
  border-left: 4px solid var(--blue);
  border-radius: 6px;
  color: var(--navy);
  background: #edf9fc;
  font-weight: 800;
}

.ticket-detail-card form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.ticket-detail-card form button {
  width: auto;
}

.ticket-comments {
  display: grid;
  gap: 8px;
}

.ticket-comments p {
  padding: 12px;
  border-radius: 6px;
  background: #fff8e8;
}

.ticket-comments span {
  display: block;
  margin-top: 5px;
  color: #3568c9;
  font-size: 0.78rem;
  font-weight: 900;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.order-section {
  padding-top: clamp(72px, 10vw, 120px);
}

.order-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
}

.order-summary {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 166, 214, 0.22), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--steel));
  box-shadow: var(--shadow);
}

.order-summary h1 {
  margin-bottom: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  text-transform: uppercase;
}

.order-summary p {
  color: rgba(255, 255, 255, 0.78);
}

.order-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.order-highlights div {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.order-highlights strong,
.order-highlights span {
  display: block;
}

.order-highlights strong {
  color: var(--green-2);
  font-size: 1.15rem;
}

.order-highlights span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.order-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-top: 6px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(6, 25, 42, 0.08);
}

.order-form fieldset {
  display: grid;
  gap: 14px;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.order-form legend {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.order-form label {
  color: var(--muted);
}

.order-form input,
.order-form select,
.order-form textarea {
  background: #fbfdff;
}

.schedule-picker {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9fb;
}

.field-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.field-help {
  margin: -4px 0 0;
  color: var(--rust);
  font-size: 0.92rem;
  font-weight: 800;
}

.schedule-notice,
.rental-fee-note,
.pricing-adjustment-note {
  margin: -4px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(247, 148, 29, 0.44);
  border-radius: 8px;
  background: rgba(247, 148, 29, 0.09);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.time-slot-grid label {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
  text-align: center;
  text-transform: none;
}

.time-slot-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.time-slot-grid span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid #cbd6de;
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.time-slot-grid input:focus-visible + span {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(247, 148, 29, 0.2);
}

.time-slot-grid input:checked + span {
  color: var(--white);
  border-color: var(--blue-2);
  background: linear-gradient(180deg, var(--blue), var(--blue-2));
}

.time-slot-grid span:hover {
  transform: translateY(-1px);
  border-color: var(--blue);
}

.termination-choice {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.termination-choice label:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  text-transform: none;
}

.termination-choice input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-right: 8px;
}

.secure-payment-note {
  padding: 16px;
  border: 1px solid rgba(247, 148, 29, 0.42);
  border-radius: 8px;
  background: rgba(247, 148, 29, 0.08);
}

.secure-payment-note strong {
  display: block;
  color: var(--navy);
}

.secure-payment-note p {
  margin: 6px 0 0;
  color: var(--muted);
}

.order-form input[type="file"] {
  display: grid;
  align-items: center;
  padding: 10px 13px;
}

.file-upload-label {
  display: grid;
  gap: 8px;
}

.file-upload-label input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.file-upload-label span {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: none;
  cursor: pointer;
}

.file-upload-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef3f6;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.file-upload-status.is-attached {
  background: #e8f7ed;
  color: #2f7d32;
}

.google-review-prompt {
  align-self: start;
}

.review-prompt-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-top: 5px solid var(--teal);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.review-prompt-card h2,
.review-prompt-card p {
  margin: 0;
}

.review-prompt-card h2 {
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.review-prompt-card p {
  color: var(--muted);
  line-height: 1.55;
}

.review-prompt-card button,
.review-prompt-card .review-link-button {
  justify-self: start;
  min-height: 48px;
  padding-inline: 22px;
  color: var(--white);
  text-decoration: none;
  background: linear-gradient(180deg, var(--green-2), var(--green));
  box-shadow: 0 10px 20px rgba(45, 125, 50, 0.22);
}

.license-file-name {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  text-transform: none;
}

.check-row input {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.order-form button[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.admin-rate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.heatmap-panel {
  min-height: 980px;
}

.heatmap-panel iframe {
  width: 100%;
  min-height: 920px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

@media (max-width: 980px) {
  .site-header {
    min-height: 66px;
  }

  .brand {
    padding: 0 18px;
  }

  .main-nav a {
    padding: 0 16px;
  }

  .page {
    padding-top: 66px;
  }

  .page-hero {
    min-height: 0;
  }

  .page-hero h1,
  .page-hero p {
    max-width: 100%;
  }

  .hero-rolloff-photo {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: clamp(220px, 42vw, 360px);
    margin-top: 24px;
    border-radius: 8px;
  }

  .service-grid,
  .policy-grid,
  .quote-panel,
  .portal-grid,
  .admin-layout,
  .admin-hub,
  .orders-board,
  .dispatch-shell,
  .ticket-detail-grid,
  .order-shell {
    grid-template-columns: 1fr 1fr;
  }

  .order-summary {
    position: static;
  }

  .container-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    overflow: hidden;
  }

  .brand {
    padding: 0 12px;
  }

  .brand small {
    display: none;
  }

  .choice-content {
    padding-top: 66px;
  }

  .choice-actions,
  .service-grid,
  .policy-grid,
  .split,
  .areas,
  .area-list,
  .quote-panel,
  .band,
  .container-pricing-grid,
  .detail-grid,
  .pricing-search div {
    grid-template-columns: 1fr;
  }

  .page-hero {
    background: linear-gradient(180deg, var(--navy), var(--navy-2));
  }

  .hero-rolloff-photo {
    height: 220px;
  }

  .customer-logo {
    width: 104px;
    min-width: 104px;
    height: 60px;
    padding: 8px 12px;
    font-size: 0.95rem;
  }

  .public-service-map {
    min-height: 360px;
    height: 58vh;
  }

  .county-link-panel,
  .zip-service-list {
    grid-template-columns: 1fr;
  }

  .county-button-grid,
  .county-button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .town-price-block {
    overflow-x: auto;
  }

  .town-price-table {
    min-width: 680px;
  }

  .portal-grid,
  .admin-layout,
  .admin-rate-grid,
  .admin-hub,
  .orders-board,
  .inbox-layout,
  .customer-portal-grid,
  .settings-add-row,
  .settings-add-row.compact,
  .dispatch-shell,
  .ticket-detail-grid,
  .ticket-detail-strip,
  .order-shell,
  .order-meta,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .dispatch-app {
    padding-top: 66px;
  }

  .dispatch-filters {
    position: static;
    grid-template-columns: 1fr;
  }

  .dispatch-main {
    grid-template-rows: 360px auto auto;
  }

  .ticket-detail-drawer {
    inset: 66px 0 0 0;
    width: auto;
  }

  .orders-toolbar,
  .directory-toolbar,
  .order-card-top,
  .ticket-detail-head,
  .ticket-detail-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .directory-toolbar {
    grid-template-columns: 1fr;
  }

  .admin-add-form {
    grid-template-columns: 1fr;
  }

  .inbox-toolbar-fields {
    grid-template-columns: 1fr;
  }

  .orders-toolbar button {
    width: 100%;
  }

  .review-prompt-card button,
  .review-prompt-card .review-link-button {
    width: 100%;
  }

  .time-slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-button {
    min-height: 82px;
  }

  .size-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .stat {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media print {
  body.printing-inquiry .site-header,
  body.printing-inquiry .page-hero,
  body.printing-inquiry .directory-toolbar,
  body.printing-inquiry .inbox-list,
  body.printing-inquiry .inbox-actions,
  body.printing-inquiry [data-inbox-status-field] {
    display: none !important;
  }

  body.printing-inquiry .page,
  body.printing-inquiry .section,
  body.printing-inquiry .inbox-layout,
  body.printing-inquiry .inbox-detail {
    display: block;
    width: 100%;
    max-width: none;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  body.printing-inbox-list .site-header,
  body.printing-inbox-list .page-hero,
  body.printing-inbox-list .inbox-detail,
  body.printing-inbox-list .directory-toolbar label,
  body.printing-inbox-list .directory-toolbar button {
    display: none !important;
  }

  body.printing-inbox-list .page,
  body.printing-inbox-list .section,
  body.printing-inbox-list .inbox-layout,
  body.printing-inbox-list .inbox-list {
    display: block;
    width: 100%;
    max-height: none;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  body.printing-inbox-list .inbox-row {
    break-inside: avoid;
    margin-bottom: 8px;
    border: 1px solid #cfd7dc;
  }
}
