:root {
  --ink: #151515;
  --muted: #626262;
  --line: #dddddd;
  --paper: #f7f4ef;
  --soft: #ede7df;
  --white: #ffffff;
  --red: #c71320;
  --red-dark: #7d0e16;
  --charcoal: #20252a;
  --gold: #b99254;
  --shadow: 0 22px 60px rgba(17, 17, 17, 0.18);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 16px clamp(18px, 4vw, 58px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  min-height: 68px;
  color: var(--ink);
  background: rgba(247, 244, 239, 0.94);
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 15px;
  line-height: 1.2;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  opacity: 0.72;
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  opacity: 0.82;
  transition: opacity 160ms ease;
}

.desktop-nav a:hover {
  opacity: 1;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 4px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.header-action {
  gap: 10px;
  min-width: 136px;
  padding: 0 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 12px 28px rgba(125, 14, 22, 0.28);
  line-height: 1;
}

.header-action-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--red-dark);
  background: rgba(255, 255, 255, 0.9);
}

.header-action-icon svg {
  display: block;
}

.header-action-label {
  display: block;
}

.site-header.is-scrolled .header-action,
.site-header.menu-active .header-action {
  color: var(--white);
  border-color: rgba(125, 14, 22, 0.18);
  box-shadow: 0 10px 24px rgba(125, 14, 22, 0.22);
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: inherit;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 19;
  display: none;
  padding: 18px;
  background: rgba(247, 244, 239, 0.98);
  box-shadow: 0 22px 48px rgba(17, 17, 17, 0.14);
}

.mobile-nav a {
  display: block;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.mobile-nav.is-open {
  display: block;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

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

.hero-media {
  display: block;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.9) 0%, rgba(13, 13, 13, 0.62) 34%, rgba(13, 13, 13, 0.16) 72%),
    linear-gradient(0deg, rgba(13, 13, 13, 0.42), rgba(13, 13, 13, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 84px);
  padding: 116px 0 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 610px;
  margin-bottom: 22px;
  font-size: clamp(38px, 5.5vw, 66px);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.7vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.button {
  min-width: 190px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 15px;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 660px;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-stats div {
  padding: 16px 24px 0 0;
}

.hero-stats dt {
  font-size: clamp(24px, 3.3vw, 36px);
  font-weight: 800;
  line-height: 1;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.35;
}

.notice-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 4px solid var(--red);
  background: var(--line);
}

.notice-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0 16px;
  min-height: 154px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
}

.notice-item span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--charcoal);
  font-weight: 800;
}

.notice-item strong {
  align-self: end;
  font-size: 18px;
}

.notice-item p {
  margin: 6px 0 0;
  font-size: 14px;
}

.section {
  padding: clamp(74px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 108px;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.contact-copy p {
  max-width: 650px;
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.service-grid article {
  min-height: 230px;
  padding: 30px;
  background: var(--white);
}

.service-grid span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.service-grid p,
.vehicle-card p,
.schedule-grid p,
.contact-note p {
  margin-bottom: 0;
}

.vehicle-section {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(125, 14, 22, 0.9), rgba(32, 37, 42, 0.96)),
    var(--charcoal);
}

.vehicle-section p {
  color: rgba(255, 255, 255, 0.74);
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.vehicle-panel {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.08);
}

.vehicle-specs div,
.vehicle-card {
  padding: clamp(24px, 4vw, 38px);
  background: rgba(14, 14, 14, 0.28);
}

.vehicle-specs strong,
.vehicle-specs span {
  display: block;
}

.vehicle-specs strong {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.vehicle-specs span {
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 800;
  line-height: 1.1;
}

.vehicle-card h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.schedule-section {
  background: var(--soft);
}

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

.schedule-grid article {
  min-height: 270px;
  padding: clamp(26px, 4vw, 38px);
  border-top: 5px solid var(--red);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
}

.schedule-grid article.important {
  color: var(--white);
  border-color: var(--gold);
  background: var(--charcoal);
}

.schedule-grid article.important p {
  color: rgba(255, 255, 255, 0.72);
}

.day-range {
  display: block;
  margin-bottom: 30px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.important .day-range {
  color: var(--gold);
}

.schedule-grid strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
  background: var(--paper);
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-link,
.contact-note {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.07);
}

.contact-link div {
  min-width: 0;
}

.contact-link span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-weight: 800;
}

.contact-link small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-link strong {
  font-size: clamp(19px, 2.2vw, 26px);
  overflow-wrap: anywhere;
}

.contact-note {
  display: block;
  border-color: transparent;
  color: var(--white);
  background: var(--red-dark);
}

.contact-note p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: #111111;
}

.site-footer p {
  margin: 0;
  color: inherit;
}

.site-footer a {
  font-weight: 800;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content {
    width: min(720px, calc(100% - 36px));
  }

  .notice-band,
  .split,
  .vehicle-panel,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

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

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

@media (max-width: 700px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand strong {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 13, 13, 0.9) 0%, rgba(13, 13, 13, 0.72) 58%, rgba(13, 13, 13, 0.22) 100%),
      linear-gradient(0deg, rgba(13, 13, 13, 0.62), rgba(13, 13, 13, 0.08));
  }

  .hero-content {
    width: min(340px, calc(100% - 36px));
    margin-left: 18px;
    padding: 86px 0 24px;
  }

  h1 {
    max-width: 340px;
    margin-bottom: 16px;
    font-size: 36px;
    line-height: 1.02;
  }

  .hero-title-segment {
    display: block;
  }

  .hero-lead {
    max-width: 330px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions,
  .service-grid,
  .vehicle-specs,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
    max-width: 330px;
    gap: 10px;
    margin-bottom: 18px;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 340px;
  }

  .hero-stats div {
    padding: 14px 8px 0 0;
    border-bottom: 0;
  }

  .hero-stats dt {
    font-size: 22px;
  }

  .hero-stats dd {
    font-size: 11px;
  }

  .notice-item {
    grid-template-columns: 38px 1fr;
    min-height: 0;
    padding: 24px 18px;
  }

  .notice-item span {
    width: 38px;
    height: 38px;
  }

  .section {
    padding: 68px 18px;
  }

  .service-grid article,
  .schedule-grid article {
    min-height: 0;
  }

  .contact-link {
    align-items: flex-start;
    gap: 14px;
    padding: 20px 18px;
  }

  .contact-link span {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .contact-link strong {
    font-size: 16px;
    line-height: 1.25;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 12px;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 33px;
  }
}
