/* =========================================================
   PLY-LABS — STYLE SYSTEM (INDEX = WHITE, P1 PAGE = GRAY)
   Goal: minimal, consistent, and predictable.
   ========================================================= */

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

@font-face {
  font-family: "Ajirotype";
  src: url("Ajirotype.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* =========================
   TOKENS / VARIABLES
   ========================= */
:root {
  --header-h: 72px;
  --footer-h: 60px;
  --line-width: 3px;
  --radius: 18px;
  --button-corner-x: 46%;
  --button-corner-y: 62%;
  --divider-color: rgba(0, 0, 0, 0.12);

  /* SITE TEXT */
  --text-color: #000000;

  /* TYPE SCALE */
  --fs-title: clamp(2.5rem, 4.8vw, 4.8rem);
  --fs-body: clamp(1.12rem, 1.8vw, 1.32rem);
  --fs-callout: clamp(1.45rem, 2.6vw, 2.2rem);
  --fs-small: clamp(0.95rem, 1.2vw, 1rem);

  /* P1 = BLACK TEXT */
  --p1-text-color: #000000;
  --p1-border-color: #000000;
  --p1-hover-bg: #000000;
}

/* =========================
   BASE RESET
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-synthesis: none;
  color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
textarea,
label,
span {
  font-weight: inherit;
}

button,
.cta-button,
#fade,
.explore-button {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: fit-content;
  margin-inline: auto;
  min-height: 52px;
  padding: 16px 32px;
  border: var(--line-width) solid #000000;
  border-color: transparent;
  border-radius: var(--radius);
  background: transparent;
  color: #000000;
  font-size: var(--fs-body);
  line-height: 1;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  transition:
    opacity 0.6s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

button::before,
button::after,
.cta-button::before,
.cta-button::after,
#fade::before,
#fade::after,
.explore-button::before,
.explore-button::after {
  content: "";
  position: absolute;
  width: var(--button-corner-x);
  height: var(--button-corner-y);
  opacity: 1;
  pointer-events: none;
  transition:
    left 0.25s ease,
    border-color 0.25s ease,
    border-radius 0.25s ease;
}

button::before,
.cta-button::before,
#fade::before,
.explore-button::before {
  top: calc(-1 * var(--line-width));
  left: calc(-1 * var(--line-width));
  border-top: var(--line-width) solid #000000;
  border-left: var(--line-width) solid #000000;
  border-right: var(--line-width) solid transparent;
  border-top-left-radius: var(--radius);
}

button::after,
.cta-button::after,
#fade::after,
.explore-button::after {
  bottom: calc(-1 * var(--line-width));
  left: calc(100% - var(--button-corner-x) + var(--line-width));
  border-bottom: var(--line-width) solid #000000;
  border-left: var(--line-width) solid transparent;
  border-right: var(--line-width) solid #000000;
  border-bottom-right-radius: var(--radius);
}

button:hover,
.cta-button:hover,
#fade:hover,
.explore-button:hover,
button:focus-visible,
.cta-button:focus-visible,
#fade:focus-visible,
.explore-button:focus-visible {
  background: transparent;
  color: #000000;
  border-color: transparent;
}

button:hover::before,
.cta-button:hover::before,
#fade:hover::before,
.explore-button:hover::before,
button:focus-visible::before,
.cta-button:focus-visible::before,
#fade:focus-visible::before,
.explore-button:focus-visible::before {
  left: calc(100% - var(--button-corner-x) + var(--line-width));
  border-left-color: transparent;
  border-right-color: #000000;
  border-top-left-radius: 0;
  border-top-right-radius: var(--radius);
}

button:hover::after,
.cta-button:hover::after,
#fade:hover::after,
.explore-button:hover::after,
button:focus-visible::after,
.cta-button:focus-visible::after,
#fade:focus-visible::after,
.explore-button:focus-visible::after {
  left: calc(-1 * var(--line-width));
  border-left-color: #000000;
  border-right-color: transparent;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: var(--radius);
}

html,
body {
  height: 100%;
  overflow: hidden; /* home page behavior (page 2 overrides below) */
}

html,
body.home {
  height: auto;
  min-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: #ffffff;
}

/* =========================
   VIDEO BACKGROUND (HOME)
   ========================= */
#video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  background: #ffffff; /* fallback while video loads */
  z-index: 0;
  transition: opacity 0.45s ease;
}

#video.is-playing {
  opacity: 1;
}

.bg {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #ffffff url("images/hero.webp") center / cover no-repeat;
  z-index: 0;
}

.bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 30%,
    rgba(255, 255, 255, 0.65) 58%,
    rgba(255, 255, 255, 1) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.content,
.hero,
.hero .container {
  background: transparent !important;
}

.content {
  position: relative;
  z-index: 2;
}

.hero-title,
.hero .body {
  font-family: "Open Sans", sans-serif;
}

