:root {
  --navy: #0d1726;
  --navy-2: #132338;
  --steel: #52606f;
  --line: #d9e1ea;
  --panel: #f4f7fa;
  --white: #ffffff;
  --red: #d7282f;
  --blue: #1f6feb;
  --sky: #e9f2ff;
  --shadow: 0 24px 70px rgba(13, 23, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.demo-bar {
  padding: 0.55rem 1rem;
  color: var(--white);
  background: var(--navy);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
}

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

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

.brand-text {
  display: grid;
  line-height: 1.08;
}

.brand-text strong {
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  letter-spacing: 0;
}

.brand-text small {
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.4rem);
}

.site-nav a,
.header-cta {
  font-weight: 800;
  text-decoration: none;
}

.site-nav a {
  color: var(--steel);
}

.site-nav a:hover {
  color: var(--navy);
}

.header-cta {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: center;
  min-height: calc(100vh - 7rem);
  padding: clamp(3rem, 7vw, 6.5rem) clamp(1rem, 5vw, 5rem);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(13, 23, 38, 0.98), rgba(19, 35, 56, 0.92)),
    radial-gradient(circle at 80% 20%, rgba(31, 111, 235, 0.28), transparent 34%);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.gallery-section .eyebrow,
.why-section .eyebrow {
  color: #ff6b70;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  max-width: 15ch;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 46rem;
  color: #d8e2ef;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0.85rem 1.05rem;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(215, 40, 47, 0.28);
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--navy);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 45rem;
  margin-top: 2rem;
}

.trust-points span {
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #f4f8ff;
  font-weight: 800;
}

.hero-card {
  position: relative;
}

.hero-card img {
  width: 100%;
  height: min(66vh, 43rem);
  min-height: 28rem;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-info {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  width: min(24rem, calc(100% - 2.4rem));
  padding: 1rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
}

.quick-info span,
.quick-info a {
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 800;
}

.quick-info strong {
  display: block;
  font-size: 1.1rem;
}

.section {
  padding: clamp(3.8rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.8fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading .eyebrow,
.section-heading h2 {
  grid-column: 1;
}

.section-heading p:last-child {
  grid-column: 2;
  color: var(--steel);
  font-size: 1.05rem;
}

.section-kicker {
  margin-bottom: 1.4rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  background: var(--panel);
}

.about-copy {
  color: var(--steel);
  font-size: 1.05rem;
}

.stat-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat-row div {
  padding: 1.2rem;
  background: var(--white);
}

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

.stat-row strong {
  font-size: 1.45rem;
}

.stat-row span {
  color: var(--steel);
  font-weight: 700;
}

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

.service-card {
  min-height: 16rem;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(13, 23, 38, 0.08);
}

.service-card span {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1.2rem;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  font-weight: 900;
}

.service-card p {
  color: var(--steel);
  margin-bottom: 0;
}

.fleet-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  background: var(--sky);
}

.fleet-copy p {
  max-width: 48rem;
  color: var(--steel);
  font-size: 1.05rem;
}

.fleet-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(13, 23, 38, 0.08);
}

.fleet-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1rem 0;
}

.fleet-list span,
.fleet-list a {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--navy);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.fleet-list a:hover {
  color: var(--blue);
  border-color: rgba(31, 111, 235, 0.45);
}

.fleet-panel p {
  color: var(--steel);
  margin-bottom: 0;
}

.gallery-section,
.why-section {
  color: var(--white);
  background: var(--navy);
}

.gallery-section .section-heading p:last-child {
  color: #cfdae8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.gallery-card img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

.gallery-card div {
  min-height: 8.5rem;
  padding: 1rem;
  color: var(--navy);
}

.gallery-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--red);
  font-weight: 900;
}

.gallery-card p {
  margin-bottom: 0;
  color: var(--steel);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(8rem, 1fr));
  gap: 0.75rem;
}

.why-grid div {
  min-height: 8rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #eef5ff;
  font-weight: 900;
}

.hours-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  background: var(--panel);
}

.hours-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(13, 23, 38, 0.08);
}

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--line);
}

.hours-card div:last-child {
  border-bottom: 0;
}

.hours-card span {
  color: var(--steel);
  font-weight: 800;
}

.directions-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
}

address {
  font-style: normal;
  font-size: 1.05rem;
}

.directions-content p,
.directions-content address {
  color: var(--steel);
}

.directions-content address strong {
  color: var(--navy);
}

.map-card {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(31, 111, 235, 0.16), rgba(215, 40, 47, 0.12)),
    #eef3f8;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-grid {
  position: absolute;
  inset: -2rem;
  background-image:
    linear-gradient(rgba(13, 23, 38, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 23, 38, 0.12) 1px, transparent 1px);
  background-size: 4rem 4rem;
  transform: rotate(-7deg);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(22rem, calc(100% - 2rem));
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(13, 23, 38, 0.16);
  transform: translate(-50%, -50%);
}

.map-pin strong,
.map-pin span,
.map-pin a {
  display: block;
}

.map-pin span {
  color: var(--steel);
  margin-bottom: 0.7rem;
}

.map-pin a {
  color: var(--blue);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  color: var(--white);
  background: var(--navy-2);
}

.contact-intro p {
  color: #d8e2ef;
}

.contact-options {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.contact-options a {
  color: var(--white);
  font-weight: 900;
}

.estimate-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  color: var(--navy);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9d3df;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: var(--navy);
  background: #fbfdff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--blue);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr;
  gap: 1.2rem;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 5vw, 5rem);
  color: #cdd7e5;
  background: #080f19;
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

.site-footer span,
.site-footer a {
  display: block;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 1rem;
}

.footer-disclaimer,
.footer-credit {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
    gap: 0.28rem;
    width: 2.8rem;
    height: 2.8rem;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--navy);
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open a {
    padding: 0.75rem 0;
  }

  .hero,
  .about-section,
  .fleet-section,
  .hours-section,
  .directions-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 15vw, 5.4rem);
  }

  .section-heading {
    display: block;
  }

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

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

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand-text strong {
    font-size: 1.08rem;
  }

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

  .hero-card img {
    height: 25rem;
    min-height: 25rem;
  }

  .quick-info {
    display: grid;
  }

  .trust-points,
  .service-grid,
  .gallery-grid,
  .why-grid,
  .stat-row,
  .fleet-list,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hours-card div {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .site-footer nav {
    grid-template-columns: 1fr;
  }
}
