:root {
  --yellow: #ffe100;
  --ink: #0d0d0b;
  --ash: #191a18;
  --concrete: #d7d5cd;
  --paper: #f3f0e8;
  --white: #ffffff;
  --muted: #747268;
  --line: rgba(13, 13, 11, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 11, 0.06) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(13, 13, 11, 0.05) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: clamp(16px, 4vw, 58px);
  right: clamp(16px, 3vw, 38px);
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  background: rgba(13, 13, 11, 0.9);
  color: var(--white);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 14px;
  min-width: 0;
  padding: 9px 16px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: clamp(196px, 22vw, 270px);
  height: 48px;
  padding: 6px 0;
  background: transparent;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-place {
  display: grid;
  place-items: center;
  height: 48px;
  transform: translateY(9px);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: stretch;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

nav a {
  display: grid;
  place-items: center;
  min-width: 104px;
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

nav a:hover {
  background: var(--yellow);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(13, 13, 11, 0.98) 0 38%, rgba(13, 13, 11, 0.38) 38% 64%, rgba(13, 13, 11, 0.1)),
    linear-gradient(0deg, rgba(13, 13, 11, 0.62), transparent 34%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  top: 0;
  z-index: 2;
  width: 42vw;
  height: 100%;
  background: var(--yellow);
  clip-path: polygon(44% 0, 100% 0, 56% 100%, 0 100%);
  mix-blend-mode: multiply;
  opacity: 0.86;
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(0.92);
}

.hero-panel {
  position: relative;
  z-index: 3;
  align-self: end;
  width: min(860px, calc(100% - 34px));
  padding: 148px clamp(22px, 4vw, 58px) clamp(34px, 6vw, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 20px;
  font-size: clamp(44px, 6.5vw, 84px);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--yellow);
  font-size: 0.72em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  font-size: 24px;
  line-height: 1.04;
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.7vw, 21px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 2px solid currentColor;
  font-weight: 900;
  text-transform: uppercase;
  transform: skewX(-10deg);
}

.button span,
.button {
  letter-spacing: 0;
}

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

.button.secondary {
  color: var(--white);
}

.button:hover {
  transform: skewX(-10deg) translateY(-2px);
}

.intro-band {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 0.7fr;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-band div {
  min-height: 126px;
  padding: 26px clamp(18px, 4vw, 54px);
  border-right: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 225, 0, 0.14), transparent 42%),
    var(--white);
}

.intro-band div:last-child {
  border-right: 0;
  background: var(--ink);
  color: var(--white);
}

.intro-band span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-band div:last-child span {
  color: var(--yellow);
}

.intro-band strong {
  display: block;
  max-width: 360px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.18;
}

.brand-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(480px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(115deg, transparent 0 62%, rgba(255, 225, 0, 0.22) 62% 100%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
}

.brand-section .section-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.section-heading p,
.visit-card p {
  color: #3f3f3a;
  font-size: 18px;
}

.brand-grid {
  display: grid;
  gap: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.brand-card {
  min-height: 260px;
  padding: clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-card:last-child {
  border-bottom: 0;
}

.brand-card h3 {
  max-width: 680px;
  margin-bottom: 12px;
  font-size: clamp(30px, 3.5vw, 48px);
  text-transform: uppercase;
}

.brand-card p {
  max-width: 560px;
  margin-bottom: 0;
  color: #3f3f3a;
  font-size: 18px;
}

.brand-label {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: auto;
  padding: 7px 12px;
  background: var(--ink);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.voge-card {
  background: var(--yellow);
}

.zxmoto-card {
  background: var(--ash);
  color: var(--white);
}

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

.zxmoto-card .brand-label {
  background: var(--yellow);
  color: var(--ink);
}

.gallery-section {
  padding: clamp(62px, 8vw, 104px) clamp(18px, 5vw, 72px) clamp(76px, 10vw, 130px);
  background: var(--ash);
  color: var(--white);
}

.gallery-section .section-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 0.72fr 0.88fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: 32px;
}

.gallery-section .section-heading p:not(.eyebrow) {
  max-width: 460px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.gallery {
  display: grid;
  grid-template-columns: 0.82fr 1.16fr 0.78fr;
  grid-auto-rows: 220px;
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #d8d8d2;
}

.gallery img:first-child {
  grid-row: span 2;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.gallery img:nth-child(2) {
  grid-row: span 2;
}

.gallery img:nth-child(4) {
  grid-column: span 2;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
  align-items: stretch;
  background: var(--yellow);
}

.visit-card,
.hours-card {
  padding: clamp(30px, 6vw, 72px);
}

.visit-card {
  background:
    linear-gradient(120deg, rgba(13, 13, 11, 0.12) 0 38%, transparent 38%),
    var(--yellow);
}

.visit-card .eyebrow {
  color: var(--ink);
}

.hours-card {
  background: var(--ink);
  color: var(--white);
}

.hours-card h3 {
  margin-bottom: 24px;
  color: var(--yellow);
  text-transform: uppercase;
}

dl {
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

dt {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 30px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-brand {
  margin-bottom: 6px;
  color: var(--yellow);
  font-weight: 900;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  font-weight: 900;
}

.footer-links a {
  color: var(--white);
  border-bottom: 2px solid var(--yellow);
}

@media (max-width: 900px) {
  .site-header {
    left: 12px;
    right: 12px;
    top: 12px;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 84vh;
    grid-template-columns: 1fr;
  }

  .hero-image {
    left: 0;
    width: 100%;
    object-position: 58% center;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(13, 13, 11, 0.9), rgba(13, 13, 11, 0.18) 70%),
      linear-gradient(90deg, rgba(13, 13, 11, 0.8), transparent 74%);
  }

  .hero::after {
    width: 54vw;
    opacity: 0.48;
  }

  .hero-panel {
    padding: 134px 18px 34px;
  }

  .intro-band,
  .brand-section,
  .gallery-section .section-heading,
  .visit-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .intro-band div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-section .section-heading {
    position: static;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 230px;
  }

  .gallery img:first-child,
  .gallery img:nth-child(2),
  .gallery img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    clip-path: none;
  }

  .site-footer {
    display: block;
  }

  .footer-links {
    justify-content: flex-start;
    margin-top: 22px;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 178px;
    height: 42px;
    padding: 6px 0;
  }

  .brand-place {
    display: none;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .brand-card {
    min-height: 230px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  dl div {
    display: block;
  }

  dd {
    margin-top: 4px;
    text-align: left;
  }
}
