:root {
  --charcoal: #171717;
  --charcoal-2: #202020;
  --charcoal-3: #2a2a2a;
  --silver: #d9d9d9;
  --silver-soft: #f1f1f1;
  --muted: #a8a8a8;
  --blue: #2e6f9f;
  --blue-dark: #23577d;
  --white: #ffffff;
  --black: #050505;
  --line-dark: rgba(217, 217, 217, 0.18);
  --line-light: rgba(23, 23, 23, 0.12);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  --font-heading: "Bebas Neue", Impact, sans-serif;
  --font-label: "Oswald", Arial Narrow, sans-serif;
  --font-body: "Roboto Condensed", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  min-width: 0;
}

button,
a {
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-180%);
  background: var(--blue);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-family: var(--font-label);
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.container {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.section-dark,
.section-light {
  padding: 56px 0;
}

.section-dark {
  background: var(--charcoal);
  color: var(--silver);
}

.section-light {
  background: var(--silver-soft);
  color: var(--charcoal);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(23, 23, 23, 0.97);
  border-bottom: 1px solid var(--line-dark);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 10px 0;
}

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

.logo-crop {
  display: block;
  overflow: visible;
  background: transparent;
}

.logo-crop img {
  filter: brightness(0) invert(1);
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand-logo {
  width: min(48vw, 240px);
  aspect-ratio: 320 / 95;
  height: auto;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: center;
  background: transparent;
  border: 1px solid var(--line-dark);
  color: var(--silver);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 24px;
  height: 2px;
  background: var(--silver);
}

.site-nav {
  display: none;
  grid-column: 1 / -1;
  padding: 14px 0;
  border-top: 1px solid var(--line-dark);
}

.site-nav.is-open {
  display: grid;
  gap: 8px;
}

.site-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: var(--silver);
  font-family: var(--font-label);
  font-size: 1.05rem;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
  background: rgba(46, 111, 159, 0.2);
}

.header-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  padding: 12px 18px;
  color: var(--white);
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--blue);
  border-color: var(--blue);
}

.button-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.button-secondary {
  background: transparent;
  border-color: var(--silver);
  color: var(--silver);
}

.button-secondary:hover {
  background: var(--silver);
  color: var(--charcoal);
}

.button-secondary-dark {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.button-secondary-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}

.button-light {
  background: var(--silver);
  border-color: var(--silver);
  color: var(--charcoal);
}

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

.button-large {
  min-height: 56px;
  padding: 15px 22px;
  font-size: 1.12rem;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 38px;
  background: url('assets/home-hero-optimized.jpg') center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.72) 48%, rgba(0, 0, 0, 0.92) 100%),
    rgba(0, 0, 0, 0.56);
  z-index: 0;
}

.hero::after {
  content: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.hero-copy {
  display: grid;
  gap: 16px;
  align-content: start;
  text-align: center;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--blue);
  font-family: var(--font-label);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.6rem, 14vw, 6.6rem);
}

h2 {
  font-size: clamp(3.1rem, 11vw, 5.3rem);
}

h3 {
  font-size: clamp(1.7rem, 7vw, 2.3rem);
}

p {
  margin: 0;
}

