:root {
  color-scheme: dark;
  --bg: #0d0d0c;
  --bg-soft: #121211;
  --bg-muted: #181816;
  --surface: #141413;
  --surface-strong: #191917;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f4f1eb;
  --muted: #c2bcb1;
  --subtle: #8d877e;
  --accent: #d58a45;
  --accent-strong: #eba15a;
  --success: #7cc88a;
  --danger: #f08d76;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  --max: 1120px;
  --header-height: 68px;
  font-family: "JetBrains Mono", "Consolas", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 0 clamp(20px, 3.5vw, 48px);
  background: rgba(13, 13, 12, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: contents;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
}

.brand__mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-size: 12px;
}

.brand__mark img {
  display: block;
  width: 24px;
  height: 24px;
}

.brand__text {
  white-space: nowrap;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.site-nav a,
.site-footer a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--text);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(217, 139, 69, 0.48);
  border-radius: 8px;
  color: #fff6ec;
  background: rgba(217, 139, 69, 0.12);
  font-size: 13px;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 139, 69, 0.8);
  background: rgba(217, 139, 69, 0.2);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(720px, 78svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 108px 32px 56px;
  border-bottom: 1px solid var(--line);
}

.hero__image,
.hero__image img,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image img {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 13, 12, 0.96) 0%, rgba(13, 13, 12, 0.82) 34%, rgba(13, 13, 12, 0.38) 72%, rgba(13, 13, 12, 0.66) 100%),
    linear-gradient(180deg, rgba(13, 13, 12, 0.12) 0%, rgba(13, 13, 12, 0.82) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 50px;
  line-height: 1.08;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 700;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 700;
}

.hero__lead {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button__icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  fill: currentColor;
}

.button--primary {
  background: var(--accent);
  color: #17110c;
}

.button--primary:hover {
  background: var(--accent-strong);
}

.button--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero__facts li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(13, 13, 12, 0.48);
  color: #eee9e0;
  font-size: 13px;
  font-weight: 600;
}

.section,
.price-band,
.site-footer {
  padding-right: 32px;
  padding-left: 32px;
}

.section {
  padding-top: 82px;
  padding-bottom: 82px;
  background: var(--bg);
}

.section--dark {
  background: #121211;
}

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

.section__head {
  width: min(100%, var(--max));
  margin: 0 auto 34px;
}

.section__head p {
  max-width: 780px;
  color: var(--muted);
}

.motorcycle-grid,
.condition-grid,
.benefit-grid,
.price-grid,
.use-case-grid,
.steps,
.faq-list,
.contacts,
.price-band,
.section--split,
.site-footer {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

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

.moto-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.moto-card:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 139, 69, 0.36);
  background: var(--surface-strong);
}

.moto-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0e0e0d;
}

.moto-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 34%, rgba(16, 16, 15, 0.68) 100%);
}

.moto-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.moto-card--touring img {
  filter: saturate(0.78) contrast(1.08) hue-rotate(-12deg);
}

.moto-card--sport img {
  filter: saturate(0.86) contrast(1.12) hue-rotate(12deg);
}

.moto-card--cruiser img {
  filter: saturate(0.62) contrast(1.18) brightness(0.86);
}

.moto-card--product-shot .moto-card__media {
  aspect-ratio: 4 / 3;
  background: #fff;
}

.moto-card--product-shot .moto-card__media::after {
  display: none;
}

.moto-card--product-shot .moto-card__media img {
  object-fit: contain;
  padding: 0;
  filter: none;
}

.moto-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px;
}

.moto-card__topline {
  margin-bottom: 12px;
}

.moto-card__topline h3 {
  margin: 0;
}

.status {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.status--available {
  background: rgba(124, 200, 138, 0.12);
  color: #a8e5b4;
}

.status--busy {
  background: rgba(240, 141, 118, 0.13);
  color: #ffb5a4;
}

.status--request,
.status--soon {
  background: rgba(217, 139, 69, 0.14);
  color: #ffc48f;
}

.moto-card p {
  color: var(--muted);
  font-size: 14px;
}

.moto-card__features {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.moto-card__features li {
  position: relative;
  padding-left: 14px;
}

.moto-card__features li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--accent);
  content: "";
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0 20px;
}

