:root {
  --navy: #0b2b45;
  --navy-2: #123c5c;
  --blue: #1f6794;
  --blue-soft: #eaf3f8;
  --gold: #c79a3b;
  --gold-soft: #f5eddc;
  --ink: #17212b;
  --muted: #5f6b76;
  --line: #d9e1e7;
  --paper: #ffffff;
  --wash: #f6f8fa;
  --success: #1b6b4a;
  --shadow: 0 18px 50px rgba(11, 43, 69, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  background: #fff;
  color: #000;
  padding: 10px 14px;
  z-index: 9999;
  border-radius: 8px;
}

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

.section-pad {
  padding: 78px 0;
}

.section-pad-small {
  padding: 50px 0;
}

.section-muted {
  background: var(--wash);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 225, 231, 0.85);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  border-radius: 11px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  box-shadow: 0 7px 18px rgba(11, 43, 69, 0.2);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 15px;
  letter-spacing: -0.01em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  position: fixed;
  inset: 76px 0 auto 0;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 15px 30px rgba(11, 43, 69, 0.08);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  padding: 10px 8px;
  color: #263643;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 23px;
  height: 2px;
  background: var(--navy);
  border-radius: 99px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 0 22px;
  border: 1px solid var(--navy);
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(11, 43, 69, 0.18);
  background: var(--navy-2);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px !important;
  color: #fff !important;
}

.button-secondary {
  background: #fff;
  color: var(--navy);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--blue-soft);
}

.button-light {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.button-light:hover,
.button-light:focus-visible {
  background: #eef5f8;
}

.button-full {
  width: 100%;
}

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

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 0%, rgba(31, 103, 148, 0.14), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f9fbfc 100%);
}

.hero-grid,
.split-grid,
.request-grid {
  display: grid;
  gap: 44px;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow-icon {
  color: var(--gold);
}

.hero h1,
.section-heading h2,
.content-stack h2,
.request-copy h2,
.service-area h2 {
  margin: 14px 0 18px;
  font-family: "Source Serif 4", Georgia, serif;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.hero h1 {
  font-size: clamp(2.55rem, 10vw, 4.6rem);
  max-width: 820px;
}

.hero-lede,
.section-heading p,
.content-stack > p,
.request-copy > p,
.service-area p {
  color: var(--muted);
  font-size: 16px;
}

.hero-lede {
  max-width: 680px;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 30px 0 24px;
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #43515d;
  font-size: 13px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.photo-placeholder {
  min-height: 280px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 30px;
  border: 1px solid #b8cad6;
  color: #fff;
  background:
    linear-gradient(rgba(11, 43, 69, 0.36), rgba(11, 43, 69, 0.48)),
    repeating-linear-gradient(135deg, #7893a6 0 16px, #8da5b4 16px 32px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.photo-placeholder span {
  font-weight: 800;
  letter-spacing: 0.13em;
}

.photo-placeholder small {
  margin-top: 8px;
  opacity: 0.9;
  font-size: 12px;
}

.photo-hero {
  min-height: 430px;
  border-radius: 26px 26px 26px 8px;
}

.hero-card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -24px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-card-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  color: #fff;
  background: var(--success);
  border-radius: 50%;
  font-weight: 800;
}

.hero-card strong,
.hero-card small {
  display: block;
}

.hero-card strong {
  color: var(--navy);
  font-size: 14px;
}

.hero-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.trust-strip {
  background: var(--navy);
  color: #fff;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.trust-strip-grid > div {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.trust-strip-grid strong {
  font-size: 14px;
}

.trust-strip-grid span {
  margin-top: 4px;
  color: #c9d7e1;
  font-size: 11px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.compact {
  max-width: 600px;
}

.section-heading h2,
.content-stack h2,
.request-copy h2,
.service-area h2 {
  font-size: clamp(2rem, 7vw, 3.3rem);
}

.service-grid,
.steps-grid,
.photo-band-grid {
  display: grid;
  gap: 16px;
}

.service-card,
.step-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(11, 43, 69, 0.05);
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 13px;
  color: var(--navy);
  background: var(--blue-soft);
  font-weight: 800;
  font-size: 20px;
}

.service-card h3,
.step-card h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 18px;
}

.service-card p,
.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.photo-tall {
  min-height: 440px;
  border-radius: 8px 26px 26px 26px;
}

.content-stack {
  align-self: center;
}

.feature-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.feature-check {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: var(--success);
  background: #e7f3ed;
  border-radius: 50%;
  font-weight: 800;
}

.feature-item strong {
  color: var(--navy);
  font-size: 15px;
}

.feature-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.step-card {
  position: relative;
  padding-top: 34px;
}

.step-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.photo-band {
  padding: 0 0 78px;
}

.photo-wide {
  min-height: 230px;
  border-radius: var(--radius-sm);
}

.section-request {
  color: #fff;
  background:
    radial-gradient(circle at 100% 100%, rgba(31, 103, 148, 0.42), transparent 34%),
    var(--navy);
}

.request-copy h2,
.eyebrow-light {
  color: #fff;
}

.request-copy > p {
  color: #c8d5de;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 380px;
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--navy);
  background: #fff;
}

.contact-card small,
.contact-card a {
  display: block;
}

.contact-card small {
  color: #c8d5de;
}

.contact-card a {
  margin-top: 3px;
  color: #fff;
  text-decoration: none;
  font-size: 21px;
  font-weight: 800;
}

.form-note {
  margin-top: 24px !important;
  font-size: 12px !important;
}

.ride-form {
  padding: 25px;
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.form-row {
  display: grid;
  gap: 16px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #30404d;
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #cfd9e0;
  border-radius: 9px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31, 103, 148, 0.12);
}

.field textarea {
  resize: vertical;
}

.ride-form .button {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.form-status {
  min-height: 22px;
  margin: 11px 0 0;
  color: var(--success);
  font-size: 13px;
  font-weight: 700;
}

.form-status.error {
  color: #a12626;
}

.service-area-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.service-area h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 6vw, 2.6rem);
}