.hero-subtitle {
  max-width: 620px;
  margin: 0 auto;
  color: var(--white);
  font-family: var(--font-label);
  font-size: clamp(1.25rem, 4.8vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.google-rating-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 10px auto 0;
  padding: 0;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 180ms ease;
}

.google-rating-inline:hover {
  opacity: 1;
}

.rating-stars {
  display: inline-flex;
  gap: 2px;
}

.rating-stars svg {
  width: 18px;
  height: 18px;
  fill: #f4b400;
}

.rating-text {
  color: var(--muted);
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rating-chevron {
  display: inline-flex;
  align-items: center;
}

.rating-chevron svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-card,
.quote-form {
  background: var(--charcoal-2);
  color: var(--silver);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.quote-card {
  padding: 18px;
}

.quote-card h2 {
  margin-bottom: 4px;
  font-size: clamp(2.25rem, 10vw, 3.35rem);
  text-align: center;
}

.form-subheader {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
  text-align: center;
}

.quote-form {
  display: grid;
  gap: 10px;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.quote-form-wide {
  width: 100%;
  max-width: 100%;
  padding: 22px;
  border: 1px solid var(--line-light);
  background: var(--white);
  color: var(--charcoal);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.form-field {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.form-field label {
  color: inherit;
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
}

.option-field {
  margin: 0;
  padding: 10px 12px 12px;
  border: 2px solid rgba(217, 217, 217, 0.24);
}

.option-field legend {
  padding: 0 4px;
  color: inherit;
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
}

.field-helper {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.35;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  color: var(--silver);
  font-weight: 700;
  cursor: pointer;
}

.checkbox-option input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.form-field input,
.form-field select,
.form-field textarea {
  min-height: 48px;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  border: 2px solid rgba(217, 217, 217, 0.24);
  background: var(--white);
  color: var(--charcoal);
  padding: 11px 12px;
  border-radius: 0;
}

.form-field .checkbox-option {
  color: var(--silver);
  font-family: inherit;
  text-transform: none;
}

.form-field .checkbox-option input {
  min-height: 18px;
  width: 18px;
  min-width: 18px;
  height: 18px;
  padding: 0;
  border-radius: 3px;
}

.form-field input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
}

.quote-form-wide .form-field input,
.quote-form-wide .form-field select,
.quote-form-wide .form-field textarea,
.quote-form-wide .option-field {
  border-color: rgba(23, 23, 23, 0.24);
}

.form-field textarea {
  resize: vertical;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea,
.option-field.has-error {
  border-color: var(--blue);
}

.field-error {
  color: var(--silver);
  font-size: 0.95rem;
}

.quote-form-wide .field-error {
  color: var(--blue-dark);
}

.form-message {
  min-height: 28px;
  color: var(--silver);
  font-weight: 700;
}

.quote-form-wide .form-message {
  color: var(--blue-dark);
}

.trust-strip {
  background: var(--blue);
  color: var(--white);
  padding: 14px 0;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.trust-grid div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-grid div::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.5l2.5 2.5 4.5-5' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
  flex-shrink: 0;
}

.services-snapshot {
  text-align: center;
}

.services-snapshot-grid {
  display: grid;
  gap: 32px;
}

.services-snapshot-copy p {
  margin: 0 auto 20px;
  font-size: 1.12rem;
}

.services-snapshot-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.services-snapshot-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}


.section-heading {
  margin-bottom: 26px;
  text-align: center;
}

.transport-grid,
.service-grid,
.steps-grid,
.why-grid {
  display: grid;
  gap: 14px;
}

.transport-card,
.step-card,
.service-card,
.payment-box,
.contact-card,
.why-grid div {
  border: 1px solid var(--line-dark);
  background: var(--charcoal-2);
}

.transport-section {
  position: relative;
  overflow: hidden;
}

.transport-card {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, border-color 220ms ease;
}

.transport-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 100%);
  transition: background 220ms ease;
}

.transport-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
}

.transport-card:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.transport-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.4rem, 4vw, 1.7rem);
  color: var(--white);
  text-transform: uppercase;
  border-left: 3px solid var(--blue);
  padding-left: 12px;
}

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

.card-icon {
  width: 32px;
  height: 32px;
  color: var(--blue);
}

.card-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.form-layout,
.split-section,
.contact-grid {
  display: grid;
  gap: 26px;
}

.form-intro {
  display: grid;
  gap: 12px;
}

.callout {
  padding: 14px;
  background: var(--charcoal);
  color: var(--silver);
  font-family: var(--font-label);
  font-weight: 700;
}

.callout a {
  color: var(--white);
}

.steps-grid {
  counter-reset: steps;
  position: relative;
}

.step-card {
  padding: 22px;
  text-align: center;
}

.step-card span {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-label);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

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


.reviews-carousel {
  position: relative;
}

.reviews-track {
  display: grid;
  gap: 20px;
}

.review-card {
  margin: 0;
  padding: 24px;
  background: var(--charcoal);
  border-radius: 8px;
  color: var(--silver);
  display: none;
}

.review-card.is-visible {
  display: block;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: #f4b400;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 14px;
}

.review-card footer {
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.reviews-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  cursor: pointer;
  transition: background 180ms ease;
}

.reviews-btn:hover {
  background: var(--charcoal-2);
}

.reviews-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.reviews-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--silver);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews-page {
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  min-width: 40px;
  text-align: center;
}

.trust-section {
  position: relative;
  text-align: center;
  padding: 80px 0;
  overflow: hidden;
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/treasure island image 3.jpg') center / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.trust-section .narrow {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.trust-section h2 {
  font-size: clamp(2.6rem, 9vw, 4.5rem);
  line-height: 1.08;
  margin-bottom: 20px;
}

.trust-section p:not(.eyebrow) {
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 16px;
}

