:root {
  --ink: #101820;
  --muted: #5f6f7c;
  --line: #d9e3e9;
  --paper: #ffffff;
  --mist: #f4f8fb;
  --navy: #143f5c;
  --blue: #1d6ea5;
  --teal: #14a38b;
  --gold: #f2b84b;
  --rose: #c95d63;
  --shadow: 0 18px 50px rgba(16, 24, 32, 0.12);
  --media-height: 546px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

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

.topbar {
  background: var(--ink);
  color: #f7fbfd;
  font-size: 0.86rem;
}

.topbar-inner,
.nav-inner,
.section,
.footer-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.topbar a {
  color: #ffffff;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 227, 233, 0.85);
  backdrop-filter: blur(16px);
}

.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 190px;
  height: 64px;
  object-fit: contain;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(29, 110, 165, 0.26);
}

.brand span {
  display: block;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: #2d3c46;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px 13px;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: #e9f4f8;
}

.nav-links .nav-cta {
  margin-left: 6px;
  color: #071116;
  background: var(--gold);
  box-shadow: 0 10px 22px rgba(242, 184, 75, 0.24);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  color: #071116;
  background: #ffc85c;
}

.nav-toggle {
  display: none;
  min-width: 68px;
  height: 52px;
  border: 0;
  background: transparent;
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  font-size: 1.08rem;
  font-weight: 800;
  padding: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #071116;
  background: var(--gold);
  box-shadow: 0 14px 26px rgba(242, 184, 75, 0.28);
}

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

.btn-ghost {
  color: var(--navy);
  background: white;
  border-color: var(--line);
}

.hero {
  min-height: calc(100vh - 116px);
  display: grid;
  align-items: end;
  color: white;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.85), rgba(20, 63, 92, 0.58) 52%, rgba(16, 24, 32, 0.2)),
    url("assets/van-hero.jpg") center/cover;
}

.hero-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dcfff8;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--gold);
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 18px 0 18px;
  line-height: 0.92;
  letter-spacing: 0;
  font-size: clamp(2rem, 10vw, 3rem);
  word-break: break-word;
}

.hero p {
  max-width: 640px;
  margin: 0 0 28px;
  color: #edf7fa;
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  width: min(1140px, calc(100% - 40px));
  margin: 36px auto -52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.hero-stat {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--navy);
}

.hero-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 5px;
}

.section {
  padding: 96px 0;
}

.section.tight {
  padding-top: 58px;
}

.section-kicker {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-head {
  display: block;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2,
.split-copy h2,
.cta h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p,
.split-copy p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.75;
  margin: 14px 0 0;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  min-height: 100%;
  transform-origin: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  will-change: transform;
}

.card:not(.no-hover):hover {
  transform: translateY(-5px) scale(1.025);
  border-color: rgba(29, 110, 165, 0.28);
  box-shadow: 0 22px 54px rgba(16, 24, 32, 0.14);
}

.card.highlight {
  border-color: transparent;
  background: var(--navy);
  color: white;
}

.card h3 {
  margin: 16px 0 10px;
  font-size: 1.18rem;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.7;
}

.card.highlight p,
.card.highlight li {
  color: #dcecf3;
}

.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 8px;
}

.icon-box.teal {
  background: var(--teal);
}

.icon-box.rose {
  background: var(--rose);
}

.band {
  background: var(--mist);
}

.values-section .section {
  padding: 76px 0;
}

.values-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.values-intro h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.values-intro p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.values-grid .card {
  display: grid;
  grid-template-rows: 46px auto 1fr;
  align-content: start;
  gap: 0;
  min-height: 250px;
  padding: 30px;
  border-color: #cfdae1;
}

.values-grid .card h3 {
  margin: 18px 0 12px;
}

.values-grid .card p {
  max-width: 31ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 48px;
  align-items: start;
}

.split-media {
  position: relative;
  height: var(--media-height);
  min-height: var(--media-height);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: var(--media-height);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.check-list li {
  display: flex;
  gap: 11px;
  color: #30424f;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  flex: 0 0 18px;
  height: 18px;
  margin-top: 3px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px white;
}

.page-hero {
  height: var(--media-height);
  min-height: var(--media-height);
  display: grid;
  align-items: center;
  color: white;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.84), rgba(20, 63, 92, 0.62)),
    url("assets/van-side.jpg") center/cover;
}

