:root {
  color-scheme: light;
  --bg: #050505;
  --bg-alt: #0b0b0b;
  --card: #101010;
  --text: #f6f6f6;
  --muted: #c2c2c2;
  --accent: #f5c400;
  --accent-soft: rgba(245, 196, 0, 0.18);
  --border: rgba(245, 196, 0, 0.45);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  --radius: 18px;
  --max-width: 1200px;
  font-family: "Optima", "Candara", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at top, rgba(245, 196, 0, 0.15), transparent 50%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 70%, #050505 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 14px;
  border: 2px solid var(--accent);
  pointer-events: none;
  z-index: 0;
  border-radius: 14px;
  opacity: 0.85;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
  background: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(5, 5, 5, 0.88);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid var(--accent);
  padding: 4px;
  background: #0d0d0d;
}

.brand-name {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--text);
  border-color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--accent);
  display: block;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 80vw);
  background: #060606;
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 24px;
  z-index: 12;
  display: grid;
  gap: 24px;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-links {
  display: grid;
  gap: 16px;
  font-size: 1.05rem;
}

.cta,
.ghost {
  padding: 12px 20px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
}

.cta {
  background: var(--accent);
  color: #050505;
  box-shadow: 0 10px 24px rgba(245, 196, 0, 0.35);
}

.ghost {
  border: 1px solid var(--border);
  color: var(--text);
}

.cta:hover,
.ghost:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 90px 0 70px;
  background: linear-gradient(rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.78)),
    url("./images/bike.jpg") center / cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  line-height: 1.1;
  margin: 16px 0;
}

.lead {
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-cards {
  display: grid;
  gap: 12px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.hero-panel {
  background: linear-gradient(160deg, rgba(245, 196, 0, 0.12), rgba(0, 0, 0, 0));
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 24px;
}

.service-list {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.panel-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
}

.label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}

.about-intro {
  display: grid;
  gap: 16px;
}

.about-photo {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
}

.about-details {
  display: grid;
  gap: 16px;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.calendar-shell,
.time-shell {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-day,
.calendar-date {
  text-align: center;
  padding: 10px 0;
  border-radius: 10px;
  font-size: 0.9rem;
}

.calendar-day {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.calendar-date {
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

.calendar-date.available {
  border-color: var(--border);
}

.calendar-date.selected {
  background: var(--accent);
  color: #050505;
  border-color: var(--accent);
  font-weight: 700;
}

.calendar-date.blocked {
  opacity: 0.35;
  cursor: not-allowed;
}

.calendar-legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.85rem;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.legend-dot.available {
  background: var(--accent);
}

.legend-dot.blocked {
  background: #444;
}

.legend-dot.selected {
  background: #fff;
  border: 1px solid var(--accent);
}

.time-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.time-date {
  color: var(--muted);
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.time-slot {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.time-slot.selected {
  background: var(--accent);
  color: #050505;
  border-color: var(--accent);
  font-weight: 700;
}

.time-slot.blocked {
  opacity: 0.4;
  cursor: not-allowed;
}

.booking-form {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.contact-form input,
.contact-form textarea {
  background: #0b0b0b;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  padding: 12px;
}

.word-count {
  font-size: 0.75rem;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-card {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 8px;
}

.gallery {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 16px;
  padding: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.gallery-item {
  scroll-snap-align: start;
  background: #080808;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 16px;
  display: grid;
  gap: 10px;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-controls {
  display: flex;
  gap: 10px;
}

.contact {
  background: linear-gradient(140deg, rgba(245, 196, 0, 0.15), rgba(5, 5, 5, 0.95));
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.contact-list {
  list-style: none;
  margin-top: 18px;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.contact-form {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.map-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: clamp(320px, 45vw, 420px);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.fineprint {
  font-size: 0.75rem;
  color: var(--muted);
}

.form-status {
  min-height: 20px;
  font-size: 0.85rem;
  color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 60px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  flex-wrap: wrap;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .panel-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  body::before {
    inset: 8px;
  }

  .hero {
    padding-top: 70px;
  }
}