.service-area p {
  margin: 0;
}

.site-footer {
  padding: 60px 0 24px;
  color: #d7e0e7;
  background: #071d2e;
}

.footer-grid {
  display: grid;
  gap: 34px;
}

.footer-brand .brand-copy strong,
.footer-brand .brand-copy small {
  color: #fff;
}

.footer-grid p {
  max-width: 430px;
  color: #aebdca;
  font-size: 13px;
}

.footer-grid h3 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-grid > div:nth-child(2),
.footer-grid > div:nth-child(3) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid > div:nth-child(2) a,
.footer-grid > div:nth-child(3) a,
.footer-grid > div:nth-child(3) span {
  margin-bottom: 8px;
  color: #b8c6d1;
  text-decoration: none;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8398a8;
  font-size: 11px;
}

@media (min-width: 700px) {
  .container {
    width: min(100% - 52px, var(--container));
  }

  .section-pad {
    padding: 96px 0;
  }

  .trust-points {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 24px;
  }

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

  .trust-strip-grid > div {
    padding: 22px 24px;
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-strip-grid > div:nth-child(2n) {
    border-right: 0;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .site-nav a {
    padding: 8px 0;
    font-size: 12px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
    align-items: center;
    gap: 64px;
  }

  .hero {
    padding-top: 82px;
    padding-bottom: 100px;
  }

  .photo-hero {
    min-height: 570px;
  }

  .hero-card {
    left: -38px;
    right: 36px;
  }

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

  .trust-strip-grid > div:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-strip-grid > div:last-child {
    border-right: 0;
  }

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

  .split-grid {
    grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
    gap: 76px;
    align-items: center;
  }

  .photo-tall {
    min-height: 620px;
  }

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

  .request-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    gap: 72px;
    align-items: start;
  }

  .ride-form {
    padding: 32px;
  }

  .service-area-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .service-area-inner > div {
    max-width: 760px;
  }
}

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