.contact-section p {
  margin-top: 10px;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  font-style: normal;
  overflow: hidden;
  position: relative;
}

.section-light .contact-card {
  background: var(--charcoal);
  color: var(--silver);
}

.contact-card-inner {
  display: block;
}

.contact-card-info {
  display: grid;
  gap: 12px;
  flex: 1;
}

.contact-headshot {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 84px;
  height: 84px;
  margin: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.contact-card strong {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  display: block;
  padding-right: 104px;
}

.contact-card a {
  color: var(--white);
  font-family: var(--font-label);
  font-size: 1.25rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-card-info > a {
  padding-right: 104px;
}

.contact-card .button-secondary-dark {
  border-color: var(--silver);
  color: var(--silver);
}

.contact-card .button-secondary-dark:hover {
  background: var(--silver);
  color: var(--charcoal);
}

.contact-actions {
  clear: both;
  display: grid;
  gap: 10px;
  width: min(100%, 340px);
  margin: 16px auto 0;
  justify-items: stretch;
}

.site-footer {
  background: var(--black);
  color: var(--silver);
  padding: 38px 0 22px;
  border-top: 1px solid var(--line-dark);
}

.footer-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.footer-logo {
  width: min(100%, 320px);
  aspect-ratio: 320 / 95;
  height: auto;
  margin-bottom: 12px;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 12px;
  align-content: start;
  justify-items: start;
  padding-top: 10px;
}

.footer-heading {
  margin: 0 0 8px;
  color: var(--blue);
  font-family: var(--font-label);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a {
  color: var(--silver);
  font-family: var(--font-label);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-contact span {
  font-size: 0.94rem;
  line-height: 1.45;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.copyright {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  color: var(--muted);
  font-size: 0.95rem;
}

.page-hero {
  padding: 70px 0;
  text-align: center;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.84)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(23, 23, 23, 0) 40%),
    url('assets/services-hero-optimized.jpg') center center / cover no-repeat,
    var(--charcoal);
}

@media (max-width: 700px) {
  body {
    font-size: 17px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .section-dark,
  .section-light {
    padding: 44px 0;
  }

  .header-inner {
    min-height: 64px;
    gap: 8px;
    padding: 8px 0;
  }

  .brand-logo {
    width: min(56vw, 210px);
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .site-nav {
    padding: 8px 0;
  }

  .site-nav.is-open {
    gap: 4px;
  }

  .site-nav a {
    min-height: 44px;
    padding: 8px 10px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .button {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .hero {
    background-image: url('assets/home-hero-lcp-mobile.jpg');
    padding-top: 24px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-copy {
    gap: 12px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 3.7rem);
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 3.5rem);
  }

  h3 {
    font-size: clamp(1.55rem, 7vw, 2.05rem);
  }

  .hero-subtitle {
    font-size: 1.18rem;
  }

  .button-large {
    min-height: 50px;
    padding: 13px 16px;
  }

  .google-rating-inline {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 4px;
    margin-top: 4px;
  }

  .rating-text {
    font-size: 0.82rem;
  }

  .quote-card {
    scroll-margin-top: 124px;
    padding: 16px;
  }

  .quote-card h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .form-subheader {
    font-size: 0.82rem;
  }

  .form-field label,
  .option-field legend {
    font-size: 0.95rem;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 46px;
    padding: 10px 12px;
  }

  .trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 8px;
    max-width: 330px;
  }

  .services-snapshot-grid {
    gap: 22px;
  }

  .services-snapshot-img,
  .services-snapshot-img img {
    border-radius: 8px;
  }

  .transport-card {
    min-height: 154px;
    padding: 18px;
  }

  .review-card,
  .contact-card {
    padding: 18px;
  }

  .contact-headshot {
    top: 18px;
    right: 18px;
    width: 72px;
    height: 72px;
  }

  .contact-card strong {
    padding-right: 88px;
    font-size: 2rem;
  }

  .contact-card-info > a {
    padding-right: 88px;
  }

  .page-hero {
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.84)),
      linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(23, 23, 23, 0) 40%),
      url('assets/services-hero-lcp-mobile.jpg') center center / cover no-repeat,
      var(--charcoal);
    padding: 58px 0;
  }

  .trust-section::before {
    background-image: none;
  }

  .services-page .section-dark,
  .services-page .section-light {
    padding: 52px 0;
  }

  .services-page .page-hero .hero-body {
    font-size: 1rem;
    line-height: 1.55;
  }

  .services-page .page-hero .hero-actions {
    margin-top: 20px;
    margin-bottom: 18px;
  }

  .service-category-card,
  .transport-option-card,
  .customer-card,
  .why-feature-card {
    padding: 22px;
  }
}

.page-hero .narrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero .eyebrow {
  order: 1;
}

.page-hero h1 {
  order: 2;
}

.page-hero .hero-actions {
  order: 3;
  margin-top: 18px;
  margin-bottom: 20px;
}

.page-hero p:not(.eyebrow) {
  order: 4;
}

.page-hero p {
  max-width: 760px;
  margin: 14px auto 0;
  font-size: 1.25rem;
}

.service-card {
  padding: 22px;
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--line-light);
}

.service-card p {
  margin-top: 8px;
}

.copy-stack {
  display: grid;
  gap: 12px;
  font-size: 1.2rem;
}

.pill-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  background: var(--charcoal);
  color: var(--silver);
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
}