.tag {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  color: #e4ded4;
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
}

.moto-card__footer {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  margin-top: auto;
}

.price {
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.moto-card .button {
  width: 100%;
  min-height: 40px;
  padding: 0 14px;
  font-size: 14px;
}

.moto-card__details {
  width: fit-content;
  color: var(--muted);
  border-bottom: 1px solid rgba(213, 138, 69, 0.35);
  font-size: 12px;
  line-height: 1.4;
  transition: color 160ms ease, border-color 160ms ease;
}

.moto-card__details:hover {
  color: var(--text);
  border-color: rgba(213, 138, 69, 0.75);
}

.moto-modal[hidden] {
  display: none;
}

.moto-modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.moto-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.moto-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 180ms ease;
}

.moto-modal.is-open .moto-modal__backdrop {
  opacity: 1;
}

.moto-modal__panel {
  position: relative;
  overflow: auto;
  display: grid;
  width: min(100%, 980px);
  max-height: calc(100svh - 48px);
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  border: 1px solid var(--hairline);
  background: var(--bg);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition: opacity 200ms ease, transform 200ms ease;
}

.moto-modal.is-open .moto-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.moto-modal__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--hairline);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
}

.moto-modal__close span[aria-hidden="true"] {
  font-size: 24px;
  line-height: 1;
}

.moto-modal__media {
  display: grid;
  min-height: 360px;
  place-items: center;
  border-right: 1px solid var(--hairline);
  background: #fff;
}

.moto-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.moto-modal__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 34px;
}

.moto-modal__content h2,
.moto-modal__content p {
  margin: 0;
}

.moto-modal__content > p:not(.eyebrow):not(.moto-modal__deposit) {
  color: var(--muted);
}

.moto-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.moto-modal__prices {
  border-top: 1px solid var(--hairline);
}

.moto-modal__price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
}

.moto-modal__price-row span {
  color: var(--muted);
}

.moto-modal__price-row strong {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 10px;
  text-align: right;
}

.moto-modal__price-row s {
  color: var(--subtle);
  font-weight: 600;
  text-decoration-thickness: 2px;
}

.moto-modal__price-row em {
  flex-basis: 100%;
  color: var(--accent-strong);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.moto-modal__deposit {
  color: var(--text);
  font-weight: 700;
}

.moto-modal__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: auto;
}

.moto-modal__actions .button {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

.price-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-muted);
}

.price-band p {
  margin: 0;
  color: var(--muted);
}

.section--pricing,
.section--weekend {
  background: var(--bg);
}

.section--pricing {
  padding-bottom: 64px;
}

.section--pricing + .section {
  padding-top: 64px;
}

.section--weekend {
  padding-bottom: 56px;
}

.section--weekend + .section {
  padding-top: 56px;
}

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

.price-card,
.use-case-item {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.price-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
}

.price-card__head {
  display: grid;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.price-card__head span {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-card__head strong {
  display: block;
  color: var(--text);
  font-size: 22px;
  line-height: 1.15;
}

.price-card__rows {
  display: grid;
  gap: 0;
}

.price-card__row {
  display: grid;
  grid-template-columns: minmax(74px, 0.75fr) minmax(0, 1.25fr);
  gap: 12px;
  align-items: start;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.price-card__row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.price-card__row strong {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 8px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.35;
  text-align: right;
}

.price-card__row b {
  font: inherit;
}

.price-card__row s {
  color: var(--subtle);
  font-weight: 600;
  text-decoration-thickness: 2px;
}

.price-card__row em {
  flex-basis: 100%;
  color: var(--accent-strong);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card__deposit {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.price-card__button {
  width: 100%;
  margin-top: auto;
}

.price-card p,
.use-case-item p {
  margin: 0;
  color: var(--muted);
}

.price-card .price-card__deposit {
  color: var(--text);
}

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

.use-case-item {
  padding: 22px;
}

.use-case-item strong {
  display: block;
  margin-bottom: 9px;
  color: var(--text);
  font-size: 18px;
}

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

.condition-item,
.benefit-item,
.step,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.condition-item,
.benefit-item {
  padding: 20px;
}

.condition-item strong,
.benefit-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.condition-item span,
.benefit-item p,
.step p {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  list-style: none;
}

.step {
  position: relative;
  min-height: 178px;
  padding: 22px 20px 20px;
}

.step__num {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #15100b;
  font-weight: 800;
}

.section--split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: start;
}

.section--split p {
  color: var(--muted);
}

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

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

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 62px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--accent-strong);
  font-size: 24px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contacts {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
}

.contacts__info p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--subtle);
}

.contact-list dd {
  margin: 0;
}

.contact-list a {
  color: var(--text);
  border-bottom: 1px solid rgba(217, 139, 69, 0.45);
}

.booking-form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: none;
}

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

