:root {
  color-scheme: dark;
  --ink: #07080b;
  --muted: #b2b7c2;
  --line: rgba(255, 255, 255, 0.14);
  --surface: #050609;
  --panel: #11141b;
  --yellow: #e91d2d;
  --yellow-dark: #b80f1d;
  --green: #246b52;
  --steel: #26313f;
  --white: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--white);
}

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

@media (prefers-reduced-motion: no-preference) {
  * {
    transition-duration: 180ms;
    transition-property: background-color, border-color, box-shadow, color, opacity, transform;
    transition-timing-function: ease;
  }
}

.site-header {
  align-items: center;
  background: rgba(5, 6, 9, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 88px;
  padding: 12px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

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

.brand-logo {
  background: var(--white);
  border: 1px solid var(--line);
  height: 64px;
  object-fit: contain;
  padding: 2px;
  width: 86px;
}

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

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

.brand small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  margin-top: 2px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a:not(.nav-call)::after {
  background: var(--yellow);
  bottom: -8px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
}

.nav-links a:not(.nav-call):hover,
.nav-links a:not(.nav-call):focus-visible,
.nav-links a.active {
  color: var(--yellow);
}

.nav-links a:not(.nav-call):hover::after,
.nav-links a:not(.nav-call):focus-visible::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-call {
  background: var(--yellow);
  color: var(--white);
  padding: 12px 16px;
}

.nav-call:hover,
.nav-call:focus-visible {
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.nav-call,
.hero-actions .button.primary {
  animation: call-pulse 2.6s ease-in-out infinite;
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.page-main {
  background: #050609;
  min-height: 100vh;
  padding-top: 88px;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.94), rgba(5, 6, 9, 0.64)),
    url("assets/big-h-lot-aerial.jpg") center / cover;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  min-height: 520px;
  padding: clamp(96px, 12vw, 150px) clamp(20px, 6vw, 76px) clamp(64px, 8vw, 96px);
}

.page-hero.compact {
  min-height: 420px;
}

.page-hero h1 {
  max-width: 880px;
}

.about-animation {
  align-items: center;
  background: #050609;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(320px, 1.05fr) minmax(280px, 0.75fr);
  overflow: hidden;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 6vw, 76px);
}

.facility-visual {
  aspect-ratio: 16 / 10;
  background: #0a0d13;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.facility-visual img {
  filter: saturate(0.82) contrast(1.05) brightness(0.7);
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.facility-overlay {
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.66), transparent 42%),
    radial-gradient(circle at 72% 36%, rgba(233, 29, 45, 0.18), transparent 28%),
    linear-gradient(180deg, transparent, rgba(5, 6, 9, 0.62));
  inset: 0;
  position: absolute;
}

.route-trace {
  display: none;
}

.camera-panel {
  align-items: end;
  background: rgba(5, 6, 9, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  bottom: 88px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  left: 24px;
  max-width: 480px;
  overflow: hidden;
  position: absolute;
  z-index: 2;
}

.camera-panel > img {
  display: block;
  filter: contrast(1.05) saturate(0.9);
  height: 126px;
  object-fit: cover;
  position: static;
  width: 155px;
}

.camera-panel div {
  padding: 18px;
}

.camera-panel span,
.camera-panel strong {
  display: block;
}

.camera-panel span {
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.camera-panel strong {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.2;
}

.facility-stats {
  backdrop-filter: blur(14px);
  background: rgba(5, 6, 9, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  left: 0;
  position: absolute;
  right: 0;
}

.facility-stats div {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
}

.facility-stats strong,
.facility-stats span {
  display: block;
}

.facility-stats strong {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.facility-stats span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
}

.animation-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(8, 9, 12, 0.9), rgba(8, 9, 12, 0.64) 44%, rgba(8, 9, 12, 0.16));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  max-width: 720px;
  padding: 160px clamp(20px, 6vw, 76px) 96px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3.3rem, 7.4vw, 6.8rem);
  line-height: 0.94;
  margin-bottom: 22px;
  max-width: 780px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  margin-bottom: 18px;
}

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

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
  max-width: 620px;
}

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

.button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 800;
  justify-content: center;
  min-height: 50px;
  padding: 15px 20px;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: #c8101e;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.78);
}

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

.button.dark:hover,
.button.dark:focus-visible {
  background: #000000;
}

.quick-info {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  padding-top: 20px;
}

.quick-info span {
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 12px;
}