.title,
.hero-title,
.faq-title,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Ajirotype", "Open Sans", sans-serif;
  font-weight: 400;
}

.image-page {
  position: relative;
  z-index: 1;
}

.image-page,
.about-actions {
  background: #ffffff;
}

/* =========================
   LAYOUT SPACING (HOME)
   ========================= */
.content {
  padding-top: var(--header-h);
  padding-bottom: var(--footer-h);
}

/* =========================
   HERO (HOME)
   ========================= */
.hero {
  height: calc(100vh - var(--header-h) - var(--footer-h));
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.title {
  color: #000000;
  font-size: var(--fs-title);
  line-height: 0.98;
  letter-spacing: 0.04em;
}

.hero-title {
  color: #ffffff;
  letter-spacing: 0.08em;
  margin-bottom: 1.4rem;
}

.body {
  font-size: var(--fs-body);
  line-height: 1.7;
  max-width: 62ch;
}

.callout {
  color: #000000;
  font-size: var(--fs-callout);
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.callout-with-image {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.callout-with-image span {
  color: #000000;
}

.callout-image {
  height: clamp(56px, 8vw, 84px);
  width: auto;
  display: block;
  object-fit: contain;
}

.about-copy .callout + .callout {
  margin-top: -10px;
}

.container {
  padding-inline: 24px;
}

.about-section {
  background: #ffffff;
  padding: 96px 24px calc(96px + var(--footer-h));
}

.about-shell {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(24px, 4vw, 44px);
}

.about-row {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.about-actions {
  display: flex;
  justify-content: center;
  padding-top: 32px;
}

.crest-story {
  display: grid;
  grid-template-columns: minmax(420px, 1.35fr) minmax(260px, 0.85fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.crest-media {
  display: flex;
  justify-content: center;
}

.crest-image {
  width: min(100%, 360px);
  height: auto;
  display: block;
}

.crest-copy {
  display: grid;
  gap: 18px;
  text-align: left;
}

.crest-copy .body {
  color: #000000;
  max-width: none;
}

.crest-copy .title {
  text-align: left;
}

.crest-signoff {
  margin-top: 4px;
}

.about-row-reverse .about-copy {
  order: 1;
}

.about-row-reverse .about-media {
  order: 2;
}

.about-row-main {
  display: grid;
  grid-template-columns: minmax(320px, 760px);
  justify-content: center;
  justify-items: center;
}

.about-row-main .about-copy {
  justify-items: center;
  text-align: center;
}

.about-row-main .callout-with-image {
  justify-content: center;
}

.about-copy,
.about-media {
  display: grid;
  gap: 24px;
}

.about-copy {
  color: #000000;
}
.about-frame {
  width: min(100%, 560px);
  overflow: hidden;
  border: var(--line-width) solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.01));
}

.about-image {
  width: 100%;
  display: block;
  height: auto;
}

.about-video-frame {
  width: min(100%, 560px);
  aspect-ratio: 16 / 9;
}

.about-video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.about-copy .body {
  color: #000000;
}

.project-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.project-spec {
  padding: 18px 20px;
  border: var(--line-width) solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.project-spec h3 {
  color: #000000;
  font-size: var(--fs-body);
  margin-bottom: 8px;
}

.project-spec p {
  color: #000000;
  font-size: var(--fs-small);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .about-row {
    grid-template-columns: 1fr;
  }

  .crest-story {
    grid-template-columns: 1fr;
  }

  .about-row-reverse .about-copy,
  .about-row-reverse .about-media {
    order: initial;
  }
}

@media (max-width: 640px) {
  .about-section {
    padding-top: 72px;
    padding-bottom: calc(72px + var(--footer-h));
  }

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

/* =========================
   HEADER (SHARED)
   ========================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-h);
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

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

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  height: 48px;
  line-height: 0;
}

.logo-animation {
  display: none;
  height: 48px;
  width: auto;
  aspect-ratio: 1424.012 / 427.387;
  overflow: hidden;
}

.logo-animation svg {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.logo-link.logo-ready .logo-animation {
  display: block;
}

.logo-link.logo-ready .logo-fallback {
  display: none;
}

body.home .header {
  background: #ffffff;
}

body.home .header::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 24px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.72) 34%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

/* =========================
   FOOTER (SHARED)
   ========================= */
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: var(--footer-h);
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  z-index: 2;
}

body.home .footer::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 24px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.72) 34%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

body.home .footer {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

body.home.footer-visible .footer {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.socials {
  display: flex;
  gap: 28px;
}

.footer-copy {
  color: #000000;
  font-size: var(--fs-small);
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.socials img {
  height: 22px;
  transition: transform 0.25s ease;
}

.socials img:hover {
  transform: translateY(-2px);
}

/* =========================
   CTA BUTTON
   ========================= */
#fade {
  color: #ffffff;
  opacity: 0;
}

#fade::before {
  border-top-color: #ffffff;
  border-left-color: #ffffff;
  border-right-color: transparent;
}

#fade::after {
  border-bottom-color: #ffffff;
  border-left-color: transparent;
  border-right-color: #ffffff;
}

#fade:hover,
#fade:focus-visible {
  color: #ffffff;
}

#fade:hover::before,
#fade:focus-visible::before {
  border-left-color: transparent;
  border-right-color: #ffffff;
}

#fade:hover::after,
#fade:focus-visible::after {
  border-left-color: #ffffff;
  border-right-color: transparent;
}

.about-section .calendly-cta {
  text-align: center;
}

.about-actions {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 12px 0 calc(32px + var(--footer-h));
  background: #ffffff;
  z-index: 1;
}

body.home .about-actions {
  padding-top: 0;
  padding-bottom: calc(56px + var(--footer-h));
}

/* =========================================================
   PAGE 2 — P1 IMAGE + BUTTON
   ========================================================= */

html,
body.page {
  height: auto;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  background: #ffffff;
}

/* P1 text override = BLACK */
body.page * {
  color: var(--p1-text-color);
}

body.page .header,
body.page .footer {
  background: #ffffff;
}

/* Page container */
.image-page {
  padding-top: 0;
  padding-bottom: calc(var(--footer-h) + 10px);
  display: flex;
  justify-content: center;
}

.image-page-primary {
  padding-bottom: 24px;
}

body.home #p1-content {
  padding-bottom: 18px;
}