.page-hero .section {
  padding: 58px 0;
}

.page-hero h1 {
  max-width: 1080px;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.04;
}

.page-hero p {
  max-width: 920px;
  color: #edf7fa;
  font-size: 1.14rem;
  line-height: 1.7;
}

.map-frame {
  width: 100%;
  height: var(--media-height);
  border: 0;
  border-radius: 6px;
}

.service-row {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row h3 {
  margin: 0;
  font-size: 1.45rem;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.coverage-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gallery-grid {
  display: grid;
  gap: 18px;
}

.gallery-preview {
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 220px;
}

.gallery-full {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item::after {
  content: "View photo";
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 8px 12px;
  color: white;
  background: rgba(16, 24, 32, 0.72);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(16, 24, 32, 0.18);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-actions {
  margin-top: 24px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(16, 24, 32, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1100px, calc(100vw - 64px));
  max-height: calc(100vh - 120px);
  border-radius: 8px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  font: inherit;
  font-size: 1.6rem;
  cursor: pointer;
}

.coverage-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.coverage-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.coverage-item span {
  color: var(--muted);
  line-height: 1.6;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: start;
}

.hiring-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.hiring-card {
  min-height: 100%;
}

.hiring-card .check-list {
  margin-bottom: 0;
}

.application-card {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
}

.application-card h2 {
  margin: 0 0 42px;
  text-align: center;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.application-form {
  gap: 24px;
}

.application-form input,
.application-form select,
.application-form textarea {
  min-height: 64px;
  border-radius: 0;
  font-size: 1.05rem;
}

.application-form label {
  gap: 14px;
  color: #747b84;
  font-size: 1.12rem;
}

.application-form textarea {
  min-height: 260px;
  border-radius: 8px;
}

.btn-apply {
  min-height: 68px;
  color: #071116;
  background: var(--gold);
  font-size: 1.12rem;
}

.btn-apply:hover {
  background: #ffc85c;
}

.booking-card {
  padding: clamp(28px, 5vw, 48px);
}

.booking-card h2 {
  margin: 0 0 38px;
  text-align: center;
  font-size: clamp(2rem, 5vw, 3.65rem);
  line-height: 1;
}

.booking-form {
  gap: 22px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  display: block;
  width: 100%;
  height: 62px;
  min-height: 62px;
  padding: 0 14px;
  border-radius: 0;
  font-size: 1.02rem;
}

.booking-form select {
  -webkit-appearance: none;
  appearance: none;
  line-height: 62px;
  padding-right: 48px;
  background-image: linear-gradient(45deg, transparent 50%, #aeb4bb 50%), linear-gradient(135deg, #aeb4bb 50%, transparent 50%);
  background-position: calc(100% - 24px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.date-field {
  position: relative;
  display: block;
  width: 100%;
}

.date-field input {
  position: relative;
  width: 100%;
  height: 62px;
  min-height: 62px;
  padding: 0 14px;
  line-height: 62px;
  color: var(--ink);
  background: white;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.date-field input::-webkit-date-and-time-value {
  text-align: left;
  line-height: 62px;
}

.date-field input::-webkit-calendar-picker-indicator {
  opacity: 0.58;
}

.booking-form label {
  gap: 14px;
  color: #747b84;
  font-size: 1.08rem;
}

.booking-form textarea {
  height: auto;
  min-height: 220px;
  border-radius: 8px;
  padding: 14px;
}

.btn-book {
  min-height: 66px;
  color: white;
  background: var(--blue);
  font-size: 1.1rem;
}

.btn-book:hover {
  background: #1681c7;
}

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

.contact-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.contact-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 7px;
}

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

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

label {
  display: grid;
  gap: 7px;
  color: #344550;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: white;
  font: inherit;
}

::placeholder {
  color: #aeb4bb;
  opacity: 1;
}

select:invalid,
.placeholder-select {
  color: #aeb4bb;
}

.placeholder-select.is-selected {
  color: var(--ink);
}

select option {
  color: var(--ink);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-status {
  min-height: 22px;
  color: var(--navy);
  font-weight: 800;
}

.cta {
  color: white;
  background:
    linear-gradient(120deg, rgba(20, 63, 92, 0.96), rgba(20, 163, 139, 0.82)),
    url("assets/van-interior.jpg") center/cover;
}

.cta .section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 70px 0;
}

.cta p {
  max-width: 620px;
  color: #eaf8f6;
  line-height: 1.7;
}

.site-footer {
  color: #dce9ef;
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 36px;
  padding: 54px 0;
}

.site-footer h3,
.site-footer h4 {
  color: white;
  margin: 0 0 14px;
}

.site-footer p,
.site-footer li {
  color: #b7c7cf;
  line-height: 1.7;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-pages {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-hiring {
  grid-column: 1;
  justify-self: start;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  color: #a9bbc4;
  font-size: 0.88rem;
  text-align: center;
}

.footer-bottom a {
  color: white;
  font-weight: 800;
}

.footer-hiring a {
  display: inline;
  width: auto;
  min-height: 0;
  padding: 0;
  color: var(--gold);
  background: transparent;
  border-radius: 0;
  font-weight: inherit;
  white-space: nowrap;
}

.footer-separator {
  color: #718894;
}

@media (max-width: 900px) {
  .footer-inner > :first-child {
    display: none;
  }

  .footer-inner > div {
    text-align: left;
  }

  .footer-inner ul {
    justify-items: start;
  }

  .card,
  .gallery-item,
  .btn {
    -webkit-tap-highlight-color: transparent;
  }

  .btn:hover,
  .card:hover,
  .card:not(.no-hover):hover,
  .gallery-item:hover {
    transform: none;
  }

  .card,
  .gallery-item,
  .gallery-item img {
    transition: none;
  }

  .gallery-item:hover img,
  .gallery-item:hover::after {
    transform: none;
    opacity: 0;
  }

  .footer-pages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    max-width: 320px;
    margin: 0 auto;
    text-align: left;
  }

  .footer-hiring {
    grid-column: 1;
    justify-self: start;
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 8px 0;
  }

  .topbar-group {
    gap: 10px 14px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    background: white;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 72px;
  }

  .hero-panel,
  .grid.three,
  .grid.two,
  .split,
  .gallery-preview,
  .gallery-full,
  .coverage-map,
  .hiring-layout,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .gallery-item-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hero-panel {
    margin-bottom: 20px;
  }

  .hero-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 68px 0;
  }

  .section-head,
  .cta .section {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .split-media {
    height: 442px;
    min-height: 442px;
  }

  .split-media img {
    height: 100%;
    min-height: 442px;
  }

  .page-hero,
  .map-frame {
    min-height: 442px;
    height: 442px;
  }
}

@media (max-width: 620px) {
  .topbar {
    font-size: 0.8rem;
  }

  .topbar-inner {
    gap: 6px;
    padding: 6px 0;
  }

  .topbar-group {
    gap: 8px 12px;
  }

  .topbar-inner,
  .nav-inner,
  .section,
  .footer-inner,
  .hero-inner,
  .hero-panel {
    width: min(100% - 28px, 1140px);
  }

  .hero-panel {
    margin-bottom: 14px;
  }

  .brand img {
    width: 150px;
    height: 54px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 16vw, 4.2rem);
  }

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

  .split-media {
    height: 364px;
    min-height: 364px;
  }

  .split-media img {
    height: 100%;
    min-height: 364px;
  }

  .page-hero,
  .map-frame {
    min-height: 416px;
    height: auto;
  }

  .btn {
    width: 100%;
  }

  .mobile-title {
  display: none;
}

@media (max-width: 620px) {
  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: block;
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.1;
  }
}
.floating-label {
  position: relative;
  display: block;
}

.floating-label span {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aeb4bb;
  pointer-events: none;
  transition: 0.2s ease;
}

.floating-label input:focus + span,
.floating-label input:valid + span {
  top: 6px;
  font-size: 0.75rem;
  color: var(--blue);
}
}
