@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@600;700&family=DM+Sans:wght@400;500;600;700&display=swap");

:root {
  --background: #0a0a0a;
  --panel: rgba(5, 5, 5, 0.86);
  --panel-strong: rgba(8, 8, 8, 0.94);
  --border: rgba(90, 90, 90, 0.32);
  --muted: #969696;
  --text: #f3f3f3;
  --primary: #d62d32;
  --primary-dark: #b92025;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 13%, rgba(152, 24, 24, 0.22), transparent 31rem),
    radial-gradient(circle at 50% 51%, rgba(125, 13, 19, 0.11), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 18rem),
    var(--background);
  color: var(--text);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.011) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.009) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}

.gate-pending body > * {
  visibility: hidden;
}

.gate-pending body > .password-gate {
  visibility: visible;
}

body.site-locked {
  overflow: hidden;
}

.password-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  overflow-y: auto;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(152, 24, 24, 0.26), transparent 28rem),
    #080808;
}

.password-panel {
  width: min(100%, 32rem);
  padding: 3rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(5, 5, 5, 0.92);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  text-align: center;
}

.password-panel img {
  width: 150px;
  height: auto;
  margin-bottom: 1.5rem;
}

.password-kicker {
  margin: 0 0 0.55rem;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.password-panel h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
}

.password-panel .accent-line {
  margin: 1.35rem auto 1.5rem;
}

.password-copy {
  margin: 0 auto 2rem;
  color: var(--muted);
  line-height: 1.65;
}

.password-form {
  text-align: left;
}

.password-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.password-error {
  min-height: 1.4rem;
  margin: 0.7rem 0 0;
  color: #ff6b70;
  font-size: 0.875rem;
  text-align: center;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: var(--primary);
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(18px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(90, 90, 90, 0.45), transparent);
}

.nav-wrap,
.container {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding-inline: 2rem;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  display: block;
  width: auto;
  height: 40px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.desktop-nav a:not(.btn) {
  position: relative;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.desktop-nav a:not(.btn)::after {
  position: absolute;
  bottom: -0.35rem;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--primary);
  transition: width 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--text);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 0.8rem;
}

.menu-toggle {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 0 1rem 1rem;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 500;
}

.mobile-menu a.active {
  background: rgba(214, 45, 50, 0.1);
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  min-height: 40px;
  padding: 0 1.5rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  border-color: rgba(75, 75, 75, 0.38);
  background: rgba(0, 0, 0, 0.52);
  color: #f5f5f5;
}

.btn-secondary:hover {
  background: rgba(20, 20, 20, 0.9);
}

.btn-small {
  min-height: 32px;
  padding-inline: 0.75rem;
}

.btn-block {
  width: 100%;
}

.btn[aria-disabled="true"],
button:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.icon {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  min-height: 572px;
  padding-top: 5rem;
  padding-bottom: 6rem;
  text-align: center;
}

.accent-line {
  width: 60px;
  height: 2px;
  margin: 0 auto 2.35rem;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  box-shadow: 0 0 14px rgba(214, 45, 50, 0.7);
}

.hero-logo {
  width: min(267px, 58vw);
  height: auto;
  margin-bottom: 1.4rem;
}