.why-grid div {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px;
  color: var(--silver);
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
}

.cta-panel {
  text-align: center;
}

.cta-panel p {
  margin: 12px auto 20px;
  font-size: 1.2rem;
}

.cta-panel .hero-actions {
  margin-left: auto;
  margin-right: auto;
}

.contact-section-dark .contact-card {
  background: var(--charcoal-2);
  color: var(--silver);
}

.mobile-break {
  display: inline;
}

@media (min-width: 560px) {
  .mobile-break {
    display: none;
  }

  .hero-actions,
  .contact-actions {
    grid-template-columns: 1fr 1fr;
  }

  .contact-card-inner {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .contact-headshot {
    position: static;
    width: 120px;
    height: 120px;
    margin: 0;
    flex-shrink: 0;
  }

  .contact-card strong,
  .contact-card-info > a {
    padding-right: 0;
  }

  .transport-grid,
  .steps-grid,
  .service-grid,
  .why-grid,
  .pill-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (min-width: 840px) {
  .section-dark,
  .section-light {
    padding: 78px 0;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 86px;
  }

  .brand-logo {
    width: 280px;
    height: auto;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    grid-column: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
    border-top: 0;
  }

  .site-nav a {
    font-size: 0.98rem;
  }

  .header-actions {
    grid-column: auto;
    grid-template-columns: auto auto;
  }

  .services-snapshot-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
  }

  .services-snapshot-copy {
    text-align: left;
  }

  .services-snapshot-copy p {
    margin: 0 0 20px;
  }

  .hero {
    padding: 70px 0 86px;
    background-position: center center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
    align-items: center;
    gap: 42px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-subtitle,
  .hero-actions,
  .google-rating-inline {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions {
    max-width: 430px;
  }

  .quote-card {
    padding: 22px;
  }

  .quote-card h2 {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .quote-card .quote-form {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px 12px;
  }

  .quote-card .form-field:nth-of-type(5),
  .quote-card .option-field,
  .quote-card .quote-form button,
  .quote-card .form-message {
    grid-column: 1 / -1;
  }

  .quote-card .option-field {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 14px;
  }

  .quote-card .option-field .field-helper,
  .quote-card .option-field .field-error {
    grid-column: 1 / -1;
  }

  .quote-card .checkbox-option {
    min-height: 32px;
  }

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

  .reviews-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }


  .form-layout,
  .split-section,
  .contact-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
    gap: 44px;
  }

  .quote-form-wide {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    padding: 28px;
  }

  .quote-form-wide .form-field-full,
  .quote-form-wide button,
  .quote-form-wide .form-message {
    grid-column: 1 / -1;
  }

  .steps-grid,
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-grid::before {
    content: "";
    position: absolute;
    top: 47px;
    left: calc(16.67%);
    right: calc(16.67%);
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
    z-index: 0;
  }

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

  .footer-grid {
    grid-template-columns: 1.3fr 0.55fr 0.85fr;
    gap: 42px;
  }
}

@media (min-width: 1120px) {
  h1 {
    font-size: 7.2rem;
  }

  .site-nav a {
    padding-inline: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* ── Services Page ── */

.services-page .section-dark,
.services-page .section-light {
  padding: 68px 0;
}

.services-page .section-heading {
  margin-bottom: 36px;
}

.page-hero {
  padding: 96px 0;
}

.page-hero .narrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-page .page-hero .eyebrow {
  order: 1;
}

.services-page .page-hero h1 {
  order: 2;
}

.services-page .page-hero .hero-body {
  order: 3;
  max-width: 680px;
  margin: 16px auto 0;
  font-size: 1.15rem;
  color: var(--silver);
  line-height: 1.65;
}

.services-page .page-hero .hero-actions {
  order: 4;
  margin-top: 28px;
  margin-bottom: 28px;
}

.services-page .page-hero .hero-note {
  order: 5;
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.section-intro {
  max-width: 680px;
  margin: 16px auto 0;
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

.section-intro-dark {
  color: rgba(23, 23, 23, 0.65);
}

.services-page .service-grid {
  gap: 20px;
}

.services-page .service-card {
  padding: 32px;
}

.services-page .service-card p {
  margin-top: 12px;
  line-height: 1.65;
  color: rgba(23, 23, 23, 0.7);
}

.service-category-grid {
  display: grid;
  gap: 20px;
}

.service-category-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 30px;
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid var(--line-light);
}

.service-category-card p {
  color: rgba(23, 23, 23, 0.7);
  line-height: 1.65;
}

.service-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.service-tag-list li {
  padding: 8px 11px;
  background: var(--silver-soft);
  border: 1px solid var(--line-light);
  color: var(--charcoal);
  font-family: var(--font-label);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.transport-options-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.transport-option-card {
  padding: 36px;
  background: var(--charcoal-2);
  border: 1px solid var(--line-dark);
}

.transport-option-card h3 {
  margin-bottom: 16px;
  color: var(--white);
}

.transport-option-card p {
  color: var(--silver);
  line-height: 1.65;
  margin-bottom: 12px;
}

.best-for-label {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue);
  font-size: 0.92rem;
  margin-top: 20px;
  margin-bottom: 8px;
}

.transport-option-card ul {
  margin: 0;
  padding: 0 0 0 20px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.pill-list-wide {
  max-width: 960px;
  margin: 36px auto 0;
}

.pill-list-wide li {
  padding: 16px 20px;
  min-height: 56px;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
}

.services-who-section .section-heading {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.customer-card-grid {
  display: grid;
  gap: 18px;
}

.customer-card {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  color: var(--charcoal);
  text-align: left;
  box-shadow: 0 12px 30px rgba(23, 23, 23, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.customer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 111, 159, 0.42);
  box-shadow: 0 16px 34px rgba(23, 23, 23, 0.1);
}

.customer-card-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
}

.customer-card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customer-card h3 {
  color: var(--charcoal);
  font-size: clamp(1.55rem, 5.5vw, 2rem);
  line-height: 1;
}

.customer-card p {
  color: rgba(23, 23, 23, 0.68);
  line-height: 1.55;
}

.services-page .why-grid div {
  padding: 24px;
  min-height: 84px;
}

.why-grid-balanced {
  gap: 18px;
}

.services-why-section {
  background: var(--charcoal);
}

.services-why-section .container {
  max-width: 1120px;
}

.services-why-heading {
  max-width: 760px;
  margin: 0 auto 42px;
}

.services-why-heading h2 {
  font-size: clamp(3rem, 8vw, 4.8rem);
}

.services-why-heading .section-intro {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(217, 217, 217, 0.78);
}

.why-feature-grid {
  display: grid;
  gap: 18px;
}

.why-feature-card {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(217, 217, 217, 0.14);
  border-radius: 8px;
  color: var(--silver);
  text-align: left;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.why-feature-card:hover {
  transform: translateY(-3px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
  border-color: rgba(46, 111, 159, 0.62);
}

.why-feature-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
}

.why-feature-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-feature-card h3 {
  color: var(--white);
  font-size: clamp(1.55rem, 5.5vw, 2rem);
  line-height: 1;
}

.why-feature-card p {
  max-width: 28rem;
  color: rgba(217, 217, 217, 0.76);
  line-height: 1.55;
}

.services-page .cta-panel {
  padding: 72px 0;
}

@media (min-width: 560px) {
  .customer-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pill-list-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 840px) {
  .services-page .section-dark,
  .services-page .section-light {
    padding: 96px 0;
  }

  .page-hero {
    padding: 120px 0;
  }

  .services-page .service-card {
    padding: 36px;
  }

  .service-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-category-card {
    padding: 36px;
  }

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

  .pill-list-wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .customer-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .customer-card {
    padding: 32px;
  }

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

  .services-why-section {
    padding: 108px 0;
  }

  .services-why-heading {
    margin-bottom: 52px;
  }

  .why-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .why-feature-card {
    padding: 32px;
  }

  .services-page .cta-panel {
    padding: 96px 0;
  }
}
