:root {
  --charcoal: #131820;
  --charcoal-2: #1d2630;
  --steel: #315f7c;
  --steel-light: #dce8ee;
  --green: #9ee52e;
  --orange: #ff7a1a;
  --paper: #f6f8f5;
  --white: #ffffff;
  --muted: #66717c;
  --line: rgba(19, 24, 32, 0.13);
  --shadow: 0 18px 50px rgba(12, 18, 24, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(19, 24, 32, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--charcoal);
  background: var(--green);
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.site-nav .nav-cta {
  margin-left: 6px;
  color: var(--charcoal);
  background: var(--green);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-img {
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 15, 20, 0.88), rgba(11, 15, 20, 0.6) 42%, rgba(11, 15, 20, 0.16)),
    linear-gradient(0deg, rgba(19, 24, 32, 0.78), transparent 34%);
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 84px);
  padding: 70px 0 130px;
  color: var(--white);
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.trust-row,
.dashboard-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

.btn.primary {
  color: var(--charcoal);
  background: var(--green);
  box-shadow: 0 13px 30px rgba(158, 229, 46, 0.26);
}

.btn.secondary {
  color: var(--white);
  background: var(--steel);
}

.trust-row {
  margin-top: 36px;
}

.trust-row span {
  padding: 8px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.info-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.info-band article {
  min-height: 210px;
  padding: clamp(24px, 4vw, 46px);
  background: var(--white);
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  background: var(--charcoal);
  color: var(--green);
  border-radius: var(--radius);
  font-weight: 900;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.split,
.about-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.section-copy,
.booking-intro,
.about-panel,
.contact-panel,
.map-copy,
.dashboard-section > div:first-child {
  max-width: 700px;
}

.notice {
  margin-top: 26px;
  padding: 18px;
  background: #fff4e8;
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article,
.route-card,
.contact-panel,
.about-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(19, 24, 32, 0.06);
}

.service-grid article {
  min-height: 172px;
  padding: 20px;
}

.service-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--charcoal);
  background: var(--steel-light);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 900;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 68px);
  color: var(--white);
  background: var(--charcoal);
}

.booking-section p {
  color: rgba(255, 255, 255, 0.72);
}

.booking-form {
  display: grid;
  gap: 18px;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

legend {
  padding: 0 8px;
  color: var(--green);
  font-weight: 900;
}

label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
}

select[multiple] {
  min-height: 174px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(158, 229, 46, 0.62);
  outline-offset: 2px;
}

.wide,
.preview-grid,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.preview-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.22);
}

.form-status {
  min-height: 26px;
  margin: 0;
  color: var(--green) !important;
  font-weight: 900;
}

.about-contact {
  background: var(--paper);
}

.about-panel,
.contact-panel {
  padding: clamp(24px, 4vw, 42px);
}

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

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

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.43em;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 2px;
}

.call-link {
  display: inline-block;
  margin: 4px 0 24px;
  color: var(--steel);
  font-size: 1.7rem;
  font-weight: 900;
  text-decoration: none;
}

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

.map-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
  padding: clamp(56px, 8vw, 100px) clamp(18px, 5vw, 72px);
  background: var(--charcoal-2);
  color: var(--white);
}

.map-section p {
  color: rgba(255, 255, 255, 0.72);
}

.map-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 42%, rgba(158, 229, 46, 0.28), transparent 22%),
    linear-gradient(135deg, #213544, #111820);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}

.map-pin {
  position: absolute;
  z-index: 2;
  padding: 8px 10px;
  color: var(--charcoal);
  background: var(--green);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
}

.denton { top: 17%; left: 47%; }
.lewisville { top: 42%; left: 52%; }
.dallas { top: 60%; left: 66%; }
.fort-worth { top: 67%; left: 27%; }

.route-line {
  position: absolute;
  height: 4px;
  background: var(--orange);
  transform-origin: left center;
  border-radius: 999px;
}

.line-one {
  top: 46%;
  left: 31%;
  width: 250px;
  transform: rotate(-17deg);
}

.line-two {
  top: 63%;
  left: 38%;
  width: 235px;
  transform: rotate(13deg);
}

.radius-ring {
  position: absolute;
  inset: 17%;
  border: 3px dashed rgba(158, 229, 46, 0.48);
  border-radius: 50%;
}

.dashboard-section {
  background: var(--white);
}

.dashboard-toolbar {
  margin: 26px 0;
}

.filter {
  min-height: 40px;
  padding: 8px 13px;
  color: var(--charcoal);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
}

.filter.active {
  color: var(--charcoal);
  background: var(--green);
  border-color: transparent;
}

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

.route-card {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.route-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.route-card h3 {
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--charcoal);
  background: var(--steel-light);
  font-size: 0.75rem;
  font-weight: 900;
}

.badge.pending {
  background: #fff0d8;
}

.route-meta {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.route-actions {
  display: flex;
  gap: 8px;
}

.route-actions button {
  flex: 1;
  min-height: 38px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 26px;
  padding: clamp(32px, 5vw, 56px) clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: #0b1015;
}

.site-footer h2 {
  font-size: 1.25rem;
}

.site-footer a {
  color: var(--green);
}

blockquote {
  margin: 0;
  padding-left: 18px;
  border-left: 4px solid var(--green);
}

cite {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

@media (max-width: 1050px) {
  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    padding: 18px;
    background: rgba(19, 24, 32, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    min-height: 46px;
  }

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

  .nav-toggle {
    display: block;
  }

  .info-band,
  .split,
  .booking-section,
  .about-contact,
  .map-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 68px);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 64px 0 104px;
  }

  h1 {
    max-width: 10.5ch;
    font-size: clamp(2.55rem, 14vw, 4.2rem);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 15, 20, 0.92), rgba(11, 15, 20, 0.62)),
      linear-gradient(0deg, rgba(19, 24, 32, 0.84), transparent 38%);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .info-band article {
    min-height: auto;
  }

  .service-grid,
  fieldset,
  .route-board {
    grid-template-columns: 1fr;
  }

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

  .map-card {
    min-height: 330px;
  }

  .line-one,
  .line-two {
    width: 160px;
  }

  .site-footer {
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