.date-field {
  position: relative;
}

.booking-form__trap {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

label {
  display: grid;
  gap: 8px;
  color: #e8e1d7;
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  outline: none;
  background: #111110;
  color: var(--text);
  padding: 0 12px;
  transition: border-color 160ms ease, background 160ms ease;
}

textarea {
  min-height: 104px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(217, 139, 69, 0.78);
  background: #151413;
}

input.is-invalid {
  border-color: rgba(255, 107, 107, 0.86);
}

.date-picker {
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  left: 0;
  width: min(340px, calc(100vw - 40px));
  border: 1px solid var(--hairline);
  background: #0d0d0c;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.date-picker[hidden] {
  display: none;
}

.date-picker.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.date-picker__head {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--hairline);
}

.date-picker__head strong {
  color: var(--text);
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
}

.date-picker__nav {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.date-picker__nav:hover {
  color: var(--accent-strong);
}

.date-picker__weekdays,
.date-picker__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.date-picker__weekdays {
  padding: 10px 12px 4px;
  color: var(--subtle);
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
}

.date-picker__grid {
  gap: 4px;
  padding: 8px 12px 14px;
}

.date-picker__day {
  display: grid;
  min-width: 0;
  height: 36px;
  place-items: center;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 13px;
}

button.date-picker__day {
  cursor: pointer;
}

button.date-picker__day:hover {
  border-color: rgba(213, 138, 69, 0.48);
  background: rgba(213, 138, 69, 0.08);
}

.date-picker__day.is-today {
  border-color: var(--hairline);
  color: var(--accent-strong);
}

.date-picker__day.is-selected {
  border-color: var(--accent-strong);
  background: var(--accent);
  color: #050505;
  font-weight: 800;
}

.date-picker__day:disabled {
  color: rgba(242, 238, 231, 0.24);
  cursor: default;
}

.date-picker__day:disabled:hover {
  border-color: transparent;
  background: transparent;
}

.date-picker__day--empty {
  pointer-events: none;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.form-hint {
  margin: 14px 0 0;
  color: var(--subtle);
  font-size: 12px;
  line-height: 1.5;
}

.form-submit {
  width: 100%;
  margin-top: 20px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #0b0b0a;
  font-size: 14px;
}

.site-footer strong {
  color: var(--text);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.site-footer > p:last-child {
  justify-self: end;
}

@media (max-width: 1100px) {
  .site-header {
    gap: 16px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .site-nav {
    gap: 16px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 34px;
  }

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

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

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

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

  .moto-card__media {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand__text {
    font-size: 15px;
  }

  .nav-toggle {
    position: relative;
    z-index: 22;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
  }

  .nav-toggle__line,
  .nav-toggle__line::before,
  .nav-toggle__line::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    content: "";
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .nav-toggle__line::before {
    transform: translateY(-6px);
  }

  .nav-toggle__line::after {
    transform: translateY(4px);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line {
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line::before {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line::after {
    transform: translateY(-2px) rotate(90deg);
  }

  .site-nav {
    position: fixed;
    z-index: 21;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(16, 16, 15, 0.96);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 76svh;
    padding: 96px 20px 42px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(13, 13, 12, 0.95) 0%, rgba(13, 13, 12, 0.76) 66%, rgba(13, 13, 12, 0.58) 100%),
      linear-gradient(180deg, rgba(13, 13, 12, 0.26) 0%, rgba(13, 13, 12, 0.86) 100%);
  }

  h1 {
    max-width: 520px;
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  .hero__lead {
    max-width: 540px;
    font-size: 18px;
  }

  .section,
  .price-band,
  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .price-band,
  .section--split,
  .contacts {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer > p:last-child {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  h2 {
    font-size: 26px;
  }

  .hero {
    min-height: 74svh;
    padding-top: 88px;
  }

  .hero__actions {
    display: grid;
    margin-top: 24px;
    margin-bottom: 20px;
  }

  .hero__facts li {
    font-size: 13px;
  }

  .motorcycle-grid,
  .condition-grid,
  .benefit-grid,
  .price-grid,
  .use-case-grid,
  .steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .moto-card {
    grid-template-columns: 1fr;
  }

  .moto-card__media {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .moto-card__body {
    padding: 18px;
  }

  .moto-card__topline {
    align-items: flex-start;
  }

  .moto-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .moto-card .button {
    width: 100%;
  }

  .step {
    min-height: auto;
  }

  .step__num {
    margin-bottom: 18px;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .booking-form {
    padding: 18px;
  }
}

/* Editorial catalog pass: fewer generic cards, stronger grid, sharper surfaces. */
:root {
  --ink: #f2eee7;
  --hairline: rgba(242, 238, 231, 0.13);
  --hairline-soft: rgba(242, 238, 231, 0.08);
  --copper: #d58a45;
}

.brand__mark,
.header-cta,
.button,
.moto-card,
.price-card,
.use-case-item,
.condition-item,
.benefit-item,
.step,
.faq-item,
.booking-form,
input,
select,
textarea,
.tag,
.status,
.hero__facts li {
  border-radius: 2px;
}

.site-header {
  border-bottom-color: var(--hairline-soft);
}

.brand__mark {
  background: transparent;
  border-color: transparent;
  color: var(--ink);
}

.header-cta,
.button--ghost {
  background: transparent;
}

.hero__content,
.section__head,
.motorcycle-grid,
.condition-grid,
.benefit-grid,
.price-grid,
.use-case-grid,
.steps,
.faq-list,
.contacts {
  width: min(100%, var(--max));
}

.hero__facts {
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.hero__facts li {
  border: 0;
  border-right: 1px solid var(--hairline);
  background: transparent;
  padding: 10px 18px 10px 0;
  margin-right: 18px;
}

.hero__facts li:last-child {
  border-right: 0;
  margin-right: 0;
}

.section {
  border-top: 1px solid var(--hairline-soft);
}

.section--dark,
.section--muted,
.section--pricing,
.section--weekend {
  background: var(--bg);
}

.section__head {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  column-gap: 44px;
  align-items: start;
  margin-bottom: 36px;
}

.section__head .eyebrow {
  grid-column: 1;
  margin: 8px 0 0;
  color: var(--subtle);
}

.section__head h2,
.section__head p {
  grid-column: 2;
}

.section__head h2 {
  max-width: 780px;
}

.section__head p {
  max-width: 760px;
}

.motorcycle-grid {
  gap: 24px;
}

.moto-card {
  background: transparent;
  border-color: var(--hairline);
  transition: border-color 160ms ease, transform 160ms ease;
}

.moto-card:hover {
  background: transparent;
  border-color: rgba(213, 138, 69, 0.46);
}

.moto-card__media {
  border-bottom: 1px solid var(--hairline);
}

.moto-card__media::after {
  background: linear-gradient(180deg, transparent 48%, rgba(13, 13, 12, 0.52) 100%);
}

.moto-card__body {
  padding: 22px;
}

.moto-card__topline {
  margin-bottom: 16px;
}

.status,
.tag {
  background: transparent;
  border-color: var(--hairline);
}

.status--available,
.status--busy,
.status--request,
.status--soon {
  background: transparent;
}

.tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 8px;
}

.moto-card__footer {
  border-top: 1px solid var(--hairline-soft);
  padding-top: 18px;
}

.moto-card .button {
  justify-content: flex-start;
  border-color: var(--hairline);
  background: transparent;
}

.moto-card .button--primary {
  border-color: rgba(213, 138, 69, 0.72);
  background: var(--accent);
  color: #17110c;
}

.moto-card .button--primary:hover {
  border-color: rgba(235, 161, 90, 0.9);
  background: var(--accent-strong);
}

.price-grid,
.use-case-grid,
.condition-grid,
.benefit-grid,
.steps {
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.price-card,
.use-case-item,
.condition-item,
.benefit-item,
.step {
  border: 0;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: transparent;
}

.price-card {
  min-height: 340px;
}

.price-card__head strong {
  font-size: 21px;
}

.price-card__row strong {
  font-size: 15px;
}

.step {
  min-height: 170px;
}

.step__num {
  width: auto;
  height: auto;
  display: block;
  margin-bottom: 38px;
  border-radius: 0;
  background: transparent;
  color: var(--copper);
  font-size: 13px;
}

.step__num::before {
  content: "0";
}

.faq-list {
  gap: 0;
  border-top: 1px solid var(--hairline);
}

.faq-item {
  border: 0;
  border-bottom: 1px solid var(--hairline);
  background: transparent;
}

.faq-item summary {
  padding-right: 0;
  padding-left: 0;
}

.faq-item p {
  padding-right: 0;
  padding-left: 0;
}

.contacts {
  border-top: 1px solid var(--hairline);
  padding-top: 56px;
}

.booking-form {
  background: transparent;
  border-color: var(--hairline);
}

input,
select,
textarea {
  background: transparent;
  border-color: var(--hairline);
}

@media (max-width: 820px) {
  .moto-modal {
    padding: 16px;
  }

  .moto-modal__panel {
    max-height: calc(100svh - 32px);
    grid-template-columns: 1fr;
  }

  .moto-modal__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .moto-modal__content {
    padding: 24px;
  }

  .moto-modal__actions {
    grid-template-columns: 1fr;
  }

  .section__head {
    display: block;
  }

  .section__head .eyebrow {
    margin-bottom: 14px;
  }

  .price-grid,
  .use-case-grid,
  .condition-grid,
  .benefit-grid,
  .steps {
    border-left: 1px solid var(--hairline);
  }

  .hero__facts {
    border: 0;
    gap: 10px;
  }

  .hero__facts li {
    border: 1px solid var(--hairline);
    padding: 8px 10px;
    margin: 0;
  }
}

@media (max-width: 560px) {
  .tags {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

  .price-card,
  .use-case-item,
  .condition-item,
  .benefit-item,
  .step {
    border-right: 1px solid var(--hairline);
  }
}

/* Contact and footer calibration. */
.site-header {
  display: block;
  padding: 0;
}

.site-header__inner {
  display: grid;
  width: min(calc(100% - 64px), var(--max));
  height: 100%;
  margin: 0 auto;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 24px;
}

.brand {
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.brand__mark {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
}

.brand__mark img {
  width: 30px;
  height: 30px;
}

.brand__text {
  display: block;
  font-size: 16px;
  line-height: 1;
  transform: translateY(1px);
}

.contacts {
  width: min(calc(100% - 64px), var(--max));
  padding-right: 0;
  padding-left: 0;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 480px);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.contacts__info {
  max-width: 500px;
}

.booking-form {
  width: 100%;
  justify-self: end;
  padding: 24px;
}

.form-grid {
  gap: 14px;
}

label {
  font-size: 13px;
}

input,
select {
  min-height: 44px;
}

textarea {
  min-height: 92px;
}

.site-footer {
  display: grid;
  width: min(calc(100% - 64px), var(--max));
  padding-right: 0;
  padding-left: 0;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: start;
  gap: 14px 32px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top-color: var(--hairline);
  background: var(--bg);
  font-size: 12px;
}

.site-footer__brand {
  display: grid;
  gap: 4px;
  max-width: 430px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  padding-top: 2px;
}

.site-footer__copy {
  grid-column: 1 / -1;
  justify-self: center;
  color: var(--subtle);
  text-align: center;
}

.site-footer > .site-footer__copy {
  grid-column: 1 / -1;
  justify-self: center;
  text-align: center;
}

.site-footer > p.site-footer__copy:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  text-align: center;
}

.useful-grid,
.seo-card-grid {
  display: grid;
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.useful-card,
.seo-card {
  display: grid;
  min-height: 148px;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  color: var(--text);
  transition: border-color 160ms ease, background 160ms ease;
}

.useful-card:hover,
.seo-card:hover {
  background: rgba(213, 138, 69, 0.06);
}

.useful-card strong,
.seo-card strong {
  font-size: 17px;
  line-height: 1.35;
}

.useful-card span,
.seo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.useful-card--all {
  border-color: rgba(213, 138, 69, 0.34);
}

.seo-page main {
  padding-top: var(--header-height);
}

.seo-hero {
  padding: 62px 32px 56px;
  border-bottom: 1px solid var(--hairline-soft);
}

.seo-hero__inner,
.seo-layout {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.seo-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
}

.seo-hero__inner h1 {
  max-width: 820px;
}

.seo-hero__lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.seo-hero__media {
  margin: 0;
  border: 1px solid var(--hairline);
  background: #fff;
}

.seo-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--subtle);
  font-size: 12px;
}

.breadcrumbs a {
  color: var(--muted);
  border-bottom: 1px solid rgba(213, 138, 69, 0.35);
}

.seo-layout {
  display: grid;
  gap: 0;
  padding-top: 54px;
  padding-bottom: 72px;
}

.seo-block,
.seo-cta {
  border-top: 1px solid var(--hairline);
  padding: 34px 0;
}

.seo-block h2,
.seo-cta h2 {
  max-width: 860px;
  font-size: 28px;
}

.seo-block p,
.seo-block li,
.seo-cta p {
  max-width: 860px;
  color: var(--muted);
}

.seo-block ul {
  display: grid;
  gap: 8px;
  max-width: 860px;
  padding-left: 18px;
  margin: 18px 0 0;
}

.seo-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.seo-cta .button {
  min-width: 230px;
  align-self: end;
}

.seo-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--hairline);
}

.seo-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.seo-table th,
.seo-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--hairline);
  text-align: left;
  vertical-align: top;
}

.seo-table thead th {
  color: var(--accent-strong);
  font-size: 12px;
  text-transform: uppercase;
}

.seo-table tbody tr:last-child th,
.seo-table tbody tr:last-child td {
  border-bottom: 0;
}

.seo-table a {
  border-bottom: 1px solid rgba(213, 138, 69, 0.35);
}

.seo-price {
  display: grid;
  gap: 4px;
  min-width: 132px;
}

.seo-price s {
  color: var(--subtle);
  font-size: 12px;
  line-height: 1.25;
}

.seo-price strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.25;
}

.seo-price em {
  color: var(--accent-strong);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.seo-card-grid {
  width: 100%;
  margin-top: 20px;
}

.seo-card--model {
  min-height: 0;
}

.seo-card--model img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  margin-bottom: 8px;
  background: #fff;
}

.seo-card--model span {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header__inner {
    grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
    gap: 16px;
  }

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

  .booking-form {
    width: 100%;
    justify-self: stretch;
  }

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

  .seo-hero__inner {
    grid-template-columns: 1fr;
  }

  .seo-cta {
    grid-template-columns: 1fr;
  }

  .seo-cta .button {
    width: fit-content;
  }
}

@media (max-width: 820px) {
  .site-header__inner {
    width: calc(100% - 36px);
    grid-template-columns: 1fr auto;
  }

  .contacts {
    width: calc(100% - 40px);
  }

  .site-footer {
    width: calc(100% - 40px);
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
  }

  .site-footer__nav {
    justify-content: flex-start;
  }

  .site-footer > .site-footer__copy {
    justify-self: center;
    text-align: center;
  }

  .seo-hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .useful-grid,
  .seo-card-grid {
    grid-template-columns: 1fr;
  }

  .seo-block h2,
  .seo-cta h2 {
    font-size: 24px;
  }

  .seo-cta .button {
    width: 100%;
  }
}
