:root {
  --black: #111111;
  --cream: #f2efe6;
  --red: #e53935;
  --paper: #fbfaf6;
  --muted: #6f6a60;
  --line: rgba(17, 17, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Avenir, "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  display: block;
  width: min(220px, 48vw);
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(48px, 9vw, 104px) clamp(18px, 5vw, 72px);
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.76)),
    radial-gradient(circle at 74% 42%, rgba(229, 57, 53, 0.26), transparent 31%),
    var(--black);
}

.hero-badge {
  position: absolute;
  right: clamp(-130px, -5vw, -36px);
  bottom: clamp(-150px, -8vw, -58px);
  width: min(720px, 82vw);
  opacity: 0.18;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 860px;
}

.eyebrow,
.section-kicker,
.signature {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 12vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5.6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(242, 239, 230, 0.88);
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 2px solid transparent;
  border-radius: 4px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
button {
  color: #fff;
  background: var(--red);
}

.button.secondary {
  color: var(--cream);
  border-color: rgba(242, 239, 230, 0.5);
}

.signature {
  color: var(--cream);
}

.section {
  padding: clamp(58px, 10vw, 120px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.two-column,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 84px);
  max-width: 1180px;
  margin: 0 auto;
}

.copy-block {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.copy-block p:last-child,
.shop-info p:last-child {
  margin-bottom: 0;
}

.rides {
  background: var(--cream);
}

.rides > h2,
.rides > .section-kicker {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 34px auto 0;
}

.ride-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 8px;
  background: var(--paper);
}

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

.service-band {
  color: var(--cream);
  background: var(--black);
}

.service-band .copy-block {
  color: rgba(242, 239, 230, 0.84);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 44px auto 0;
  background: rgba(242, 239, 230, 0.22);
  border: 1px solid rgba(242, 239, 230, 0.22);
}

.service-list div {
  min-height: 142px;
  padding: 24px;
  background: var(--black);
}

.service-list strong,
.service-list span {
  display: block;
}

.service-list strong {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.service-list span {
  color: rgba(242, 239, 230, 0.75);
}

.local {
  background: var(--paper);
}

.contact {
  background: var(--cream);
}

.contact-panel {
  align-items: start;
}

.shop-info {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 2px solid var(--black);
  border-radius: 8px;
  background: var(--paper);
}

label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid rgba(17, 17, 17, 0.28);
  border-radius: 4px;
  color: var(--black);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.hidden {
  display: none;
}

footer {
  padding: 32px clamp(18px, 5vw, 72px);
  color: var(--cream);
  background: var(--black);
}

footer p {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

footer p:last-child {
  margin-bottom: 0;
  color: rgba(242, 239, 230, 0.74);
}

@media (max-width: 820px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
  }

  .two-column,
  .contact-panel,
  .card-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

  .ride-card {
    min-height: 0;
  }
}
