:root {
  --ink: #101214;
  --panel: #ffffff;
  --ice: #d9f4ff;
  --ice-strong: #52c9e8;
  --steel: #6b747c;
  --frost: #f4fbfd;
  --lime: #b8e45a;
  --line: rgba(16, 18, 20, 0.14);
  --shadow: 0 18px 45px rgba(4, 20, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f9fcfd;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px clamp(16px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 58px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--steel);
  font-size: 0.76rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  max-width: 100%;
}

.nav a,
.phone-pill,
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.nav a {
  padding: 0 13px;
  color: #263238;
}

.nav a:hover,
.nav a.is-active {
  background: var(--frost);
}

.phone-pill {
  padding: 0 16px;
  color: #081113;
  background: var(--lime);
  box-shadow: 0 10px 24px rgba(101, 126, 26, 0.18);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #10252c;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 14, 18, 0.9), rgba(6, 14, 18, 0.52) 48%, rgba(6, 14, 18, 0.78)),
    url("/assets/images/ice-machine-bin.webp") center / cover;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.72fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero-copy {
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--ice);
  font-weight: 800;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(2.6rem, 7vw, 6.8rem);
  line-height: 0.92;
  overflow-wrap: anywhere;
}

.hero-copy p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  border: 0;
  cursor: pointer;
  padding: 0 18px;
  font-size: 0.98rem;
}

.btn-primary {
  color: #061013;
  background: var(--lime);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.btn-dark {
  color: #fff;
  background: var(--ink);
}

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.request-panel,
.panel,
.tile,
.equipment-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.request-panel {
  padding: clamp(18px, 3vw, 28px);
}

.panel {
  padding: clamp(20px, 4vw, 34px);
}

.request-panel h2,
.panel h2 {
  margin: 0 0 6px;
}

.request-panel p,
.panel p {
  margin-top: 0;
  color: #4f5b63;
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: #29343a;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(16, 18, 20, 0.2);
  border-radius: 7px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.trap {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.trap input {
  width: 1px;
  min-height: 1px;
  padding: 0;
  border: 0;
}

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

.section.alt {
  background: #eef9fc;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.section-head h2,
.page-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.section-head p,
.page-copy p {
  margin: 0;
  color: #53626a;
  font-size: 1.05rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.stat {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(2, 25, 36, 0.08);
}

.stat strong {
  display: block;
  font-size: 1.32rem;
}

.stat span {
  color: var(--steel);
}

.equipment-grid,
.tile-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.location-grid.compact {
  grid-template-columns: repeat(4, 1fr);
}

.equipment-card {
  overflow: hidden;
}

.equipment-card img {
  width: 100%;
  aspect-ratio: 1.38;
  object-fit: cover;
  background: #eef2f4;
}

.equipment-card div,
.tile {
  padding: 18px;
}

.equipment-card h3,
.tile h3,
.faq h3 {
  margin: 0 0 8px;
}

.location-tile h3 a {
  text-decoration: none;
}

.location-tile h3 a:hover {
  text-decoration: underline;
}

.equipment-card p,
.tile p,
.faq p {
  margin: 0;
  color: #53626a;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #06313c;
  background: var(--ice);
  font-size: 0.78rem;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.check-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.check-list li {
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(184, 228, 90, 0.22);
}

.location-photo {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(4, 20, 28, 0.12);
}

.town-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.town-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
}

.page-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 14, 18, 0.9), rgba(6, 14, 18, 0.62)),
    url("/assets/images/modular-ice-cuber.webp") center / cover;
  padding: clamp(72px, 12vw, 140px) 0 clamp(44px, 7vw, 72px);
}

.page-hero p {
  max-width: 730px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

.page-copy {
  display: grid;
  gap: 24px;
}

.notice {
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 800;
}

.notice.success {
  color: #123200;
  background: #ecffd0;
}

.notice.error {
  color: #4c0d0d;
  background: #ffe7e7;
}

.footer {
  color: #dce8ec;
  background: #0d1113;
  padding: 48px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.6fr 0.6fr;
  gap: 24px;
}

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

.footer a {
  color: #fff;
}

.footer-logo {
  width: 44px;
  height: auto;
  margin-bottom: 10px;
}

.fine-print {
  width: min(1160px, calc(100% - 32px));
  margin: 28px auto 0;
  color: #9aabb2;
  font-size: 0.88rem;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    overflow-x: visible;
    padding-bottom: 2px;
  }

  .hero .wrap,
  .split,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .stats,
  .equipment-grid,
  .tile-grid,
  .faq-grid,
  .location-grid,
  .location-grid.compact,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
    padding: 8px 12px;
  }

  .brand small {
    display: none;
  }

  .phone-pill {
    padding: 0 10px;
    font-size: 0.88rem;
  }

  .nav a {
    flex: 1 1 auto;
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.88rem;
  }

  .hero .wrap {
    width: min(100% - 24px, 1160px);
    padding-top: 34px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 14vw, 4rem);
  }

  .form-grid,
  .stats,
  .equipment-grid,
  .tile-grid,
  .faq-grid,
  .location-grid,
  .location-grid.compact,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