.image-page-secondary {
  padding-top: 64px;
}

/* Stack image + button */
.product-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.product-center > section {
  position: relative;
  --divider-slide-x: 0px;
}

.product-center > section::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: clamp(120px, 33vw, 440px);
  height: var(--line-width);
  background: var(--divider-color);
  border-radius: var(--line-width);
  pointer-events: none;
  transform: translateX(calc(-50% + var(--divider-slide-x)));
  will-change: transform;
}

.product-center > .specs::before {
  display: none;
}

.preorder-banner {
  display: grid;
  gap: 28px;
  padding: 28px 16px;
  max-width: 720px;
  width: min(100%, 720px);
}

.preorder-note {
  color: #000000;
  font-size: var(--fs-body);
  line-height: 1.7;
  margin-top: -6px;
}

.preorder-note strong {
  font-weight: 600;
}

.lightest-bike-section {
  width: min(860px, 92vw);
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 0;
  display: grid;
  justify-items: center;
}

.lightest-content {
  display: grid;
  gap: 24px;
  text-align: left;
  width: 100%;
}

.lightest-content .title {
  margin-bottom: 8px;
  text-align: left;
}

.lightest-body {
  color: #000000;
  text-align: left;
}

.lightest-content .body {
  color: #000000;
  text-align: left;
}

.lightest-body strong {
  color: #000000;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.lightbike-lines {
  display: grid;
  gap: 10px;
}

.lightbike-lines p {
  color: #000000;
  font-size: var(--fs-body);
  line-height: 1.5;
  text-align: left;
}

.lightbike-lines strong {
  color: #000000;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

/* Remove default margins */
.product-center h1,
.product-center h2,
.product-center h3,
.product-center p {
  margin: 0;
}

.p1-intro-subtitle {
  color: #000000;
  font-family: "Ajirotype", "Open Sans", sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 5.6rem);
  line-height: 1;
  letter-spacing: 0.06em;
  padding: 0 24px;
}

.p1-logo {
  display: block;
  width: min(160px, 31vw);
  height: auto;
  margin-bottom: clamp(18px, 3vw, 34px);
  padding: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.p1-logo.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .p1-logo {
    transition: none;
  }
}

/* P1 image */
.hero-bike {
  width: min(1100px, 92vw);
  height: auto;
  display: block;
  object-fit: contain;
}

.hero-bike-primary {
  width: 100%;
  max-width: none;
}