.lead {
  max-width: 42rem;
  margin: 0 auto 2.4rem;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.62;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.panel-section {
  padding-block: 4rem;
}

.panel {
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  text-align: center;
}

h1,
h2,
h3,
.card-title {
  margin: 0;
  font-family: "Barlow", "DM Sans", sans-serif;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
}

h2 {
  margin-bottom: 0.45rem;
  font-size: 1.9rem;
  line-height: 1.2;
}

.panel p,
.section-copy {
  max-width: 42rem;
  margin: 1.75rem auto 0;
  color: var(--muted);
  line-height: 1.65;
}

.services {
  padding-block: 4rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  display: flex;
  min-height: 278px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border: 1px solid rgba(90, 90, 90, 0.42);
  border-radius: 14px;
  background: rgba(8, 8, 8, 0.93);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.service-icon,
.contact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 1.45rem;
  place-items: center;
  border: 1px solid rgba(214, 45, 50, 0.28);
  border-radius: 10px;
  background: rgba(214, 45, 50, 0.12);
  color: var(--primary);
}

.card-title {
  margin-bottom: 0.75rem;
  font-size: 1.16rem;
  font-weight: 700;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.cta {
  padding-block: 4rem 6rem;
}

.cta .panel {
  max-width: 48rem;
}

.site-footer {
  background: rgba(10, 10, 10, 0.54);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.6fr;
  gap: 4rem;
  padding-block: 3rem 1.6rem;
}

.footer-brand p {
  max-width: 24rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

.site-footer h3 {
  margin-bottom: 1.15rem;
  font-size: 1rem;
}

.site-footer nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.site-footer a {
  color: var(--muted);
  font-size: 0.875rem;
  transition: color 160ms ease;
}

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

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mini-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(214, 45, 50, 0.16);
  border-radius: 8px;
  background: rgba(214, 45, 50, 0.1);
  color: var(--primary);
}

.copyright {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(90, 90, 90, 0.28);
  color: var(--muted);
  font-size: 0.875rem;
  text-align: center;
}

.page-hero {
  padding-block: 5rem 2.5rem;
  text-align: center;
}

.page-hero .accent-line {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  padding-bottom: 5rem;
}

.glass {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel-strong);
  padding: 2rem;
}

.glass h2 {
  margin-bottom: 1.5rem;
  font-size: 1.65rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-method small {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-method a {
  color: #f0f0f0;
}

.emergency-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(90, 90, 90, 0.3);
  color: var(--muted);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.875rem;
  font-weight: 500;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(90, 90, 90, 0.4);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--text);
  font: inherit;
  padding: 0.72rem 0.85rem;
  outline: none;
}

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

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(214, 45, 50, 0.8);
  box-shadow: 0 0 0 3px rgba(214, 45, 50, 0.18);
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.booking-layout {
  max-width: 46rem;
  padding-bottom: 5rem;
}

.trailer-options {
  padding-bottom: 4rem;
}

.section-heading {
  max-width: 42rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0.6rem;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.trailer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.trailer-card {
  overflow: hidden;
  border: 1px solid rgba(90, 90, 90, 0.42);
  border-radius: 14px;
  background: rgba(8, 8, 8, 0.93);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.trailer-image {
  display: grid;
  min-height: 172px;
  place-items: center;
  border-bottom: 1px solid rgba(90, 90, 90, 0.3);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
    radial-gradient(circle at 50% 38%, rgba(214, 45, 50, 0.28), transparent 42%),
    linear-gradient(180deg, #181818, #050505);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trailer-image span {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
}

.trailer-body {
  padding: 1.4rem;
}

.option-label {
  margin: 0 0 0.4rem;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trailer-body h3 {
  margin: 0 0 1.2rem;
  font-size: 1.25rem;
}

.spec-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.spec-list div {
  display: grid;
  gap: 0.2rem;
}

.spec-list dt {
  color: #d7d7d7;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.faq-card {
  max-width: 42rem;
  margin: 0 auto 5rem;
  padding: 3rem;
  text-align: center;
}

.faq-card p {
  margin: 0 0 1.75rem;
  color: var(--muted);
}

.fade-up {
  animation: fade-up 700ms ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .nav-wrap,
  .container {
    padding-inline: 1rem;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-actions {
    display: flex;
  }

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

  .hero {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 5rem;
  }

  .hero-logo {
    width: 167px;
  }

  .lead {
    font-size: 1.13rem;
  }

  .panel {
    padding: 2rem 1.5rem;
  }

  .service-grid,
  .contact-layout,
  .trailer-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 2rem;
  }

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

@media (max-width: 460px) {
  .password-panel {
    padding: 2.25rem 1.25rem;
  }

  .password-controls {
    grid-template-columns: 1fr;
  }

  .button-row {
    gap: 0.9rem;
  }

  .btn {
    padding-inline: 1.1rem;
  }

  .panel-section,
  .services,
  .cta {
    padding-block: 3rem;
  }
}
