@import url("https://fonts.googleapis.com/css2?family=Questrial&display=swap");

:root {
  --orange: #f15a18;
  --ink: #101722;
  --footer: #1c232d;
  --green: #6b953b;
  --muted: #7b828c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 980px;
  color: var(--ink);
  background: #fff;
  font-family: Questrial, "Century Gothic", Futura, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.main-header {
  height: 120px;
  background: #fff;
}

.nav-wrap {
  width: 760px;
  height: 120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 120px repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  gap: 16px;
}

.nav-wrap a {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #08182e;
  transition: color 180ms ease;
}

.nav-wrap a:hover,
.nav-wrap a.active {
  color: var(--orange);
}

.logo {
  width: 88px;
  height: 96px;
  object-fit: contain;
}

.contact-strip {
  height: 36px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
}

.contact-strip-inner {
  width: 980px;
  height: 36px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
}

.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.closed-note {
  height: 28px;
  background: rgba(18, 22, 30, 0.92);
  color: #fff;
  text-align: center;
  font-size: 13px;
  line-height: 28px;
}

.hero {
  position: relative;
  height: 612px;
  overflow: hidden;
  background: #111;
  color: #fff;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowDrift 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 980px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px;
}

.hero h1 {
  margin: 0;
  font-size: 69px;
  line-height: 1.05;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.hero-line {
  width: 530px;
  height: 2px;
  margin: 20px 0 22px;
  background: var(--orange);
}

.hero-subtitle {
  margin: 0 0 34px;
  font-size: 26px;
  color: #fff;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.btn {
  min-width: 138px;
  height: 46px;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: 15px;
  color: var(--orange);
  background: transparent;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-1px);
}

.hero .btn {
  color: #fff;
}

.page-section {
  width: 980px;
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  min-height: 790px;
  padding: 118px 0 70px;
}

.intro-grid.compact {
  padding-top: 104px;
  min-height: 500px;
}

.copy h2,
.metric-block h2 {
  margin: 0 0 32px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
}

.copy p,
.metric-block p {
  margin: 0 0 22px;
  font-size: 16px;
  font-weight: 400;
}

.green-mark {
  width: 38px;
  height: 22px;
  margin: 0 0 18px;
  position: relative;
}

.green-mark::before,
.green-mark::after {
  content: "";
  position: absolute;
  left: 0;
  width: 34px;
  height: 6px;
  background: var(--green);
}

.green-mark::before {
  top: 3px;
}

.green-mark::after {
  top: 13px;
}

.bar {
  margin: 0 0 22px;
}

.bar span {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.bar-track {
  height: 5px;
  background: #e6e8eb;
}

.bar-fill {
  display: block;
  height: 5px;
  width: 0;
  background: var(--green);
  transition: width 900ms ease;
}

.home-gallery {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.home-gallery img,
.media-gallery img {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
}

.home-gallery img:nth-child(3),
.home-gallery img:nth-child(4) {
  height: 520px;
  filter: blur(5px);
  transform: scale(1.02);
}

.hours-band {
  min-height: 250px;
  margin-top: 0;
  background: var(--footer);
  color: #fff;
}

.hours-inner {
  width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  padding: 74px 0 64px;
}

.hours-item {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hours-item:first-child {
  border-left: 0;
}

.hours-day {
  margin-bottom: 8px;
  color: #fff;
  font-size: 15px;
}

.hours-time {
  color: var(--orange);
  font-size: 14px;
}

.battery-points {
  width: 980px;
  margin: 8px auto 98px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 62px;
}

.battery-point {
  text-align: center;
  color: #333;
  font-size: 15px;
}

.battery-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  position: relative;
}

.battery-icon::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  width: 22px;
  height: 28px;
  border: 2px solid #9b9b9b;
  border-radius: 3px;
}

.battery-icon::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 24px;
  width: 10px;
  height: 14px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: skewX(-20deg);
}

.route-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  padding: 88px 0 96px;
}

.media-gallery {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}

.media-gallery img {
  height: 350px;
}

.media-gallery .tall {
  height: 520px;
}

.media-gallery .short {
  height: 260px;
}

.media-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #1b1b1b;
}

.media-gallery figure img {
  transition: transform 450ms ease;
}

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

.location-section {
  min-height: 506px;
  padding-top: 112px;
}

.contact-blank-top {
  height: 248px;
  background: var(--footer);
}

.contact-blank-white {
  height: 250px;
  background: #fff;
}

.site-footer {
  background: var(--footer);
  color: #fff;
  min-height: 552px;
  padding: 112px 0 90px;
}

.footer-inner {
  width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 120px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 78px;
  height: 90px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
}

.footer-heading {
  color: var(--orange);
  font-size: 26px;
  white-space: nowrap;
}

.footer-contact {
  margin-top: 0;
  font-size: 16px;
  font-weight: 400;
}

.copyright {
  margin-top: 44px;
  font-size: 14px;
}

.footer-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #fff;
}

.footer-form textarea,
.footer-form input {
  width: 100%;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
  outline: 0;
}

.footer-form textarea {
  height: 126px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.email-submit {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
  margin-top: 16px;
}

.send-btn {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.send-btn:hover {
  background: #fff;
  color: var(--footer);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowDrift {
  from {
    transform: scale(1.01);
  }
  to {
    transform: scale(1.06) translate3d(-10px, 0, 0);
  }
}

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