.quick-info span:hover {
  background: rgba(233, 29, 45, 0.82);
  transform: translateY(-2px);
}

.info-strip {
  background: #030407;
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.info-strip a {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 104px;
  padding: 24px clamp(18px, 3vw, 36px);
}

.info-strip a:hover,
.info-strip a:focus-visible {
  background: #20242c;
  box-shadow: inset 0 4px 0 var(--yellow);
}

.info-strip span,
.contact-cards span {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.info-strip strong {
  font-size: 1.02rem;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 76px);
}

.two-column {
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(260px, 0.82fr) 1.18fr;
}

.section p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

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

.feature-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 24px;
}

.feature-grid article:hover {
  border-color: rgba(233, 29, 45, 0.38);
  box-shadow: 0 20px 45px rgba(20, 24, 31, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  color: var(--yellow-dark);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 26px;
}

.parking-section {
  background: #080a0f;
  display: grid;
  gap: clamp(34px, 6vw, 88px);
  grid-template-columns: 0.9fr 1.1fr;
}

.parking-copy {
  max-width: 560px;
}

.gallery-section {
  background: #111318;
  color: var(--white);
}

.gallery-heading {
  max-width: 760px;
}

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

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.25fr 0.75fr;
  margin-top: 34px;
}

.gallery-grid figure {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin: 0;
  overflow: hidden;
}

.gallery-grid figure:hover {
  border-color: rgba(233, 29, 45, 0.68);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.gallery-grid img {
  aspect-ratio: 16 / 9;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 16px 16px;
}

.gallery-main {
  grid-row: span 2;
}

.gallery-main img {
  aspect-ratio: 16 / 10;
  height: calc(100% - 48px);
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-list div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 0.45fr 0.55fr;
  padding: 26px 0;
}

.service-list div:hover {
  background: rgba(233, 29, 45, 0.12);
  padding-left: 18px;
  padding-right: 18px;
}

.service-list strong {
  font-size: 1.1rem;
}

.service-list span {
  color: var(--muted);
  line-height: 1.5;
}

.payment-section {
  background: linear-gradient(135deg, #151820 0%, #241418 100%);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.page-payment {
  background: #050609;
}

.route-line {
  height: 92px;
  left: clamp(20px, 6vw, 76px);
  opacity: 0.9;
  position: absolute;
  right: clamp(20px, 6vw, 76px);
  top: 18px;
  z-index: 0;
}

.route-line::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 38px;
}

.route-line span {
  animation: route-drive 8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  background: url("assets/big-h-route-truck.svg") center / contain no-repeat;
  filter: drop-shadow(0 0 16px rgba(233, 29, 45, 0.22));
  display: block;
  height: 92px;
  position: absolute;
  top: -8px;
  width: 300px;
}

.route-line span::before {
  content: none;
}

.route-line span::after {
  content: none;
}

.payment-heading {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.payment-heading p,
.payment-card p {
  color: rgba(255, 255, 255, 0.74);
}

.payment-layout {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  margin-top: 34px;
}

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

.payment-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 24px;
}

.payment-card:hover {
  border-color: rgba(233, 29, 45, 0.72);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.26);
  transform: translateY(-4px);
}

.payment-card span {
  color: var(--yellow);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.payment-card h3 {
  color: var(--white);
}

.payment-card .button {
  margin-top: 10px;
}

.mobile-action-bar {
  display: none;
}

@keyframes call-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(233, 29, 45, 0);
  }

  45% {
    box-shadow: 0 0 0 9px rgba(233, 29, 45, 0.14);
  }
}

@keyframes route-drive {
  0% {
    left: 0;
    opacity: 1;
  }

  18% {
    opacity: 1;
  }

  82% {
    opacity: 1;
  }

  100% {
    left: calc(100% - 300px);
    opacity: 0;
  }
}

.contact-section {
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(260px, 0.92fr) minmax(280px, 0.72fr);
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  max-width: 520px;
}

.contact-cards a {
  background: #11141b;
  color: var(--white);
  padding: 22px;
}

.contact-cards a:hover,
.contact-cards a:focus-visible {
  background: #242832;
  box-shadow: inset 4px 0 0 var(--yellow);
  transform: translateX(4px);
}

.contact-form {
  background: #11141b;
  border: 1px solid var(--line);
  display: grid;
  gap: 16px;
  padding: 24px;
}

.map-section {
  background: #050609;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(260px, 0.65fr) minmax(320px, 1fr);
  padding-top: 0;
}

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