.explore-button {
  position: absolute;
  top: calc(var(--header-h) + 20px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.framed-box {
  border: var(--line-width) solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  border-radius: var(--radius);
}

.faq-section {
  width: min(860px, 92vw);
  display: grid;
  gap: 16px;
  padding-top: 8px;
  text-align: left;
}

.gallery-section {
  width: 100%;
  display: grid;
  gap: 44px;
  justify-items: center;
}

.gallery-scroll {
  width: min(1080px, 92vw);
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 28px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 24px 16px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000000 4%,
    #000000 96%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000000 4%,
    #000000 96%,
    transparent 100%
  );
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-image {
  --gallery-size: clamp(216px, 24vw, 360px);
  flex: 0 0 var(--gallery-size);
  width: var(--gallery-size);
  min-width: var(--gallery-size);
  max-width: var(--gallery-size);
  height: var(--gallery-size);
  min-height: var(--gallery-size);
  max-height: var(--gallery-size);
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  scroll-snap-align: center;
}

.gallery-image-rider {
  object-position: center top;
}

.gallery-image-rider-lower {
  object-position: center 14%;
}

.chassis-section {
  width: min(1100px, 92vw);
  display: grid;
  gap: 24px;
  padding-top: clamp(88px, 8vw, 128px);
}

.chassis-section ~ .faq-section {
  padding-top: clamp(64px, 7vw, 104px);
}

.chassis-row {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.chassis-media,
.chassis-copy {
  display: flex;
  justify-content: center;
}

.chassis-image {
  width: min(100%, 520px);
  height: auto;
  display: block;
}

.chassis-copy {
  text-align: left;
}

.chassis-body {
  color: #000000;
  font-size: var(--fs-body);
  line-height: 1.7;
  max-width: 34ch;
}

.chassis-body strong {
  font-weight: 700;
}

.product-center > .specs {
  padding: clamp(32px, 4vw, 56px) 10px clamp(64px, 7vw, 104px);
}

.product-center > .preorder-banner {
  padding: clamp(64px, 7vw, 104px) 16px;
}

.product-center > .lightest-bike-section {
  padding: clamp(64px, 7vw, 104px) 24px;
}

.product-center > .chassis-section,
.product-center > .gallery-section,
.product-center > .faq-section {
  padding-top: clamp(64px, 7vw, 104px);
  padding-bottom: clamp(64px, 7vw, 104px);
}

.product-center > .faq-section:last-child {
  padding-bottom: 24px;
}

.faq-title {
  color: #000000;
  font-size: var(--fs-title);
  line-height: 0.98;
  letter-spacing: 0.04em;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  position: relative;
  list-style: none;
  cursor: pointer;
  color: #000000;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: var(--fs-body);
  letter-spacing: 0.06em;
  padding: 22px 64px 22px 24px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::before,
.faq-question::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 18px;
  height: var(--line-width);
  background: var(--divider-color);
  border-radius: var(--line-width);
  transform: translateY(-50%);
}

.faq-question::before {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] .faq-question::before {
  opacity: 0;
}

.faq-answer {
  color: #000000;
  font-size: var(--fs-body);
  line-height: 1.7;
  padding: 0 24px 24px;
}

.faq-answer a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.faq-answer-stack {
  display: grid;
  gap: 6px;
}

.specs {
  width: min(1080px, 92vw);
  padding: 10px 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  text-align: center;
  background: #ffffff;
}

.spec {
  min-width: 0;
  padding: 18px 14px;
}

.spec h2,
.spec p {
  color: #000000;
  font-family: "Open Sans", sans-serif;
  font-size: var(--fs-body);
  letter-spacing: 0.04em;
}

.spec h2 {
  font-weight: 700;
  margin-bottom: 12px;
}

.spec p {
  font-weight: 400;
}

.reservation-page {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: calc(var(--header-h) + 48px) 24px calc(var(--footer-h) + 48px);
}

.reservation-card {
  display: grid;
  gap: 32px;
  padding: 0;
}

.reservation-copy {
  display: grid;
  gap: 16px;
}

.reservation-copy h1 {
  color: #000000;
  font-size: var(--fs-title);
  line-height: 0.98;
  letter-spacing: 0.04em;
}

.reservation-copy p {
  color: #000000;
  font-size: var(--fs-body);
  line-height: 1.7;
  max-width: none;
}

.reservation-form {
  display: grid;
  gap: 20px;
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field label {
  color: #000000;
  font-size: var(--fs-body);
  letter-spacing: 0.08em;
}

.form-field input {
  width: 100%;
  padding: 18px 20px;
  border: var(--line-width) solid rgba(0, 0, 0, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: #000000;
  font-size: var(--fs-body);
  outline: none;
  transition:
    border-color 0.25s ease;
}

.form-field input:focus {
  border-color: rgba(0, 0, 0, 0.42);
}

.reservation-actions {
  display: grid;
  gap: 14px;
  padding-top: 8px;
  justify-items: center;
}

.form-status {
  min-height: 1.7em;
  color: #000000;
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
}

.form-status.is-error {
  color: #000000;
}

.form-status.is-success {
  color: #000000;
}

@media (max-width: 900px) {
  .specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chassis-row {
    grid-template-columns: 1fr;
  }

  .chassis-body {
    max-width: none;
  }

  .faq-section {
    width: min(100%, 92vw);
  }

  .faq-question {
    padding: 18px 56px 18px 20px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .reservation-page {
    padding-top: calc(var(--header-h) + 32px);
    padding-bottom: calc(var(--footer-h) + 32px);
  }
}

@media (max-width: 420px) {
  .specs {
    grid-template-columns: 1fr;
  }
}