.map-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.map-frame {
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  min-height: 430px;
  overflow: hidden;
}

.map-frame iframe {
  border: 0;
  display: block;
  height: 100%;
  min-height: 430px;
  width: 100%;
}

label {
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  font-size: 0.84rem;
  font-weight: 800;
  gap: 8px;
}

input,
select,
textarea {
  background: #090b10;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(233, 29, 45, 0.13);
  outline: none;
}

.site-footer {
  background: #030407;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  justify-content: space-between;
  padding: 32px clamp(20px, 6vw, 76px);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: grid;
  gap: 8px;
}

.footer-brand {
  color: var(--white);
  font-size: 1rem;
}

.footer-meta {
  text-align: right;
}

.footer-meta span {
  color: var(--white);
  font-weight: 800;
}

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

.footer-phone {
  position: relative;
  width: fit-content;
}

.footer-phone-trigger {
  color: var(--yellow);
  cursor: pointer;
  display: inline-block;
  font-weight: 800;
  width: fit-content;
}

.footer-phone-trigger::after {
  content: "  Call or Text";
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-phone-trigger:focus {
  outline: 2px solid rgba(233, 29, 45, 0.72);
  outline-offset: 4px;
}

.footer-phone span {
  display: inline-block;
}

.footer-phone > span:last-child {
  background: #11141b;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
  display: none;
  gap: 8px;
  margin-top: 10px;
  padding: 8px;
  position: absolute;
  z-index: 40;
}

.footer-phone:hover > span:last-child,
.footer-phone:focus-within > span:last-child {
  display: flex;
}

.footer-phone > span:last-child a {
  background: var(--yellow);
  color: var(--white);
  font-weight: 900;
  min-width: 72px;
  padding: 10px 12px;
  text-align: center;
}

.footer-phone > span:last-child a:last-child {
  background: var(--white);
  color: var(--ink);
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    position: fixed;
  }

  .page-main {
    padding-top: 146px;
  }

  .nav-links {
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
    width: 100%;
  }

  .nav-links a {
    flex: 0 0 auto;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding-top: 190px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(10, 13, 17, 0.88), rgba(10, 13, 17, 0.58), rgba(10, 13, 17, 0.26));
  }

  .info-strip,
  .two-column,
  .parking-section,
  .about-animation,
  .gallery-grid,
  .payment-layout,
  .contact-section,
  .map-section {
    grid-template-columns: 1fr;
  }

  .facility-visual {
    min-height: 360px;
  }

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

  .facility-stats div {
    padding: 12px 10px;
  }

  .camera-panel {
    bottom: 105px;
    grid-template-columns: 112px minmax(0, 1fr);
    left: 14px;
    max-width: calc(100% - 28px);
  }

  .camera-panel > img {
    height: 104px;
    width: 112px;
  }

  .camera-panel div {
    padding: 13px;
  }

  .camera-panel strong {
    font-size: 0.9rem;
  }

  .facility-stats strong {
    font-size: 1rem;
  }

  .facility-stats span {
    font-size: 0.7rem;
  }

  .payment-options {
    grid-template-columns: 1fr;
  }

  .route-line {
    display: block;
    height: 92px;
    left: auto;
    margin-bottom: 18px;
    opacity: 1;
    position: relative;
    right: auto;
    top: auto;
  }

  .route-line::before {
    top: 46px;
  }

  .route-line span {
    animation: none;
    left: 0;
    top: 0;
    width: min(300px, 86vw);
  }

  .gallery-main {
    grid-row: auto;
  }

  .gallery-main img {
    height: auto;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .payment-actions {
    justify-content: flex-start;
  }

  .service-list div {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    height: 58px;
    width: 78px;
  }

  .nav-links {
    font-size: 0.84rem;
  }

  .nav-call {
    padding: 10px 12px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero {
    min-height: 780px;
  }

  .button {
    width: 100%;
  }

  .quick-info span {
    width: 100%;
  }

  .mobile-action-bar {
    background: rgba(23, 26, 31, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    bottom: 0;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    left: 0;
    padding: 10px 14px;
    position: fixed;
    right: 0;
    z-index: 35;
  }

  .mobile-action-bar a {
    align-items: center;
    background: var(--yellow);
    color: var(--white);
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    min-height: 48px;
  }

  .mobile-action-bar a:last-child {
    background: var(--white);
    color: var(--ink);
  }

  .site-footer {
    padding-bottom: 92px;
  }
}
